From a147a636aa6aa393f559bb05ee7e64b1930147cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Sun, 6 Jun 2021 18:01:00 +0200 Subject: [PATCH 01/47] Read ScaleFactor from mixxx.cfg during startup --- src/main.cpp | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 416c3490867..64edf1bdb5a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,11 +1,13 @@ #include #include +#include #include #include #include #include #include +#include "config.h" #include "errordialoghandler.h" #include "mixxx.h" #include "mixxxapplication.h" @@ -25,6 +27,9 @@ namespace { constexpr int kFatalErrorOnStartupExitCode = 1; constexpr int kParseCmdlineArgsErrorExitCode = 2; +constexpr char kScaleFactorEnvVar[] = "QT_SCALE_FACTOR"; +const QString kstrScaleFactor = QStringLiteral("ScaleFactor"); + int runMixxx(MixxxApplication* app, const CmdlineArgs& args) { MixxxMainWindow mainWindow(app, args); // If startup produced a fatal error, then don't even start the @@ -41,6 +46,35 @@ int runMixxx(MixxxApplication* app, const CmdlineArgs& args) { } } +void adjustScaleFactor(const CmdlineArgs& args) { + if (qEnvironmentVariableIsSet(kScaleFactorEnvVar)) { + bool ok; + const double f = qgetenv(kScaleFactorEnvVar).toDouble(&ok); + if (ok && f > 0) { + // The environment variable overrides the preferences option + qDebug() << "Using" << kScaleFactorEnvVar << f; + return; + } + } + auto cfgFile = QFile(QDir(args.getSettingsPath()).filePath(MIXXX_SETTINGS_FILE)); + if (cfgFile.open(QFile::ReadOnly | QFile::Text)) { + QTextStream in(&cfgFile); + QString scaleFactor; + QString line = in.readLine(); + while (!line.isNull()) { + if (line.startsWith(kstrScaleFactor)) { + scaleFactor = line.mid(kstrScaleFactor.size() + 1); + break; + } + line = in.readLine(); + } + if (!scaleFactor.isEmpty()) { + qDebug() << "Using preferences ScaleFactor" << scaleFactor; + qputenv(kScaleFactorEnvVar, scaleFactor.toLocal8Bit()); + } + } +} + } // anonymous namespace int main(int argc, char * argv[]) { @@ -91,6 +125,8 @@ int main(int argc, char * argv[]) { } #endif + adjustScaleFactor(args); + MixxxApplication app(argc, argv); #ifdef __APPLE__ From 6fe8dfe35ec4e0d615cdf12cde9d5f5e2b90c20c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Sun, 6 Jun 2021 22:59:04 +0200 Subject: [PATCH 02/47] Notify restart when scaling changes --- src/preferences/dialog/dlgprefinterface.cpp | 55 ++------ src/preferences/dialog/dlgprefinterface.h | 4 - src/preferences/dialog/dlgprefinterfacedlg.ui | 125 +++++++++--------- 3 files changed, 73 insertions(+), 111 deletions(-) diff --git a/src/preferences/dialog/dlgprefinterface.cpp b/src/preferences/dialog/dlgprefinterface.cpp index 34613489cbc..290247b3992 100644 --- a/src/preferences/dialog/dlgprefinterface.cpp +++ b/src/preferences/dialog/dlgprefinterface.cpp @@ -67,8 +67,6 @@ DlgPrefInterface::DlgPrefInterface(QWidget* parent, m_pConfig(pConfig), m_mixxx(mixxx), m_pSkinLoader(pSkinLoader), - m_dScaleFactorAuto(1.0), - m_bUseAutoScaleFactor(false), m_dScaleFactor(1.0), m_dDevicePixelRatio(1.0), m_bStartWithFullScreen(false), @@ -187,10 +185,6 @@ DlgPrefInterface::DlgPrefInterface(QWidget* parent, this, &DlgPrefInterface::slotSetScheme); - checkBoxScaleFactorAuto->hide(); - spinBoxScaleFactor->hide(); - labelScaleFactor->hide(); - // Start in fullscreen mode checkBoxStartFullScreen->setChecked(m_pConfig->getValueString( ConfigKey("[Config]", "StartInFullscreen")).toInt()==1); @@ -284,9 +278,6 @@ void DlgPrefInterface::slotUpdate() { m_localeOnUpdate = m_pConfig->getValueString(ConfigKey("[Config]", "Locale")); ComboBoxLocale->setCurrentIndex(ComboBoxLocale->findData(m_localeOnUpdate)); - checkBoxScaleFactorAuto->setChecked(m_pConfig->getValue( - ConfigKey("[Config]", "ScaleFactorAuto"), m_bUseAutoScaleFactor)); - // The spinbox shows a percentage but Mixxx stores a multiplication factor // with 1.00 as no scaling, so multiply the stored value by 100. spinBoxScaleFactor->setValue(m_pConfig->getValue( @@ -312,9 +303,6 @@ void DlgPrefInterface::slotResetToDefaults() { // Default to normal size widgets // The spinbox shows a percentage with 100% as no scaling. spinBoxScaleFactor->setValue(100); - if (m_dScaleFactorAuto > 0) { - checkBoxScaleFactorAuto->setChecked(true); - } // Don't start in full screen. checkBoxStartFullScreen->setChecked(false); @@ -327,29 +315,6 @@ void DlgPrefInterface::slotResetToDefaults() { radioButtonTooltipsLibraryAndSkin->setChecked(true); } -void DlgPrefInterface::slotSetScaleFactor(double newValue) { - // The spinbox shows a percentage, but Mixxx stores a multiplication factor - // with 1.00 as no change. - newValue /= 100.0; - if (m_dScaleFactor != newValue) { - m_dScaleFactor = newValue; - m_bRebootMixxxView = true; - } -} - -void DlgPrefInterface::slotSetScaleFactorAuto(bool newValue) { - if (newValue) { - if (!m_bUseAutoScaleFactor) { - m_bRebootMixxxView = true; - } - } else { - slotSetScaleFactor(newValue); - } - - m_bUseAutoScaleFactor = newValue; - spinBoxScaleFactor->setEnabled(!newValue); -} - void DlgPrefInterface::slotSetTooltips() { m_tooltipMode = mixxx::TooltipsPreference::TOOLTIPS_ON; if (radioButtonTooltipsOff->isChecked()) { @@ -361,9 +326,10 @@ void DlgPrefInterface::slotSetTooltips() { void DlgPrefInterface::notifyRebootNecessary() { // make the fact that you have to restart mixxx more obvious - QMessageBox::information( - this, tr("Information"), - tr("Mixxx must be restarted before the new locale setting will take effect.")); + QMessageBox::information(this, + tr("Information"), + tr("Mixxx must be restarted before the new locale or scaling " + "settings will take effect.")); } void DlgPrefInterface::slotSetScheme(int) { @@ -425,14 +391,8 @@ void DlgPrefInterface::slotApply() { ComboBoxLocale->currentIndex()).toString(); m_pConfig->set(ConfigKey("[Config]", "Locale"), locale); - m_pConfig->setValue( - ConfigKey("[Config]", "ScaleFactorAuto"), m_bUseAutoScaleFactor); - if (m_bUseAutoScaleFactor) { - m_pConfig->setValue( - ConfigKey("[Config]", "ScaleFactor"), m_dScaleFactorAuto); - } else { - m_pConfig->setValue(ConfigKey("[Config]", "ScaleFactor"), m_dScaleFactor); - } + double scaleFactor = spinBoxScaleFactor->value() / 100; + m_pConfig->setValue(ConfigKey("[Config]", "ScaleFactor"), scaleFactor); m_pConfig->set(ConfigKey("[Config]", "StartInFullscreen"), ConfigValue(checkBoxStartFullScreen->isChecked())); @@ -448,10 +408,11 @@ void DlgPrefInterface::slotApply() { static_cast(screensaverComboBoxState)); } - if (locale != m_localeOnUpdate) { + if (locale != m_localeOnUpdate || scaleFactor != m_dScaleFactor) { notifyRebootNecessary(); // hack to prevent showing the notification when pressing "Okay" after "Apply" m_localeOnUpdate = locale; + m_dScaleFactor = scaleFactor; } if (m_bRebootMixxxView) { diff --git a/src/preferences/dialog/dlgprefinterface.h b/src/preferences/dialog/dlgprefinterface.h index f98ac839185..58784501699 100644 --- a/src/preferences/dialog/dlgprefinterface.h +++ b/src/preferences/dialog/dlgprefinterface.h @@ -31,8 +31,6 @@ class DlgPrefInterface : public DlgPreferencePage, public Ui::DlgPrefControlsDlg void slotSetSkin(int); void slotSetScheme(int); void slotUpdateSchemes(); - void slotSetScaleFactor(double newValue); - void slotSetScaleFactorAuto(bool checked); private: void notifyRebootNecessary(); @@ -56,8 +54,6 @@ class DlgPrefInterface : public DlgPreferencePage, public Ui::DlgPrefControlsDlg QString m_colorScheme; QString m_localeOnUpdate; mixxx::TooltipsPreference m_tooltipMode; - double m_dScaleFactorAuto; - bool m_bUseAutoScaleFactor; double m_dScaleFactor; double m_dDevicePixelRatio; bool m_bStartWithFullScreen; diff --git a/src/preferences/dialog/dlgprefinterfacedlg.ui b/src/preferences/dialog/dlgprefinterfacedlg.ui index 8864f92d55d..17e49b7c19f 100644 --- a/src/preferences/dialog/dlgprefinterfacedlg.ui +++ b/src/preferences/dialog/dlgprefinterfacedlg.ui @@ -14,6 +14,19 @@ Interface Preferences + + + + Qt::Vertical + + + + 20 + 40 + + + + @@ -32,7 +45,6 @@ 0 - @@ -65,7 +77,6 @@ - @@ -101,7 +112,6 @@ - @@ -121,7 +131,6 @@ - @@ -132,7 +141,6 @@ - @@ -140,7 +148,6 @@ - @@ -154,7 +161,6 @@ - @@ -172,50 +178,13 @@ - HiDPI / Retina scaling - - checkBoxScaleFactorAuto - - - - - Change the size of text, buttons, and other items. - - - % - - - 0 - - - 50.000000000000000 - - - 400.000000000000000 - - - 25.000000000000000 - - - - - - - Adopt scale factor from the operating system - - - Auto Scaling - - - - @@ -233,7 +202,6 @@ - @@ -287,7 +255,6 @@ - @@ -298,23 +265,61 @@ + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + Change the size of text, buttons, and other items. + + + % + + + 0 + + + 50.000000000000000 + + + 400.000000000000000 + + + 25.000000000000000 + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + - - - - Qt::Vertical - - - - 20 - 40 - - - - - From 3a41380287517b2e7ca9b1e7bffc47a05ffa95b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Sun, 6 Jun 2021 23:20:38 +0200 Subject: [PATCH 03/47] Explain why we parse the mixxx.cfg file directly --- src/main.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 64edf1bdb5a..6ff40f02bdc 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -56,6 +56,9 @@ void adjustScaleFactor(const CmdlineArgs& args) { return; } } + // We cannot use ConfigObject, because it depends on MixxxApplication + // but the scale factor is read during it's constructor. + // QHighDpiScaling can not be used afterwards because it is private. auto cfgFile = QFile(QDir(args.getSettingsPath()).filePath(MIXXX_SETTINGS_FILE)); if (cfgFile.open(QFile::ReadOnly | QFile::Text)) { QTextStream in(&cfgFile); From ca9e1b82337dde05cef7eb5cffa49c445bcf7c09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Mon, 7 Jun 2021 00:41:26 +0200 Subject: [PATCH 04/47] Limit minimum scaleFactor for a resulting device pixel ratio of >= 1 --- src/main.cpp | 21 ++++++++++++--------- src/preferences/dialog/dlgprefinterface.cpp | 12 ++++++++++++ src/preferences/dialog/dlgprefinterface.h | 1 + src/util/cmdlineargs.cpp | 1 + src/util/cmdlineargs.h | 8 ++++++++ 5 files changed, 34 insertions(+), 9 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 6ff40f02bdc..57f542e8902 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -28,7 +28,7 @@ constexpr int kFatalErrorOnStartupExitCode = 1; constexpr int kParseCmdlineArgsErrorExitCode = 2; constexpr char kScaleFactorEnvVar[] = "QT_SCALE_FACTOR"; -const QString kstrScaleFactor = QStringLiteral("ScaleFactor"); +const QString kStrScaleFactor = QStringLiteral("ScaleFactor"); int runMixxx(MixxxApplication* app, const CmdlineArgs& args) { MixxxMainWindow mainWindow(app, args); @@ -46,34 +46,37 @@ int runMixxx(MixxxApplication* app, const CmdlineArgs& args) { } } -void adjustScaleFactor(const CmdlineArgs& args) { +void adjustScaleFactor(CmdlineArgs* pArgs) { if (qEnvironmentVariableIsSet(kScaleFactorEnvVar)) { bool ok; const double f = qgetenv(kScaleFactorEnvVar).toDouble(&ok); if (ok && f > 0) { // The environment variable overrides the preferences option qDebug() << "Using" << kScaleFactorEnvVar << f; + pArgs->storeScaleFactor(f); return; } } // We cannot use ConfigObject, because it depends on MixxxApplication // but the scale factor is read during it's constructor. // QHighDpiScaling can not be used afterwards because it is private. - auto cfgFile = QFile(QDir(args.getSettingsPath()).filePath(MIXXX_SETTINGS_FILE)); + auto cfgFile = QFile(QDir(pArgs->getSettingsPath()).filePath(MIXXX_SETTINGS_FILE)); if (cfgFile.open(QFile::ReadOnly | QFile::Text)) { QTextStream in(&cfgFile); - QString scaleFactor; + QString strScaleFactor; QString line = in.readLine(); while (!line.isNull()) { - if (line.startsWith(kstrScaleFactor)) { - scaleFactor = line.mid(kstrScaleFactor.size() + 1); + if (line.startsWith(kStrScaleFactor)) { + strScaleFactor = line.mid(kStrScaleFactor.size() + 1); break; } line = in.readLine(); } - if (!scaleFactor.isEmpty()) { + double scaleFactor = strScaleFactor.toDouble(); + if (scaleFactor > 0) { qDebug() << "Using preferences ScaleFactor" << scaleFactor; - qputenv(kScaleFactorEnvVar, scaleFactor.toLocal8Bit()); + qputenv(kScaleFactorEnvVar, strScaleFactor.toLocal8Bit()); + pArgs->storeScaleFactor(scaleFactor); } } } @@ -128,7 +131,7 @@ int main(int argc, char * argv[]) { } #endif - adjustScaleFactor(args); + adjustScaleFactor(&args); MixxxApplication app(argc, argv); diff --git a/src/preferences/dialog/dlgprefinterface.cpp b/src/preferences/dialog/dlgprefinterface.cpp index 290247b3992..c784179ddf8 100644 --- a/src/preferences/dialog/dlgprefinterface.cpp +++ b/src/preferences/dialog/dlgprefinterface.cpp @@ -68,6 +68,7 @@ DlgPrefInterface::DlgPrefInterface(QWidget* parent, m_mixxx(mixxx), m_pSkinLoader(pSkinLoader), m_dScaleFactor(1.0), + m_minScaleFactor(1.0), m_dDevicePixelRatio(1.0), m_bStartWithFullScreen(false), m_bRebootMixxxView(false) { @@ -152,6 +153,16 @@ DlgPrefInterface::DlgPrefInterface(QWidget* parent, m_dDevicePixelRatio = getDevicePixelRatioF(this); + // Calculate the minimum scale factor that leads to a device picel ratio of 1.0 + // m_dDevicePixelRatio must not drop below 1.0 because this creats an + // unusable GUI with visual artefacts + double initialScalefactor = CmdlineArgs::Instance().getScaleFactor(); + if (initialScalefactor <= 0) { + initialScalefactor = 1.0; + } + double unscaledDevicePixelRatio = m_dDevicePixelRatio / initialScalefactor; + m_minScaleFactor = 1 / unscaledDevicePixelRatio; + QString configuredSkinPath = m_pSkinLoader->getConfiguredSkinPath(); int index = 0; const auto* const pScreen = getScreen(); @@ -282,6 +293,7 @@ void DlgPrefInterface::slotUpdate() { // with 1.00 as no scaling, so multiply the stored value by 100. spinBoxScaleFactor->setValue(m_pConfig->getValue( ConfigKey("[Config]", "ScaleFactor"), m_dScaleFactor) * 100); + spinBoxScaleFactor->setMinimum(m_minScaleFactor * 100); checkBoxStartFullScreen->setChecked(m_pConfig->getValue( ConfigKey("[Config]", "StartInFullscreen"), m_bStartWithFullScreen)); diff --git a/src/preferences/dialog/dlgprefinterface.h b/src/preferences/dialog/dlgprefinterface.h index 58784501699..b22da9a5e0b 100644 --- a/src/preferences/dialog/dlgprefinterface.h +++ b/src/preferences/dialog/dlgprefinterface.h @@ -55,6 +55,7 @@ class DlgPrefInterface : public DlgPreferencePage, public Ui::DlgPrefControlsDlg QString m_localeOnUpdate; mixxx::TooltipsPreference m_tooltipMode; double m_dScaleFactor; + double m_minScaleFactor; double m_dDevicePixelRatio; bool m_bStartWithFullScreen; mixxx::ScreenSaverPreference m_screensaverMode; diff --git a/src/util/cmdlineargs.cpp b/src/util/cmdlineargs.cpp index 36ecb2f0185..4c9f35b34af 100644 --- a/src/util/cmdlineargs.cpp +++ b/src/util/cmdlineargs.cpp @@ -16,6 +16,7 @@ CmdlineArgs::CmdlineArgs() m_safeMode(false), m_debugAssertBreak(false), m_settingsPathSet(false), + m_scaleFactor(1.0), m_logLevel(mixxx::kLogLevelDefault), m_logFlushLevel(mixxx::kLogFlushLevelDefault), // We are not ready to switch to XDG folders under Linux, so keeping $HOME/.mixxx as preferences folder. see lp:1463273 diff --git a/src/util/cmdlineargs.h b/src/util/cmdlineargs.h index 1aa10034983..131feaa7644 100644 --- a/src/util/cmdlineargs.h +++ b/src/util/cmdlineargs.h @@ -41,6 +41,13 @@ class CmdlineArgs final { const QString& getResourcePath() const { return m_resourcePath; } const QString& getTimelinePath() const { return m_timelinePath; } + void storeScaleFactor(double scaleFactor) { + m_scaleFactor = scaleFactor; + } + double getScaleFactor() const { + return m_scaleFactor; + } + private: QList m_musicFiles; // List of files to load into players at startup bool m_startInFullscreen; // Start in fullscreen mode @@ -49,6 +56,7 @@ class CmdlineArgs final { bool m_safeMode; bool m_debugAssertBreak; bool m_settingsPathSet; // has --settingsPath been set on command line ? + double m_scaleFactor; mixxx::LogLevel m_logLevel; // Level of stderr logging message verbosity mixxx::LogLevel m_logFlushLevel; // Level of mixx.log file flushing QString m_locale; From 27e66c99bf7827d2776e62131a673c3b2ff74915 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Thu, 17 Jun 2021 22:48:50 +0200 Subject: [PATCH 05/47] rename config key variable to kScaleFactorConfigKey --- src/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index b70926e70be..380670300b3 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -29,7 +29,7 @@ constexpr int kFatalErrorOnStartupExitCode = 1; constexpr int kParseCmdlineArgsErrorExitCode = 2; constexpr char kScaleFactorEnvVar[] = "QT_SCALE_FACTOR"; -const QString kStrScaleFactor = QStringLiteral("ScaleFactor"); +const QString kScaleFactorConfigKey = QStringLiteral("ScaleFactor"); int runMixxx(MixxxApplication* app, const CmdlineArgs& args) { auto coreServices = std::make_shared(args); @@ -67,8 +67,8 @@ void adjustScaleFactor(CmdlineArgs* pArgs) { QString strScaleFactor; QString line = in.readLine(); while (!line.isNull()) { - if (line.startsWith(kStrScaleFactor)) { - strScaleFactor = line.mid(kStrScaleFactor.size() + 1); + if (line.startsWith(kScaleFactorConfigKey)) { + strScaleFactor = line.mid(kScaleFactorConfigKey.size() + 1); break; } line = in.readLine(); From 3cbfba08404d8a4571554fa38702aebc5f61f06b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Thu, 17 Jun 2021 22:50:39 +0200 Subject: [PATCH 06/47] Fix Typos Co-authored-by: ronso0 --- src/preferences/dialog/dlgprefinterface.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/preferences/dialog/dlgprefinterface.cpp b/src/preferences/dialog/dlgprefinterface.cpp index e8eef754afe..4ac74b1a43a 100644 --- a/src/preferences/dialog/dlgprefinterface.cpp +++ b/src/preferences/dialog/dlgprefinterface.cpp @@ -43,8 +43,8 @@ DlgPrefInterface::DlgPrefInterface( // get the pixel ratio to display a crisp skin preview when Mixxx is scaled m_dDevicePixelRatio = getDevicePixelRatioF(this); - // Calculate the minimum scale factor that leads to a device picel ratio of 1.0 - // m_dDevicePixelRatio must not drop below 1.0 because this creats an + // Calculate the minimum scale factor that leads to a device pixel ratio of 1.0 + // m_dDevicePixelRatio must not drop below 1.0 because this creates an // unusable GUI with visual artefacts double initialScalefactor = CmdlineArgs::Instance().getScaleFactor(); if (initialScalefactor <= 0) { From a6942b5e3b5412faa31ccac49db5b8368ad94f85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Tue, 27 Jul 2021 22:29:10 +0200 Subject: [PATCH 07/47] fix spelling of initialScaleFactor --- src/preferences/dialog/dlgprefinterface.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/preferences/dialog/dlgprefinterface.cpp b/src/preferences/dialog/dlgprefinterface.cpp index 31e05db6e2f..75c0cdd2413 100644 --- a/src/preferences/dialog/dlgprefinterface.cpp +++ b/src/preferences/dialog/dlgprefinterface.cpp @@ -47,11 +47,11 @@ DlgPrefInterface::DlgPrefInterface( // Calculate the minimum scale factor that leads to a device pixel ratio of 1.0 // m_dDevicePixelRatio must not drop below 1.0 because this creates an // unusable GUI with visual artefacts - double initialScalefactor = CmdlineArgs::Instance().getScaleFactor(); - if (initialScalefactor <= 0) { - initialScalefactor = 1.0; + double initialScaleFactor = CmdlineArgs::Instance().getScaleFactor(); + if (initialScaleFactor <= 0) { + initialScaleFactor = 1.0; } - double unscaledDevicePixelRatio = m_dDevicePixelRatio / initialScalefactor; + double unscaledDevicePixelRatio = m_dDevicePixelRatio / initialScaleFactor; m_minScaleFactor = 1 / unscaledDevicePixelRatio; VERIFY_OR_DEBUG_ASSERT(m_pSkin != nullptr) { From 2aee8182f09f4859141d26ca5478e72e3aa51b1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Tue, 27 Jul 2021 22:54:53 +0200 Subject: [PATCH 08/47] Use constants for config groups and keys --- src/preferences/dialog/dlgprefinterface.cpp | 45 ++++++++++++++------- 1 file changed, 31 insertions(+), 14 deletions(-) diff --git a/src/preferences/dialog/dlgprefinterface.cpp b/src/preferences/dialog/dlgprefinterface.cpp index 75c0cdd2413..0c7b9f6c361 100644 --- a/src/preferences/dialog/dlgprefinterface.cpp +++ b/src/preferences/dialog/dlgprefinterface.cpp @@ -24,6 +24,19 @@ using mixxx::skin::SkinManifest; using mixxx::skin::SkinPointer; +namespace { + +const QString kConfigGroup = QStringLiteral("[Config]"); +const QString kControlsGroup = QStringLiteral("[Controls]"); +const QString kScaleFactorKey = QStringLiteral("ScaleFactor"); +const QString kStartInFullscreenKey = QStringLiteral("StartInFullscreen"); +const QString kSchemeKey = QStringLiteral("Scheme"); +const QString kResizableSkinKey = QStringLiteral("ResizableSkin"); +const QString kLocaleKey = QStringLiteral("Locale"); +const QString kTooltipsKey = QStringLiteral("Tooltips"); + +} // namespace + DlgPrefInterface::DlgPrefInterface( QWidget* parent, std::shared_ptr pScreensaverManager, @@ -159,8 +172,11 @@ DlgPrefInterface::DlgPrefInterface( &DlgPrefInterface::slotSetScheme); // Start in fullscreen mode - checkBoxStartFullScreen->setChecked(m_pConfig->getValueString( - ConfigKey("[Config]", "StartInFullscreen")).toInt()==1); + checkBoxStartFullScreen->setChecked( + m_pConfig + ->getValueString( + ConfigKey(kConfigGroup, kStartInFullscreenKey)) + .toInt() == 1); // Screensaver mode comboBoxScreensaver->clear(); @@ -216,7 +232,7 @@ void DlgPrefInterface::slotUpdateSchemes() { m_colorScheme = QString(); } else { ComboBoxSchemeconf->setEnabled(true); - QString configScheme = m_pConfig->getValueString(ConfigKey("[Config]", "Scheme")); + QString configScheme = m_pConfig->getValueString(ConfigKey(kConfigGroup, kSchemeKey)); bool foundConfigScheme = false; for (int i = 0; i < schlist.size(); i++) { ComboBoxSchemeconf->addItem(schlist[i]); @@ -239,7 +255,7 @@ void DlgPrefInterface::slotUpdateSchemes() { void DlgPrefInterface::slotUpdate() { const QString skinNameOnUpdate = - m_pConfig->getValueString(ConfigKey("[Config]", "ResizableSkin")); + m_pConfig->getValueString(ConfigKey(kConfigGroup, kResizableSkinKey)); const SkinPointer pSkinOnUpdate = m_skins[skinNameOnUpdate]; if (pSkinOnUpdate != nullptr && pSkinOnUpdate->isValid()) { m_skinNameOnUpdate = pSkinOnUpdate->name(); @@ -250,17 +266,18 @@ void DlgPrefInterface::slotUpdate() { slotUpdateSchemes(); m_bRebootMixxxView = false; - m_localeOnUpdate = m_pConfig->getValueString(ConfigKey("[Config]", "Locale")); + m_localeOnUpdate = m_pConfig->getValueString(ConfigKey(kConfigGroup, kLocaleKey)); ComboBoxLocale->setCurrentIndex(ComboBoxLocale->findData(m_localeOnUpdate)); // The spinbox shows a percentage but Mixxx stores a multiplication factor // with 1.00 as no scaling, so multiply the stored value by 100. spinBoxScaleFactor->setValue(m_pConfig->getValue( - ConfigKey("[Config]", "ScaleFactor"), m_dScaleFactor) * 100); + ConfigKey(kConfigGroup, kScaleFactorKey), m_dScaleFactor) * + 100); spinBoxScaleFactor->setMinimum(m_minScaleFactor * 100); checkBoxStartFullScreen->setChecked(m_pConfig->getValue( - ConfigKey("[Config]", "StartInFullscreen"), m_bStartWithFullScreen)); + ConfigKey(kConfigGroup, kStartInFullscreenKey), m_bStartWithFullScreen)); loadTooltipPreferenceFromConfig(); @@ -367,20 +384,20 @@ void DlgPrefInterface::slotSetSkin(int) { } void DlgPrefInterface::slotApply() { - m_pConfig->set(ConfigKey("[Config]", "ResizableSkin"), m_pSkin->name()); - m_pConfig->set(ConfigKey("[Config]", "Scheme"), m_colorScheme); + m_pConfig->set(ConfigKey(kConfigGroup, kResizableSkinKey), m_pSkin->name()); + m_pConfig->set(ConfigKey(kConfigGroup, kSchemeKey), m_colorScheme); QString locale = ComboBoxLocale->itemData( ComboBoxLocale->currentIndex()).toString(); - m_pConfig->set(ConfigKey("[Config]", "Locale"), locale); + m_pConfig->set(ConfigKey(kConfigGroup, kLocaleKey), locale); double scaleFactor = spinBoxScaleFactor->value() / 100; - m_pConfig->setValue(ConfigKey("[Config]", "ScaleFactor"), scaleFactor); + m_pConfig->setValue(ConfigKey(kConfigGroup, kScaleFactorKey), scaleFactor); - m_pConfig->set(ConfigKey("[Config]", "StartInFullscreen"), + m_pConfig->set(ConfigKey(kConfigGroup, kStartInFullscreenKey), ConfigValue(checkBoxStartFullScreen->isChecked())); - m_pConfig->set(ConfigKey("[Controls]", "Tooltips"), + m_pConfig->set(ConfigKey(kControlsGroup, kTooltipsKey), ConfigValue(static_cast(m_tooltipMode))); emit tooltipModeChanged(m_tooltipMode); @@ -410,7 +427,7 @@ void DlgPrefInterface::slotApply() { void DlgPrefInterface::loadTooltipPreferenceFromConfig() { const auto tooltipMode = static_cast( - m_pConfig->getValue(ConfigKey("[Controls]", "Tooltips"), + m_pConfig->getValue(ConfigKey(kControlsGroup, kTooltipsKey), static_cast(mixxx::TooltipsPreference::TOOLTIPS_ON))); switch (tooltipMode) { case mixxx::TooltipsPreference::TOOLTIPS_OFF: From 72cd0b32bd6396190613c12583609bc3ae52cec1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Wed, 28 Jul 2021 07:52:59 +0200 Subject: [PATCH 09/47] Avoid ugly line breaks --- src/preferences/dialog/dlgprefinterface.cpp | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/src/preferences/dialog/dlgprefinterface.cpp b/src/preferences/dialog/dlgprefinterface.cpp index 0c7b9f6c361..dfe610c4387 100644 --- a/src/preferences/dialog/dlgprefinterface.cpp +++ b/src/preferences/dialog/dlgprefinterface.cpp @@ -173,10 +173,7 @@ DlgPrefInterface::DlgPrefInterface( // Start in fullscreen mode checkBoxStartFullScreen->setChecked( - m_pConfig - ->getValueString( - ConfigKey(kConfigGroup, kStartInFullscreenKey)) - .toInt() == 1); + m_pConfig->getValue(ConfigKey(kConfigGroup, kStartInFullscreenKey), 0) == 1); // Screensaver mode comboBoxScreensaver->clear(); @@ -232,7 +229,7 @@ void DlgPrefInterface::slotUpdateSchemes() { m_colorScheme = QString(); } else { ComboBoxSchemeconf->setEnabled(true); - QString configScheme = m_pConfig->getValueString(ConfigKey(kConfigGroup, kSchemeKey)); + QString configScheme = m_pConfig->getValue(ConfigKey(kConfigGroup, kSchemeKey)); bool foundConfigScheme = false; for (int i = 0; i < schlist.size(); i++) { ComboBoxSchemeconf->addItem(schlist[i]); @@ -255,7 +252,7 @@ void DlgPrefInterface::slotUpdateSchemes() { void DlgPrefInterface::slotUpdate() { const QString skinNameOnUpdate = - m_pConfig->getValueString(ConfigKey(kConfigGroup, kResizableSkinKey)); + m_pConfig->getValue(ConfigKey(kConfigGroup, kResizableSkinKey)); const SkinPointer pSkinOnUpdate = m_skins[skinNameOnUpdate]; if (pSkinOnUpdate != nullptr && pSkinOnUpdate->isValid()) { m_skinNameOnUpdate = pSkinOnUpdate->name(); @@ -266,14 +263,14 @@ void DlgPrefInterface::slotUpdate() { slotUpdateSchemes(); m_bRebootMixxxView = false; - m_localeOnUpdate = m_pConfig->getValueString(ConfigKey(kConfigGroup, kLocaleKey)); + m_localeOnUpdate = m_pConfig->getValue(ConfigKey(kConfigGroup, kLocaleKey)); ComboBoxLocale->setCurrentIndex(ComboBoxLocale->findData(m_localeOnUpdate)); // The spinbox shows a percentage but Mixxx stores a multiplication factor // with 1.00 as no scaling, so multiply the stored value by 100. - spinBoxScaleFactor->setValue(m_pConfig->getValue( - ConfigKey(kConfigGroup, kScaleFactorKey), m_dScaleFactor) * - 100); + double configScaleFactor = m_pConfig->getValue( + ConfigKey(kConfigGroup, kScaleFactorKey), m_dScaleFactor); + spinBoxScaleFactor->setValue(configScaleFactor * 100); spinBoxScaleFactor->setMinimum(m_minScaleFactor * 100); checkBoxStartFullScreen->setChecked(m_pConfig->getValue( From d3fabee08a1b40baedb8266285a60bb9b02cd212 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Tue, 3 Aug 2021 00:22:31 +0200 Subject: [PATCH 10/47] Remove unneeded include --- src/main.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index d75bfb5ae63..6b1d6c1bbe7 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,6 +1,5 @@ #include #include -#include #include #include #include From 702acf75de420b8bc7aa855c2d4442c66363fcfd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Thu, 12 Aug 2021 11:43:35 +0200 Subject: [PATCH 11/47] Added FindJACK.cmake Copied from Be-ing/portaudio --- cmake/modules/FindJACK.cmake | 67 ++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 cmake/modules/FindJACK.cmake diff --git a/cmake/modules/FindJACK.cmake b/cmake/modules/FindJACK.cmake new file mode 100644 index 00000000000..5bf8e4272ff --- /dev/null +++ b/cmake/modules/FindJACK.cmake @@ -0,0 +1,67 @@ +#[=======================================================================[.rst: +FindJACK +-------- + +Finds the JACK Audio Connection Kit library. + +Imported Targets +^^^^^^^^^^^^^^^^ + +This module provides the following imported targets, if found: + +``JACK::jack`` + The JACK library + +#]=======================================================================] + +# Prefer finding the libraries from pkgconfig rather than find_library. This is +# required to build with PipeWire's reimplementation of the JACK library. +# +# This also enables using PortAudio with the jack2 port in vcpkg. That only +# builds JackWeakAPI (not the JACK server) which dynamically loads the real +# JACK library and forwards API calls to it. JackWeakAPI requires linking `dl` +# in addition to jack, as specified in the pkgconfig file in vcpkg. +find_package(PkgConfig QUIET) +if(PkgConfig_FOUND) + pkg_check_modules(JACK jack) +else() + find_library(JACK_LINK_LIBRARIES + NAMES jack + DOC "JACK library" + ) + find_path(JACK_INCLUDEDIR + NAMES jack/jack.h + DOC "JACK header" + ) +endif() + +find_package(Regex) +list(APPEND JACK_LINK_LIBRARIES Regex::regex) + +if(NOT CMAKE_USE_PTHREADS_INIT) + # This CMake find module is provided by the pthreads port in vcpkg. + find_package(pthreads) + list(APPEND JACK_LINK_LIBRARIES PThreads4W::PThreads4W) +endif() + +if(CMAKE_USE_PTHREADS_INIT OR TARGET PThreads4W::PThreads4W) + set(PTHREADS_AVAILABLE TRUE) +else() + set(PTHREADS_AVAILABLE FALSE) +endif() + +include(FindPackageHandleStandardArgs) +find_package_handle_standard_args( + JACK + DEFAULT_MSG + JACK_LINK_LIBRARIES + JACK_INCLUDEDIR + PTHREADS_AVAILABLE + Regex_FOUND +) + +if(JACK_FOUND AND NOT TARGET JACK::jack) + add_library(JACK::jack INTERFACE IMPORTED) + target_link_libraries(JACK::jack INTERFACE "${JACK_LINK_LIBRARIES}" Regex::regex) + target_include_directories(JACK::jack INTERFACE "${JACK_INCLUDEDIR}") +endif() From af4c57e14b4f9c13b369eeeaa56e6f703e820894 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Thu, 12 Aug 2021 13:55:25 +0200 Subject: [PATCH 12/47] Fix FindJACK.cmake for cases others than windows --- cmake/modules/FindJACK.cmake | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/cmake/modules/FindJACK.cmake b/cmake/modules/FindJACK.cmake index 5bf8e4272ff..5fafe417f94 100644 --- a/cmake/modules/FindJACK.cmake +++ b/cmake/modules/FindJACK.cmake @@ -38,30 +38,24 @@ endif() find_package(Regex) list(APPEND JACK_LINK_LIBRARIES Regex::regex) -if(NOT CMAKE_USE_PTHREADS_INIT) - # This CMake find module is provided by the pthreads port in vcpkg. - find_package(pthreads) +if(WIN32) + # vcpkg provides CMake targets for pthreads4w + # This won't work if pthreads4w was built without vcpkg. + find_package(pthreads REQUIRED) list(APPEND JACK_LINK_LIBRARIES PThreads4W::PThreads4W) endif() -if(CMAKE_USE_PTHREADS_INIT OR TARGET PThreads4W::PThreads4W) - set(PTHREADS_AVAILABLE TRUE) -else() - set(PTHREADS_AVAILABLE FALSE) -endif() - include(FindPackageHandleStandardArgs) find_package_handle_standard_args( JACK DEFAULT_MSG JACK_LINK_LIBRARIES JACK_INCLUDEDIR - PTHREADS_AVAILABLE Regex_FOUND ) if(JACK_FOUND AND NOT TARGET JACK::jack) add_library(JACK::jack INTERFACE IMPORTED) - target_link_libraries(JACK::jack INTERFACE "${JACK_LINK_LIBRARIES}" Regex::regex) + target_link_libraries(JACK::jack INTERFACE "${JACK_LINK_LIBRARIES}") target_include_directories(JACK::jack INTERFACE "${JACK_INCLUDEDIR}") endif() From ee1ce4a9dbd1632f876972064037d10affc01fb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Wed, 18 Aug 2021 18:29:45 +0200 Subject: [PATCH 13/47] Remove unnecessary regex dependency from FindJACK.cmake --- cmake/modules/FindJACK.cmake | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cmake/modules/FindJACK.cmake b/cmake/modules/FindJACK.cmake index 5fafe417f94..dfd2b0dad35 100644 --- a/cmake/modules/FindJACK.cmake +++ b/cmake/modules/FindJACK.cmake @@ -35,9 +35,6 @@ else() ) endif() -find_package(Regex) -list(APPEND JACK_LINK_LIBRARIES Regex::regex) - if(WIN32) # vcpkg provides CMake targets for pthreads4w # This won't work if pthreads4w was built without vcpkg. @@ -51,7 +48,6 @@ find_package_handle_standard_args( DEFAULT_MSG JACK_LINK_LIBRARIES JACK_INCLUDEDIR - Regex_FOUND ) if(JACK_FOUND AND NOT TARGET JACK::jack) From 4b1fd4e11dfa709e05c09f7b6314da625acd2cd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Thu, 12 Aug 2021 10:19:53 +0200 Subject: [PATCH 14/47] [portaudio] directly link to jack in the static case --- cmake/modules/FindPortAudio.cmake | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/cmake/modules/FindPortAudio.cmake b/cmake/modules/FindPortAudio.cmake index 9027f81b073..af58ac11f1a 100644 --- a/cmake/modules/FindPortAudio.cmake +++ b/cmake/modules/FindPortAudio.cmake @@ -78,5 +78,14 @@ if(PortAudio_FOUND) INTERFACE_COMPILE_OPTIONS "${PC_PortAudio_CFLAGS_OTHER}" INTERFACE_INCLUDE_DIRECTORIES "${PortAudio_INCLUDE_DIR}" ) + is_static_library(PortAudio_IS_STATIC PortAudio::PortAudio) + if(PortAudio_IS_STATIC) + find_package(JACK) + if(JACK_FOUND) + set_property(TARGET PortAudio::PortAudio APPEND PROPERTY INTERFACE_LINK_LIBRARIES + JACK::jack + ) + endif() + endif() endif() endif() From 1325061854bc0c8f234d6026ed54e079d4017670 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Wed, 7 Jul 2021 09:23:24 +0200 Subject: [PATCH 15/47] Switch to the vcpkg environment for osx and update windows environment to the same version --- packaging/macos/build_environment | 4 ++-- packaging/windows/build_environment | 2 +- tools/macos_buildenv.sh | 35 +++++++++-------------------- tools/windows_buildenv.bat | 2 +- 4 files changed, 15 insertions(+), 28 deletions(-) diff --git a/packaging/macos/build_environment b/packaging/macos/build_environment index a54a132291c..fd94f80bccb 100644 --- a/packaging/macos/build_environment +++ b/packaging/macos/build_environment @@ -1,2 +1,2 @@ -2.3-j00026-0b1209e3-osx10.12-x86_64-release -1b9ed64629fbf9bc6cf466840943588029594a649b0674ee347513f4bc677b8b +mixxx-deps-2.4-x64-osx-0f25dfd +71b5e92faca6c99fe89806a5674861ba62c23f7ae768382cedafe0e75dfdc8dd diff --git a/packaging/windows/build_environment b/packaging/windows/build_environment index f31ffb8a0dc..ec6ad58d8a9 100644 --- a/packaging/windows/build_environment +++ b/packaging/windows/build_environment @@ -1 +1 @@ -mixxx-deps-2.3-x64-windows-049b5ad +mixxx-deps-2.4-x64-windows-0f25dfd diff --git a/tools/macos_buildenv.sh b/tools/macos_buildenv.sh index 51c4a2e1ed3..fc38aed424c 100755 --- a/tools/macos_buildenv.sh +++ b/tools/macos_buildenv.sh @@ -35,16 +35,13 @@ case "$1" in ;; setup) - # Minimum required by Qt 5.12 - MACOSX_DEPLOYMENT_TARGET=10.12 - BUILDENV_PATH="${BUILDENV_BASEPATH}/${BUILDENV_NAME}" mkdir -p "${BUILDENV_BASEPATH}" if [ ! -d "${BUILDENV_PATH}" ]; then if [ "$1" != "--profile" ]; then echo "Build environment $BUILDENV_NAME not found in mixxx repository, downloading it..." - curl "https://downloads.mixxx.org/dependencies/buildserver/2.3.x-macosx/${BUILDENV_NAME}.tar.gz" -o "${BUILDENV_PATH}.tar.gz" - OBSERVED_SHA256=$(shasum -a 256 "${BUILDENV_PATH}.tar.gz"|cut -f 1 -d' ') + curl "https://downloads.mixxx.org/dependencies/2.4/macOS/${BUILDENV_NAME}.zip" -o "${BUILDENV_PATH}.zip" + OBSERVED_SHA256=$(shasum -a 256 "${BUILDENV_PATH}.zip"|cut -f 1 -d' ') if [[ "$OBSERVED_SHA256" == "$BUILDENV_SHA256" ]]; then echo "Download matched expected SHA256 sum $BUILDENV_SHA256" else @@ -55,7 +52,7 @@ case "$1" in fi echo "" echo "Extracting ${BUILDENV_NAME}.tar.gz..." - tar xf "${BUILDENV_PATH}.tar.gz" -C "${BUILDENV_BASEPATH}" && \ + unzip "${BUILDENV_PATH}.zip" -d "${BUILDENV_BASEPATH}" && \ echo "Successfully extracted ${BUILDENV_NAME}.tar.gz" else echo "Build environment $BUILDENV_NAME not found in mixxx repository, run the command below to download it." @@ -90,26 +87,16 @@ case "$1" in rm "${SDKROOT}.tar.xz" fi - Qt5_DIR="$(find "${BUILDENV_PATH}" -type d -path "*/cmake/Qt5")" - [ -z "${Qt5_DIR}" ] && echo "Failed to locate Qt5_DIR!" >&2 - QT_QPA_PLATFORM_PLUGIN_PATH="$(find "${BUILDENV_PATH}" -type d -path "*/plugins")" - [ -z "${QT_QPA_PLATFORM_PLUGIN_PATH}" ] && echo "Failed to locate QT_QPA_PLATFORM_PLUGIN_PATH" >&2 - export CC="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" - export CXX="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++" - export PATH="${BUILDENV_PATH}/bin:${PATH}" - export CMAKE_PREFIX_PATH="${BUILDENV_PATH}" - export Qt5_DIR - export QT_QPA_PLATFORM_PLUGIN_PATH + export VCPKG_ROOT="${BUILDENV_PATH}" + export VCPKG_OVERLAY_TRIPLETS="${BUILDENV_PATH}/overlay/triplets" + export VCPKG_DEFAULT_TRIPLET=x64-osx + export X_VCPKG_APPLOCAL_DEPS_INSTALL=ON echo_exported_variables() { - echo "CC=${CC}" - echo "CXX=${CXX}" - echo "SDKROOT=${SDKROOT}" - echo "MACOSX_DEPLOYMENT_TARGET=${MACOSX_DEPLOYMENT_TARGET}" - echo "CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}" - echo "Qt5_DIR=${Qt5_DIR}" - echo "QT_QPA_PLATFORM_PLUGIN_PATH=${QT_QPA_PLATFORM_PLUGIN_PATH}" - echo "PATH=${PATH}" + echo "VCPKG_ROOT=${VCPKG_ROOT}" + echo "VCPKG_OVERLAY_TRIPLETS=${VCPKG_OVERLAY_TRIPLETS}" + echo "VCPKG_DEFAULT_TRIPLET=${VCPKG_DEFAULT_TRIPLET}" + echo "X_VCPKG_APPLOCAL_DEPS_INSTALL=${X_VCPKG_APPLOCAL_DEPS_INSTALL}" } if [ -n "${GITHUB_ENV}" ]; then diff --git a/tools/windows_buildenv.bat b/tools/windows_buildenv.bat index 6d60b6e9705..daf7b5c59ba 100644 --- a/tools/windows_buildenv.bat +++ b/tools/windows_buildenv.bat @@ -56,7 +56,7 @@ EXIT /B 0 ) IF NOT EXIST %BUILDENV_PATH% ( - SET BUILDENV_URL=https://downloads.mixxx.org/dependencies/2.3/Windows/!BUILDENV_NAME!.zip + SET BUILDENV_URL=https://downloads.mixxx.org/dependencies/2.4/Windows/!BUILDENV_NAME!.zip IF NOT EXIST !BUILDENV_PATH!.zip ( ECHO ^Download prebuilt build environment from "!BUILDENV_URL!" to "!BUILDENV_PATH!.zip"... BITSADMIN /transfer buildenvjob /download /priority normal !BUILDENV_URL! !BUILDENV_PATH!.zip From 974ecc5cf9df9e14b48f3a3c1b5a134b965aa154 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Wed, 7 Jul 2021 11:19:26 +0200 Subject: [PATCH 16/47] install ccache and make from Homebrew --- .github/workflows/build.yml | 6 ++++++ tools/macos_buildenv.sh | 2 ++ 2 files changed, 8 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f7e4d99f757..21ed2bb8e3d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -168,6 +168,12 @@ jobs: if: runner.os == 'Windows' uses: seanmiddleditch/gha-setup-vsdevenv@v3 + - name: "[macOS] install ccache and make" + if: runner.os == 'macOS' + run: | + brew install ccache + brew install make # is installed as gmake + - name: "[macOS/Windows] Get build environment name" if: runner.os != 'Linux' id: buildenv_name diff --git a/tools/macos_buildenv.sh b/tools/macos_buildenv.sh index fc38aed424c..3ebbbe20066 100755 --- a/tools/macos_buildenv.sh +++ b/tools/macos_buildenv.sh @@ -91,12 +91,14 @@ case "$1" in export VCPKG_OVERLAY_TRIPLETS="${BUILDENV_PATH}/overlay/triplets" export VCPKG_DEFAULT_TRIPLET=x64-osx export X_VCPKG_APPLOCAL_DEPS_INSTALL=ON + export CMAKE_MAKE_PROGRAM=gmake echo_exported_variables() { echo "VCPKG_ROOT=${VCPKG_ROOT}" echo "VCPKG_OVERLAY_TRIPLETS=${VCPKG_OVERLAY_TRIPLETS}" echo "VCPKG_DEFAULT_TRIPLET=${VCPKG_DEFAULT_TRIPLET}" echo "X_VCPKG_APPLOCAL_DEPS_INSTALL=${X_VCPKG_APPLOCAL_DEPS_INSTALL}" + echo "CMAKE_MAKE_PROGRAM=${CMAKE_MAKE_PROGRAM}" } if [ -n "${GITHUB_ENV}" ]; then From 86be6531e6e838c4e2a7f0050e52d7a7c6b16cc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Wed, 18 Aug 2021 18:08:08 +0200 Subject: [PATCH 17/47] make pkg-config alo look also for hidapi --- cmake/modules/Findhidapi.cmake | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmake/modules/Findhidapi.cmake b/cmake/modules/Findhidapi.cmake index 14178a0e0d3..36a25a53707 100644 --- a/cmake/modules/Findhidapi.cmake +++ b/cmake/modules/Findhidapi.cmake @@ -45,7 +45,7 @@ The following cache variables may also be set: find_package(PkgConfig QUIET) if(PkgConfig_FOUND) - pkg_check_modules(PC_hidapi QUIET hidapi-libusb) + pkg_search_module(PC_hidapi QUIET hidapi-libusb hidapi) endif() find_path(hidapi_INCLUDE_DIR @@ -72,7 +72,7 @@ if(CMAKE_SYSTEM_NAME STREQUAL Linux) endif() # Version detection -if(DEFINED PC_hidapi_VERSION) +if(PC_hidapi_VERSION) set(hidapi_VERSION "${PC_hidapi_VERSION}") else() if (EXISTS "${hidapi_INCLUDE_DIR}/hidapi.h") @@ -96,7 +96,7 @@ endif() include(FindPackageHandleStandardArgs) find_package_handle_standard_args( hidapi - REQUIRED_VARS hidapi_LIBRARY hidapi_INCLUDE_DIR + REQUIRED_VARS hidapi_LIBRARY hidapi_INCLUDE_DIR hidapi_VERSION VERSION_VAR hidapi_VERSION ) From c5edb37fe5053b5da2197a881bb2543438867c4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Wed, 18 Aug 2021 20:07:06 +0200 Subject: [PATCH 18/47] Switch to Ninja for macOS builds --- .github/workflows/build.yml | 2 +- tools/macos_buildenv.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 21ed2bb8e3d..03f59b804d7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -172,7 +172,7 @@ jobs: if: runner.os == 'macOS' run: | brew install ccache - brew install make # is installed as gmake + brew install ninja - name: "[macOS/Windows] Get build environment name" if: runner.os != 'Linux' diff --git a/tools/macos_buildenv.sh b/tools/macos_buildenv.sh index 3ebbbe20066..aa903e7aae7 100755 --- a/tools/macos_buildenv.sh +++ b/tools/macos_buildenv.sh @@ -91,14 +91,14 @@ case "$1" in export VCPKG_OVERLAY_TRIPLETS="${BUILDENV_PATH}/overlay/triplets" export VCPKG_DEFAULT_TRIPLET=x64-osx export X_VCPKG_APPLOCAL_DEPS_INSTALL=ON - export CMAKE_MAKE_PROGRAM=gmake + export CMAKE_GENERATOR=Ninja echo_exported_variables() { echo "VCPKG_ROOT=${VCPKG_ROOT}" echo "VCPKG_OVERLAY_TRIPLETS=${VCPKG_OVERLAY_TRIPLETS}" echo "VCPKG_DEFAULT_TRIPLET=${VCPKG_DEFAULT_TRIPLET}" echo "X_VCPKG_APPLOCAL_DEPS_INSTALL=${X_VCPKG_APPLOCAL_DEPS_INSTALL}" - echo "CMAKE_MAKE_PROGRAM=${CMAKE_MAKE_PROGRAM}" + echo "CMAKE_GENERATOR=${CMAKE_GENERATOR}" } if [ -n "${GITHUB_ENV}" ]; then From 28581b99009b4002c5678167cf3f486fba84e9aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Sun, 22 Aug 2021 15:45:11 +0200 Subject: [PATCH 19/47] Re-use cfg file parser from ConfiObject --- src/main.cpp | 37 +++++++++++++++----------------- src/preferences/configobject.cpp | 16 +++++++++++--- src/preferences/configobject.h | 1 + 3 files changed, 31 insertions(+), 23 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 6b1d6c1bbe7..7885da66239 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -24,7 +24,8 @@ constexpr int kFatalErrorOnStartupExitCode = 1; constexpr int kParseCmdlineArgsErrorExitCode = 2; constexpr char kScaleFactorEnvVar[] = "QT_SCALE_FACTOR"; -const QString kScaleFactorConfigKey = QStringLiteral("ScaleFactor"); +const QString kConfigGroup = QStringLiteral("[Config]"); +const QString kScaleFactorKey = QStringLiteral("ScaleFactor"); int runMixxx(MixxxApplication* pApp, const CmdlineArgs& args) { const auto pCoreServices = std::make_shared(args, pApp); @@ -63,27 +64,23 @@ void adjustScaleFactor(CmdlineArgs* pArgs) { return; } } - // We cannot use ConfigObject, because it depends on MixxxApplication + // We cannot use SettingsManager, because it depends on MixxxApplication // but the scale factor is read during it's constructor. // QHighDpiScaling can not be used afterwards because it is private. - auto cfgFile = QFile(QDir(pArgs->getSettingsPath()).filePath(MIXXX_SETTINGS_FILE)); - if (cfgFile.open(QFile::ReadOnly | QFile::Text)) { - QTextStream in(&cfgFile); - QString strScaleFactor; - QString line = in.readLine(); - while (!line.isNull()) { - if (line.startsWith(kScaleFactorConfigKey)) { - strScaleFactor = line.mid(kScaleFactorConfigKey.size() + 1); - break; - } - line = in.readLine(); - } - double scaleFactor = strScaleFactor.toDouble(); - if (scaleFactor > 0) { - qDebug() << "Using preferences ScaleFactor" << scaleFactor; - qputenv(kScaleFactorEnvVar, strScaleFactor.toLocal8Bit()); - pArgs->storeScaleFactor(scaleFactor); - } + // This means the following code may fail after down/upgrade ... a one time issue. + + // Read and parse the config file from the settings path + auto config = ConfigObject( + QDir(pArgs->getSettingsPath()).filePath(MIXXX_SETTINGS_FILE), + QString(), + QString()); + QString strScaleFactor = config.getValue( + ConfigKey(kConfigGroup, kScaleFactorKey)); + double scaleFactor = strScaleFactor.toDouble(); + if (scaleFactor > 0) { + qDebug() << "Using preferences ScaleFactor" << scaleFactor; + qputenv(kScaleFactorEnvVar, strScaleFactor.toLocal8Bit()); + pArgs->storeScaleFactor(scaleFactor); } } diff --git a/src/preferences/configobject.cpp b/src/preferences/configobject.cpp index 52adf55e420..f622a0df251 100644 --- a/src/preferences/configobject.cpp +++ b/src/preferences/configobject.cpp @@ -105,9 +105,19 @@ ConfigValueKbd::ConfigValueKbd(const QKeySequence& keys) QTextStream(&value) << m_keys.toString(); } -template ConfigObject::ConfigObject(const QString& file) - : m_resourcePath(computeResourcePath()), - m_settingsPath(computeSettingsPath(file)) { +template +ConfigObject::ConfigObject(const QString& file) + : ConfigObject(file, computeResourcePath(), computeSettingsPath(file)) { + reopen(file); +} + +template +ConfigObject::ConfigObject( + const QString& file, + const QString& resourcePath, + const QString& settingsPath) + : m_resourcePath(resourcePath), + m_settingsPath(settingsPath) { reopen(file); } diff --git a/src/preferences/configobject.h b/src/preferences/configobject.h index 229f8c8a9dd..ef9b5ba8a6d 100644 --- a/src/preferences/configobject.h +++ b/src/preferences/configobject.h @@ -129,6 +129,7 @@ inline bool operator!=(const ConfigValueKbd& lhs, const ConfigValueKbd& rhs) { template class ConfigObject { public: ConfigObject(const QString& file); + ConfigObject(const QString& file, const QString& resourcePath, const QString& settingsPath); ConfigObject(const QDomNode& node); ~ConfigObject(); From 7ffa8f66acaa5920febc21da3fc15d29d4c10e7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Mon, 23 Aug 2021 09:42:21 +0200 Subject: [PATCH 20/47] IsStaticLibrary: Static library detection on windows is not implemented, return FALSE --- cmake/modules/IsStaticLibrary.cmake | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/cmake/modules/IsStaticLibrary.cmake b/cmake/modules/IsStaticLibrary.cmake index d6163a908fd..37d7358ac7d 100644 --- a/cmake/modules/IsStaticLibrary.cmake +++ b/cmake/modules/IsStaticLibrary.cmake @@ -2,7 +2,11 @@ IsStaticLibrary ------------- -Macros to set a given variable to true or false whether the library is static +Macros to set a given variable to true or false whether the library is static. + +This does not work on windows, because on windows we link always to a static +lib that loads either the dependent dlls as import library or contains the +functions itself. In this case this module returns FALSE. Usage: @@ -24,7 +28,8 @@ macro(IS_STATIC_LIBRARY var target) get_target_property(_target_type ${target} TYPE) if(${_target_type} STREQUAL "STATIC_LIBRARY") set(${var} TRUE) - elseif(${_target_type} STREQUAL "UNKNOWN_LIBRARY") + elseif(${_target_type} STREQUAL "UNKNOWN_LIBRARY" AND NOT WIN32) + # Guess from file name. Does not work on windows, see https://gitlab.kitware.com/cmake/cmake/-/issues/17338. get_target_property(_target_location ${target} LOCATION) get_filename_component(_target_extension ${_target_location} EXT) if(${_target_extension} STREQUAL ${CMAKE_STATIC_LIBRARY_SUFFIX}) From 0444717d4df90ee46688c12bf16628f0b07a8431 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Mon, 23 Aug 2021 14:44:43 +0200 Subject: [PATCH 21/47] set visibility=hidden related CMake variables --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index e52fe65faf6..0a671d40c4a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -370,6 +370,10 @@ elseif(GNU_GCC OR LLVM_CLANG) endif() endif() +set(CMAKE_C_VISIBILITY_PRESET hidden) +set(CMAKE_CXX_VISIBILITY_PRESET hidden) +set(CMAKE_VISIBILITY_INLINES_HIDDEN TRUE) + if(WIN32) # Add support for lib prefix on Windows set(CMAKE_FIND_LIBRARY_PREFIXES "" "lib") From 5f7300e0a7eb4e47106cdc3234a5698fb4aa1e1b Mon Sep 17 00:00:00 2001 From: ronso0 Date: Sun, 29 Aug 2021 21:36:04 +0200 Subject: [PATCH 22/47] sidebar: Left key jumps to parent and activates it --- src/widget/wlibrarysidebar.cpp | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/widget/wlibrarysidebar.cpp b/src/widget/wlibrarysidebar.cpp index 5e866367b99..ace457cb3a7 100644 --- a/src/widget/wlibrarysidebar.cpp +++ b/src/widget/wlibrarysidebar.cpp @@ -205,6 +205,26 @@ void WLibrarySidebar::keyPressEvent(QKeyEvent* event) { // // encoder click via "GoToItem" // qDebug() << "GoToItem"; // TODO(xxx) decide what todo here instead of in librarycontrol + } else if (event->key() == Qt::Key_Left) { + auto selModel = selectionModel(); + QModelIndexList selectedRows = selModel->selectedRows(); + if (selectedRows.isEmpty()) { + return; + } + // If an expanded item is selected let QTreeView collapse it + QModelIndex selIndex = selectedRows.first(); + DEBUG_ASSERT(selIndex.isValid()); + if (isExpanded(selIndex)) { + QTreeView::keyPressEvent(event); + return; + } + // Else jump to its parent and activate it + QModelIndex parentIndex = selIndex.parent(); + if (parentIndex.isValid()) { + selectIndex(parentIndex); + emit pressed(parentIndex); + } + return; } // Fall through to default handler. From 48392a8f2a63a94c36abb028a932f366e6d96ea1 Mon Sep 17 00:00:00 2001 From: ronso0 Date: Wed, 8 Sep 2021 22:58:24 +0200 Subject: [PATCH 23/47] LateNight: fix button svg warnings --- ...ed_sync.svg => btn_elevated_headsplit.svg} | 0 ....svg => btn_elevated_headsplit_active.svg} | 0 .../LateNight/controls/button_hotcue.xml | 4 +- .../controls/button_hotcue_inlne_style.xml | 81 ------------------- .../LateNight/mixer/mixer_main_headphone.xml | 8 +- .../buttons/btn_embedded_headsplit.svg | 5 ++ .../buttons/btn_embedded_headsplit_active.svg | 5 ++ 7 files changed, 16 insertions(+), 87 deletions(-) rename res/skins/LateNight/classic/buttons/{btn_elevated_sync.svg => btn_elevated_headsplit.svg} (100%) rename res/skins/LateNight/classic/buttons/{btn_elevated_sync_active.svg => btn_elevated_headsplit_active.svg} (100%) delete mode 100644 res/skins/LateNight/controls/button_hotcue_inlne_style.xml create mode 100644 res/skins/LateNight/palemoon/buttons/btn_embedded_headsplit.svg create mode 100644 res/skins/LateNight/palemoon/buttons/btn_embedded_headsplit_active.svg diff --git a/res/skins/LateNight/classic/buttons/btn_elevated_sync.svg b/res/skins/LateNight/classic/buttons/btn_elevated_headsplit.svg similarity index 100% rename from res/skins/LateNight/classic/buttons/btn_elevated_sync.svg rename to res/skins/LateNight/classic/buttons/btn_elevated_headsplit.svg diff --git a/res/skins/LateNight/classic/buttons/btn_elevated_sync_active.svg b/res/skins/LateNight/classic/buttons/btn_elevated_headsplit_active.svg similarity index 100% rename from res/skins/LateNight/classic/buttons/btn_elevated_sync_active.svg rename to res/skins/LateNight/classic/buttons/btn_elevated_headsplit_active.svg diff --git a/res/skins/LateNight/controls/button_hotcue.xml b/res/skins/LateNight/controls/button_hotcue.xml index 8e7d0a0dfc5..a537a138adc 100644 --- a/res/skins/LateNight/controls/button_hotcue.xml +++ b/res/skins/LateNight/controls/button_hotcue.xml @@ -29,8 +29,8 @@ 2 - skin:/buttons_/btn__square_set.svg - skin:/buttons_/btn__square_active.svg + skin://buttons/btn__square_set.svg + skin://buttons/btn__square_active.svg diff --git a/res/skins/LateNight/controls/button_hotcue_inlne_style.xml b/res/skins/LateNight/controls/button_hotcue_inlne_style.xml deleted file mode 100644 index f9ec442e5ba..00000000000 --- a/res/skins/LateNight/controls/button_hotcue_inlne_style.xml +++ /dev/null @@ -1,81 +0,0 @@ - - - diff --git a/res/skins/LateNight/mixer/mixer_main_headphone.xml b/res/skins/LateNight/mixer/mixer_main_headphone.xml index fb86ce127a0..fa3f7bad0c6 100644 --- a/res/skins/LateNight/mixer/mixer_main_headphone.xml +++ b/res/skins/LateNight/mixer/mixer_main_headphone.xml @@ -242,13 +242,13 @@ false 0 - skin://buttons/btn__sync.svg - skin://buttons/btn__sync.svg + skin://buttons/btn__headsplit.svg + skin://buttons/btn__headsplit.svg 1 - skin://buttons/btn__sync_active.svg - skin://buttons/btn__sync_active.svg + skin://buttons/btn__headsplit_active.svg + skin://buttons/btn__headsplit_active.svg [Master],headSplit diff --git a/res/skins/LateNight/palemoon/buttons/btn_embedded_headsplit.svg b/res/skins/LateNight/palemoon/buttons/btn_embedded_headsplit.svg new file mode 100644 index 00000000000..2c23098c911 --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn_embedded_headsplit.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/res/skins/LateNight/palemoon/buttons/btn_embedded_headsplit_active.svg b/res/skins/LateNight/palemoon/buttons/btn_embedded_headsplit_active.svg new file mode 100644 index 00000000000..b7bdbf8967a --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn_embedded_headsplit_active.svg @@ -0,0 +1,5 @@ + + + + + From eeea61cfa6d29ec7ad837d0602ba9314eec668b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Thu, 9 Sep 2021 14:29:35 +0200 Subject: [PATCH 24/47] Unpdate to new build environment fixing protobuf related linker warnings --- packaging/macos/build_environment | 4 ++-- packaging/windows/build_environment | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packaging/macos/build_environment b/packaging/macos/build_environment index fd94f80bccb..9496b716b0c 100644 --- a/packaging/macos/build_environment +++ b/packaging/macos/build_environment @@ -1,2 +1,2 @@ -mixxx-deps-2.4-x64-osx-0f25dfd -71b5e92faca6c99fe89806a5674861ba62c23f7ae768382cedafe0e75dfdc8dd +mixxx-deps-2.4-x64-osx-d36133a +b9f2bc77a0d4d802fff8cb5c0bfb8446f2522b9253f4455919c7094a87211478 diff --git a/packaging/windows/build_environment b/packaging/windows/build_environment index ec6ad58d8a9..35945bda92c 100644 --- a/packaging/windows/build_environment +++ b/packaging/windows/build_environment @@ -1 +1 @@ -mixxx-deps-2.4-x64-windows-0f25dfd +mixxx-deps-2.4-x64-windows-d36133a From d1f1ede32f8df1d7d6dc5d2a18ac43b6a3b2d2a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Thu, 9 Sep 2021 15:38:07 +0200 Subject: [PATCH 25/47] Set always CC and CXX environment variable to make sure cmake finds a compiler on local installations. --- tools/macos_buildenv.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/tools/macos_buildenv.sh b/tools/macos_buildenv.sh index aa903e7aae7..10bf1121b0e 100755 --- a/tools/macos_buildenv.sh +++ b/tools/macos_buildenv.sh @@ -93,7 +93,18 @@ case "$1" in export X_VCPKG_APPLOCAL_DEPS_INSTALL=ON export CMAKE_GENERATOR=Ninja + # We have reports that cmake fails to find a suitable compiler on the path + # of some installations. As a workaround we set always CC and CCX. + if which clang++ >/dev/null 2>&1; then + clang++ --version + echo "clang++ found TODO: Setting CC CXX should be not required. Remove?" + fi + export CC="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" + export CXX="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++" + echo_exported_variables() { + echo "CC=${CC}" + echo "CXX=${CXX}" echo "VCPKG_ROOT=${VCPKG_ROOT}" echo "VCPKG_OVERLAY_TRIPLETS=${VCPKG_OVERLAY_TRIPLETS}" echo "VCPKG_DEFAULT_TRIPLET=${VCPKG_DEFAULT_TRIPLET}" From 3c857e7c8e50b0cd38a5004dedff48b7cbc06231 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Thu, 9 Sep 2021 19:36:26 +0200 Subject: [PATCH 26/47] install ccache and ninja at once Co-authored-by: Be --- .github/workflows/build.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6dee8b0fa6b..5f4ed3955f9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -142,8 +142,7 @@ jobs: - name: "[macOS] install ccache and make" if: runner.os == 'macOS' run: | - brew install ccache - brew install ninja + brew install ccache ninja - name: "[macOS/Windows] Get build environment name" if: runner.os != 'Linux' From b68d3b985c804390b0adbea509f1ce38cef73d9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Fri, 10 Sep 2021 00:41:24 +0200 Subject: [PATCH 27/47] Export MACOSX_DEPLOYMENT_TARGET=10.12 --- tools/macos_buildenv.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/macos_buildenv.sh b/tools/macos_buildenv.sh index 10bf1121b0e..af9ce4da639 100755 --- a/tools/macos_buildenv.sh +++ b/tools/macos_buildenv.sh @@ -88,6 +88,7 @@ case "$1" in fi export VCPKG_ROOT="${BUILDENV_PATH}" + export MACOSX_DEPLOYMENT_TARGET=10.12 # Minimum required by Qt 5.12 export VCPKG_OVERLAY_TRIPLETS="${BUILDENV_PATH}/overlay/triplets" export VCPKG_DEFAULT_TRIPLET=x64-osx export X_VCPKG_APPLOCAL_DEPS_INSTALL=ON @@ -105,6 +106,8 @@ case "$1" in echo_exported_variables() { echo "CC=${CC}" echo "CXX=${CXX}" + echo "SDKROOT=${SDKROOT}" + echo "MACOSX_DEPLOYMENT_TARGET=${MACOSX_DEPLOYMENT_TARGET}" echo "VCPKG_ROOT=${VCPKG_ROOT}" echo "VCPKG_OVERLAY_TRIPLETS=${VCPKG_OVERLAY_TRIPLETS}" echo "VCPKG_DEFAULT_TRIPLET=${VCPKG_DEFAULT_TRIPLET}" From b9f31aa7b3d408c7e4bc3f1c758a889a74d164ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Sat, 11 Sep 2021 18:10:58 +0200 Subject: [PATCH 28/47] bump PPA version to 2.4.0~alpha2 This is required because we have added --first-parent to our git describe call which has lowerd the count since last tag to 697 from 6372 --- packaging/CPackDebUploadPPA.cmake | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/packaging/CPackDebUploadPPA.cmake b/packaging/CPackDebUploadPPA.cmake index 23eb1e53ede..de5a21f8534 100644 --- a/packaging/CPackDebUploadPPA.cmake +++ b/packaging/CPackDebUploadPPA.cmake @@ -43,10 +43,12 @@ if(NOT CPACK_DEBIAN_GPG_RET EQUAL "0") endif() # hack to advance the version from the legacy version like this: -# dpkg --compare-versions 2.4.0~alpha~pre1~git7859 lt 2.4.0~alpha1~5463~gf2da9e619d && echo true -# dpkg --compare-versions 2.4.0~alpha1~5463~gf2da9e619d lt 2.4.0 && echo true +# dpkg --compare-versions 2.4.0~alpha~pre1~git7859 lt 2.4.0~alpha2~5463~gf2da9e619d && echo true +# and from changing to --first-parent +# dpkg --compare-versions 2.4.0~alpha1~6372~g0244af2e04-1~impish lt 2.4.0~alpha2~805~g4f13bc1d5d-1~impish && echo true +# dpkg --compare-versions 2.4.0~alpha2~5463~gf2da9e619d lt 2.4.0 && echo true if(DEB_UPLOAD_PPA MATCHES "nightlies") - string(REPLACE "2.4~alpha~" "2.4.0~alpha1~" CPACK_DEBIAN_PACKAGE_VERSION "${CPACK_DEBIAN_PACKAGE_VERSION}") + string(REPLACE "2.4~alpha~" "2.4.0~alpha2~" CPACK_DEBIAN_PACKAGE_VERSION "${CPACK_DEBIAN_PACKAGE_VERSION}") endif() message(NOTICE "Creating mixxx_${CPACK_DEBIAN_PACKAGE_VERSION}.orig.tar.gz") From c3aeec8fd2f6b4ad940b143e28796fa1d607e9f2 Mon Sep 17 00:00:00 2001 From: Uwe Klotz Date: Sun, 12 Sep 2021 12:32:19 +0200 Subject: [PATCH 29/47] LibraryScanner: Add note for cleanUpDatabase() --- src/library/scanner/libraryscanner.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/library/scanner/libraryscanner.cpp b/src/library/scanner/libraryscanner.cpp index f75e24c2466..49756cd8839 100644 --- a/src/library/scanner/libraryscanner.cpp +++ b/src/library/scanner/libraryscanner.cpp @@ -45,6 +45,11 @@ void cleanUpDatabase(const QSqlDatabase& database) { << "Cleaning up database..."; PerformanceTimer timer; timer.start(); + // FIXME: The DELETE statement deletes more directory entries than necessary. + // The subselect only covers directories that contain track files. Hashes + // of parent directories that do not contain any track files will be deleted + // and then re-created during the next rescan. This should not really matter + // since the re-calculation of the hash is always required. const auto sqlStmt = QStringLiteral( "DELETE FROM LibraryHashes WHERE hash<>:unequalHash " "AND directory_path NOT IN " From b2e1d2151e4dbf45a99e61c70b5ecd0162e9bd82 Mon Sep 17 00:00:00 2001 From: Swiftb0y <12380386+Swiftb0y@users.noreply.github.com> Date: Sun, 12 Sep 2021 16:05:48 +0200 Subject: [PATCH 30/47] eslintrc.json: add rules often enforced manually --- .eslintrc.json | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 94047bdfb8a..193058da0ed 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -10,13 +10,16 @@ "brace-style": ["warn", "1tbs", { "allowSingleLine": true }], + "curly": "warn", "camelcase": "warn", "comma-spacing": "warn", "computed-property-spacing" : ["warn", "never", { "enforceForClassMembers": true }], "dot-location": "warn", + "dot-notation": "warn", "eqeqeq": ["error", "always"], + "func-call-spacing": "warn", "func-style": ["error", "expression", { "allowArrowFunctions": true }], @@ -24,6 +27,11 @@ "key-spacing": "warn", "keyword-spacing": "warn", "linebreak-style": ["warn", "unix"], + "no-constructor-return": "warn", + "no-extra-bind": "warn", + "no-sequences": "warn", + "no-useless-call": "warn", + "no-useless-return": "warn", "no-trailing-spaces": "warn", "no-unneeded-ternary": ["warn", { "defaultAssignment": false @@ -36,13 +44,15 @@ "multiline": true }], "object-curly-spacing" : "warn", + "prefer-regex-literals": "warn", "quotes": ["warn", "double"], "require-atomic-updates": "error", "semi": "warn", "semi-spacing": "warn", "space-before-blocks": ["warn", "always"], "space-before-function-paren": ["warn", "never"], - "space-in-parens": "warn" + "space-in-parens": "warn", + "yoda": "warn" }, "globals": { "console": "writable", From 951720006da32474f0185c5d2943734ec27dfbf2 Mon Sep 17 00:00:00 2001 From: Christian Date: Sun, 12 Sep 2021 21:04:27 +0200 Subject: [PATCH 31/47] Update controller mapping for Behringer DDM4000 mixer (#4262) * refactor(ddm4000): declare a shortcut variable for the engine * feat(ddm4000): add default button behavior for shift buttons * feat(ddm4000): allow relative mode for DirectionEncoders In relative mode, holding shift and moving the Pot will not affect the Mixxx Control (see [Components JS](https://github.com/mixxxdj/mixxx/wiki/Components-JS#pot) for details). `componentContainers` must not be declared in `GenericMidiController.prototype` but in an instance method because otherwise it is not considered for property traversal, e.g. `Object.prototype.hasOwnProperty()` would return `false` * feat(ddm4000): add RangeAwarePot component * feat(ddm4000): add controller feedback for BackLoopButtons * feat(ddm4000): add support for `sendShifted` for effect unit components * fix(ddm4000): update group of show_xfader according to change in Mixxx 2.3 * style(ddm4000): apply code style rules * docs(ddm4000): fix and update documentation * docs(ddm4000): add docs for relative mode of DirectionEncoder * docs(ddm4000): fix typo Co-authored-by: Swiftb0y <12380386+Swiftb0y@users.noreply.github.com> * docs(ddm4000): explain type check see https://github.com/mixxxdj/mixxx/pull/4262#discussion_r706455471 Co-authored-by: Swiftb0y <12380386+Swiftb0y@users.noreply.github.com> --- res/controllers/Behringer-DDM4000-scripts.js | 2 +- .../Behringer-Extension-scripts.js | 109 +++++++++++++----- 2 files changed, 83 insertions(+), 28 deletions(-) diff --git a/res/controllers/Behringer-DDM4000-scripts.js b/res/controllers/Behringer-DDM4000-scripts.js index b081de215a2..e624e9b8fc5 100644 --- a/res/controllers/Behringer-DDM4000-scripts.js +++ b/res/controllers/Behringer-DDM4000-scripts.js @@ -393,7 +393,7 @@ var DDM4000 = new behringer.extension.GenericMidiController({ { // Crossfader: On type: CrossfaderUnit, options: { - button: {midi: [note, 0x1F], sendShifted: true}, + button: {group: "[Skin]", midi: [note, 0x1F], sendShifted: true}, crossfader: {midi: [cc, 0x15]} }, }, diff --git a/res/controllers/Behringer-Extension-scripts.js b/res/controllers/Behringer-Extension-scripts.js index 5dc9e38b1ae..d2050ff18ba 100644 --- a/res/controllers/Behringer-Extension-scripts.js +++ b/res/controllers/Behringer-Extension-scripts.js @@ -6,6 +6,9 @@ /** @private */ var components = global.components; + /** @private */ + var engine = global.engine; + /** * Contains functions to print a message to the log. * `debug` output is suppressed unless the caller owns a truthy property `debug`. @@ -105,12 +108,13 @@ components.Button.call(this, options); }; ShiftButton.prototype = deriveFrom(components.Button, { - input: function(_channel, _control, value, _status, _group) { + inSetValue: function(value) { if (value) { this.target.shift(); } else { this.target.unshift(); } + components.Button.prototype.inSetValue.call(this, value); }, }); @@ -289,6 +293,14 @@ * Turning the encoder to the right means "forwards" and returns 1; * turning it to the left means "backwards" and returns -1. * + * This component supports an optional relative mode as an alternative to + * dealing with soft takeover. To use it, set the `relative` property to + * `true` in the options object for the constructor. In this mode, moving + * the Pot will adjust the Mixxx Control relative to its current value. + * Holding shift and moving the encoder will not affect the Mixxx Control. + * This allows the user to continue adjusting the Mixxx Control after + * the encoder has reached the end of its physical range. + * * @constructor * @extends {components.Encoder} * @param {object} options Options object @@ -302,15 +314,22 @@ min: 0, inValueScale: function(value) { var direction = 0; - if (value > this.previousValue || value === this.max) { - direction = 1; - } else if (value < this.previousValue || value === this.min) { - direction = -1; + if (!(this.relative && this.isShifted)) { + if (value > this.previousValue || value === this.max) { + direction = 1; + } else if (value < this.previousValue || value === this.min) { + direction = -1; + } + this.previousValue = value; } - this.previousValue = value; - return direction; }, + shift: function() { + this.isShifted = true; + }, + unshift: function() { + this.isShifted = false; + }, }); /** @@ -334,6 +353,22 @@ }, }); + /** + * A pot for a value range of [-bound..0..+bound]. + * + * @constructor + * @extends {components.Pot} + * @param {object} options Options object + * @param {number} options.bound A positive integer defining the range bounds + * @public + */ + var RangeAwarePot = function(options) { + components.Pot.call(this, options); + }; + RangeAwarePot.prototype = deriveFrom(components.Pot, { + outValueScale: RangeAwareEncoder.prototype.outValueScale + }); + /** * A button to cycle through the values of an enumeration. * @@ -451,7 +486,7 @@ inValueScale: function(value) { var direction = DirectionEncoder.prototype.inValueScale.call(this, value); var beats = this.sizeControl - ? global.engine.getValue(this.group, this.sizeControl) + ? engine.getValue(this.group, this.sizeControl) : this.size; return direction * beats; }, @@ -467,13 +502,13 @@ */ var BackLoopButton = function(options) { options = options || {}; - options.outKey = options.outKey || "loop_enabled"; + options.key = options.key || "loop_enabled"; components.Button.call(this, options); }; BackLoopButton.prototype = deriveFrom(components.Button, { - input: function(_channel, _control, value, _status, group) { - var engine = global.engine; + inSetValue: function(value) { var script = global.script; + var group = this.group; if (value) { var loopSize = engine.getValue(group, "beatloop_size"); var beatjumpSize = engine.getValue(group, "beatjump_size"); @@ -997,11 +1032,12 @@ * | | +- options: Additional options for the component (object, required) * | | Example: {midi: [0xB0, 0x43], key: "reverse"} * | +- equalizerUnit: Equalizer unit definition (optional) - * | +- components: An object of component definitions for the unit. - * | | Each definition is a key-value pair for a component of - * | | `EqualizerUnit` where `key` is the name of - * | | the component and `value` is the MIDI address. - * | | Example: `super1: [0xB0, 0x29]` + * | +- midi: An object of component definitions for the unit. + * | | Each definition is a key-value pair for a component of `EqualizerUnit` + * | | where `key` is the name of the component and `value` is the MIDI + * | | address. Examples: + * | | `super1: [0xB0, 0x29]` + * | | `parameterKnobs: {1: [0xB0, 0x06], 2: [0xB0, 0x05], 3: [0xB0, 0x04]}` * | +- feedback: Enable controller feedback (boolean, optional) * | | When set to `true`, values of the components in this unit are sent * | | to the hardware controller on changes. The address of the MIDI @@ -1017,11 +1053,17 @@ * +- effectUnits: An array of effect unit definitions (may be empty or omitted) * | +- effectUnit * | +- unitNumbers: As defined by `components.EffectUnit`. - * | +- components: As described for equalizer unit using `components.EffectUnit` - * | | instead of `EqualizerUnit`. - * | | Example: `effectFocusButton: [0xB0, 0x15]` + * | +- midi: As described for equalizer unit using `components.EffectUnit` instead of + * | | `EqualizerUnit`. Examples: + * | | `effectFocusButton: [0xB0, 0x15]` + * | | `knobs: {1: [0xB0, 0x26], 2: [0xB0, 0x25], 3: [0xB0, 0x24]}` * | +- feedback: As described for equalizer unit * | +- output: As described for equalizer unit + * | +- sendShiftedFor: Type of components that send shifted MIDI messages (optional) + * | When set, all components of this type within this effect unit + * | are configured to send shifted MIDI messages + * | (`sendShifted: true`). + * | Example: `sendShiftedFor: c.Button` * | * +- containers: An array of component container definitions (may be empty or omitted) * +- componentContainer @@ -1050,14 +1092,6 @@ }; GenericMidiController.prototype = deriveFrom(components.ComponentContainer, { - /** - * Contains all decks and effect units so that a (un)shift operation - * is delegated to the decks, effect units and their children. - * - * @private - */ - componentContainers: [], - /** * Initialize the controller mapping. * This function is called by Mixxx on startup. @@ -1073,6 +1107,13 @@ if (typeof this.config.init === "function") { this.config.init(controllerId, debug); } + + /* + * Contains all decks and effect units so that a (un)shift operation + * is delegated to the decks, effect units and their children. + */ + this.componentContainers = []; + this.layerManager = this.createLayerManager( this.componentContainers, this.config.decks || [], @@ -1307,6 +1348,19 @@ new components.EffectUnit(effectUnitDefinition.unitNumbers, true), componentStorage, ["onFocusChange", "shift", "unshift"]); + var shiftType = effectUnitDefinition.sendShiftedFor; + /* + * `shiftType` is expected to be a JS component (e.g. `c.Button` or `c.Component`) + * which in terms of JS means that it is of type `function`. If something else is given + * (e.g. a string), `instanceof` will cause a runtime error, so check to avoid this. + */ + if (typeof shiftType === "function") { + effectUnit.forEachComponent(function(component) { + if (component instanceof shiftType) { + component.sendShifted = true; + } + }); + } effectUnit.init(); return effectUnit; }, @@ -1386,6 +1440,7 @@ exports.BlinkingButton = BlinkingButton; exports.DirectionEncoder = DirectionEncoder; exports.RangeAwareEncoder = RangeAwareEncoder; + exports.RangeAwarePot = RangeAwarePot; exports.EnumToggleButton = EnumToggleButton; exports.EnumEncoder = EnumEncoder; exports.LoopEncoder = LoopEncoder; From 46182d1cb05ea2d3ce38321707b35e530063f29b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Sun, 12 Sep 2021 22:31:05 +0200 Subject: [PATCH 32/47] rename storeScaleFactor() to setScalefactor() --- src/main.cpp | 4 ++-- src/util/cmdlineargs.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 7885da66239..5bfb6f96081 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -60,7 +60,7 @@ void adjustScaleFactor(CmdlineArgs* pArgs) { if (ok && f > 0) { // The environment variable overrides the preferences option qDebug() << "Using" << kScaleFactorEnvVar << f; - pArgs->storeScaleFactor(f); + pArgs->setScaleFactor(f); return; } } @@ -80,7 +80,7 @@ void adjustScaleFactor(CmdlineArgs* pArgs) { if (scaleFactor > 0) { qDebug() << "Using preferences ScaleFactor" << scaleFactor; qputenv(kScaleFactorEnvVar, strScaleFactor.toLocal8Bit()); - pArgs->storeScaleFactor(scaleFactor); + pArgs->setScaleFactor(scaleFactor); } } diff --git a/src/util/cmdlineargs.h b/src/util/cmdlineargs.h index 41aaca93a7b..6f5b26455d2 100644 --- a/src/util/cmdlineargs.h +++ b/src/util/cmdlineargs.h @@ -44,7 +44,7 @@ class CmdlineArgs final { const QString& getResourcePath() const { return m_resourcePath; } const QString& getTimelinePath() const { return m_timelinePath; } - void storeScaleFactor(double scaleFactor) { + void setScaleFactor(double scaleFactor) { m_scaleFactor = scaleFactor; } double getScaleFactor() const { From 2b9dd0be7e784aa7ff5a3e6c18ce11d019e6c934 Mon Sep 17 00:00:00 2001 From: Be Date: Sun, 12 Sep 2021 19:08:16 -0500 Subject: [PATCH 33/47] macos_buildenv.sh: remove hack download macOS 10.13 SDK Somehow this is no longer needed with vcpkg. Hooray! --- tools/macos_buildenv.sh | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/tools/macos_buildenv.sh b/tools/macos_buildenv.sh index af9ce4da639..74e75643dd5 100755 --- a/tools/macos_buildenv.sh +++ b/tools/macos_buildenv.sh @@ -63,30 +63,6 @@ case "$1" in echo "Build environment found: ${BUILDENV_PATH}" fi - export SDKROOT="${BUILDENV_BASEPATH}/MacOSX10.13.sdk" - if [ -d "${SDKROOT}" ]; then - if [ "$1" != "--profile" ]; then - echo "macOS 10.13 SDK found: ${SDKROOT}" - fi - else - echo "macOS 10.13 SDK not found, downloading it..." - curl -L "https://github.com/phracker/MacOSX-SDKs/releases/download/10.15/MacOSX10.13.sdk.tar.xz" -o "${SDKROOT}.tar.xz" - OBSERVED_SHA256=$(shasum -a 256 "${SDKROOT}.tar.xz"|cut -f 1 -d' ') - EXPECTED_SHA256="a3a077385205039a7c6f9e2c98ecdf2a720b2a819da715e03e0630c75782c1e4" - if [[ "$OBSERVED_SHA256" == "$EXPECTED_SHA256" ]]; then - echo "Download matched expected SHA256 sum $EXPECTED_SHA256" - else - echo "ERROR: Download did not match expected SHA256 checksum!" - echo "Expected $EXPECTED_SHA256" - echo "Got $OBSERVED_SHA256" - exit 1 - fi - echo "Extracting MacOSX10.13.sdk.tar.xz..." - tar xf "${SDKROOT}.tar.xz" -C "${BUILDENV_BASEPATH}" && \ - echo "Successfully extacted MacOSX10.13.sdk.tar.xz" - rm "${SDKROOT}.tar.xz" - fi - export VCPKG_ROOT="${BUILDENV_PATH}" export MACOSX_DEPLOYMENT_TARGET=10.12 # Minimum required by Qt 5.12 export VCPKG_OVERLAY_TRIPLETS="${BUILDENV_PATH}/overlay/triplets" @@ -106,7 +82,6 @@ case "$1" in echo_exported_variables() { echo "CC=${CC}" echo "CXX=${CXX}" - echo "SDKROOT=${SDKROOT}" echo "MACOSX_DEPLOYMENT_TARGET=${MACOSX_DEPLOYMENT_TARGET}" echo "VCPKG_ROOT=${VCPKG_ROOT}" echo "VCPKG_OVERLAY_TRIPLETS=${VCPKG_OVERLAY_TRIPLETS}" From 380798f76818e32e43b354490bf2b09c63d767c5 Mon Sep 17 00:00:00 2001 From: Be Date: Sun, 12 Sep 2021 19:11:28 -0500 Subject: [PATCH 34/47] macos_buildenv.sh: remove hack setting CC & CXX That was only needed before because CMake sometimes failed to find clang from XCode due to setting SDKROOT to an unusual location. --- tools/macos_buildenv.sh | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/tools/macos_buildenv.sh b/tools/macos_buildenv.sh index 74e75643dd5..794faaa0c1e 100755 --- a/tools/macos_buildenv.sh +++ b/tools/macos_buildenv.sh @@ -70,18 +70,8 @@ case "$1" in export X_VCPKG_APPLOCAL_DEPS_INSTALL=ON export CMAKE_GENERATOR=Ninja - # We have reports that cmake fails to find a suitable compiler on the path - # of some installations. As a workaround we set always CC and CCX. - if which clang++ >/dev/null 2>&1; then - clang++ --version - echo "clang++ found TODO: Setting CC CXX should be not required. Remove?" - fi - export CC="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" - export CXX="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++" echo_exported_variables() { - echo "CC=${CC}" - echo "CXX=${CXX}" echo "MACOSX_DEPLOYMENT_TARGET=${MACOSX_DEPLOYMENT_TARGET}" echo "VCPKG_ROOT=${VCPKG_ROOT}" echo "VCPKG_OVERLAY_TRIPLETS=${VCPKG_OVERLAY_TRIPLETS}" From 70143a1f34376ff8b473f402700400859a81b4eb Mon Sep 17 00:00:00 2001 From: Be Date: Sun, 12 Sep 2021 19:51:14 -0500 Subject: [PATCH 35/47] move vars from buildenv scripts to CMakeLists.txt This simplifies the platform-specific buildenv scripts. It also makes it easier to set VCPKG_ROOT to a local vcpkg repository for building dependencies locally rather than using the prebuilt ZIP archives. --- CMakeLists.txt | 31 ++++++++++++++++++++++--------- tools/macos_buildenv.sh | 9 --------- tools/windows_buildenv.bat | 10 +--------- 3 files changed, 23 insertions(+), 27 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8606928b9f8..0159fab4fbd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,22 +25,31 @@ if(POLICY CMP0071) cmake_policy(SET CMP0071 NEW) endif() -# Check if any relevant env vars were set from the build env scripts -if(DEFINED ENV{VCPKG_ROOT}) - if(DEFINED ENV{X_VCPKG_APPLOCAL_DEPS_INSTALL} AND NOT DEFINED X_VCPKG_APPLOCAL_DEPS_INSTALL) - set(X_VCPKG_APPLOCAL_DEPS_INSTALL "$ENV{X_VCPKG_APPLOCAL_DEPS_INSTALL}" CACHE BOOL "") +# Set up vcpkg +if(DEFINED ENV{VCPKG_ROOT} AND NOT DEFINED VCPKG_ROOT) + set(VCPKG_ROOT "$ENV{VCPKG_ROOT}") +endif() + +if(DEFINED VCPKG_ROOT) + set(X_VCPKG_APPLOCAL_DEPS_INSTALL TRUE) + + if(NOT DEFINED VCPKG_OVERLAY_PORTS) + set(VCPKG_OVERLAY_PORTS "${VCPKG_ROOT}/overlay/ports") + if(APPLE) + list(APPEND VCPKG_OVERLAY_PORTS "${VCPKG_ROOT}/overlay/osx") + endif() endif() - if(DEFINED ENV{VCPKG_OVERLAY_TRIPLETS} AND NOT DEFINED VCPKG_OVERLAY_TRIPLETS) - set(VCPKG_OVERLAY_TRIPLETS "$ENV{VCPKG_OVERLAY_TRIPLETS}" CACHE STRING "") + if(NOT DEFINED VCPKG_OVERLAY_TRIPLETS) + set(VCPKG_OVERLAY_TRIPLETS "${VCPKG_ROOT}/overlay/triplets") endif() - if(DEFINED ENV{VCPKG_DEFAULT_TRIPLET} AND NOT DEFINED VCPKG_TARGET_TRIPLET) - set(VCPKG_TARGET_TRIPLET "$ENV{VCPKG_DEFAULT_TRIPLET}" CACHE STRING "") + if(DEFINED ENV{VCPKG_DEFAULT_TRIPLET}) + set(VCPKG_TARGET_TRIPLET "$ENV{VCPKG_DEFAULT_TRIPLET}") endif() if(NOT DEFINED CMAKE_TOOLCHAIN_FILE) - set(CMAKE_TOOLCHAIN_FILE "$ENV{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake" CACHE STRING "") + set(CMAKE_TOOLCHAIN_FILE "${VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake" CACHE STRING "") endif() endif() @@ -101,6 +110,10 @@ else() set(LLVM_CLANG false) endif() +if(NOT DEFINED CMAKE_OSX_DEPLOYMENT_TARGET) + set(CMAKE_OSX_DEPLOYMENT_TARGET 10.12) +endif() + if(APPLE AND CMAKE_OSX_DEPLOYMENT_TARGET VERSION_LESS 10.14) add_compile_options(-fno-aligned-allocation) endif() diff --git a/tools/macos_buildenv.sh b/tools/macos_buildenv.sh index 794faaa0c1e..f76fcc439df 100755 --- a/tools/macos_buildenv.sh +++ b/tools/macos_buildenv.sh @@ -64,19 +64,10 @@ case "$1" in fi export VCPKG_ROOT="${BUILDENV_PATH}" - export MACOSX_DEPLOYMENT_TARGET=10.12 # Minimum required by Qt 5.12 - export VCPKG_OVERLAY_TRIPLETS="${BUILDENV_PATH}/overlay/triplets" - export VCPKG_DEFAULT_TRIPLET=x64-osx - export X_VCPKG_APPLOCAL_DEPS_INSTALL=ON export CMAKE_GENERATOR=Ninja - echo_exported_variables() { - echo "MACOSX_DEPLOYMENT_TARGET=${MACOSX_DEPLOYMENT_TARGET}" echo "VCPKG_ROOT=${VCPKG_ROOT}" - echo "VCPKG_OVERLAY_TRIPLETS=${VCPKG_OVERLAY_TRIPLETS}" - echo "VCPKG_DEFAULT_TRIPLET=${VCPKG_DEFAULT_TRIPLET}" - echo "X_VCPKG_APPLOCAL_DEPS_INSTALL=${X_VCPKG_APPLOCAL_DEPS_INSTALL}" echo "CMAKE_GENERATOR=${CMAKE_GENERATOR}" } diff --git a/tools/windows_buildenv.bat b/tools/windows_buildenv.bat index 74737854f52..23268b1cc9c 100644 --- a/tools/windows_buildenv.bat +++ b/tools/windows_buildenv.bat @@ -87,20 +87,14 @@ EXIT /B 0 ECHO ^Build environment path: !BUILDENV_PATH! SET "VCPKG_ROOT=!BUILDENV_PATH!" - SET "VCPKG_DEFAULT_TRIPLET=x64-windows" - SET "X_VCPKG_APPLOCAL_DEPS_INSTALL=ON" SET "CMAKE_GENERATOR=Ninja" ECHO ^Environment Variables: ECHO ^- VCPKG_ROOT='!VCPKG_ROOT!' - ECHO ^- VCPKG_DEFAULT_TRIPLET='!VCPKG_DEFAULT_TRIPLET!' - ECHO ^- X_VCPKG_APPLOCAL_DEPS_INSTALL='!X_VCPKG_APPLOCAL_DEPS_INSTALL!' ECHO ^- CMAKE_GENERATOR='!CMAKE_GENERATOR!' IF DEFINED GITHUB_ENV ( ECHO VCPKG_ROOT=!VCPKG_ROOT!>>!GITHUB_ENV! - ECHO VCPKG_DEFAULT_TRIPLET=!VCPKG_DEFAULT_TRIPLET!>>!GITHUB_ENV! - ECHO X_VCPKG_APPLOCAL_DEPS_INSTALL=!X_VCPKG_APPLOCAL_DEPS_INSTALL!>>!GITHUB_ENV! ECHO CMAKE_GENERATOR=!CMAKE_GENERATOR!>>!GITHUB_ENV! ) ELSE ( ECHO ^Generating "CMakeSettings.json"... @@ -202,12 +196,10 @@ REM Generate CMakeSettings.json which is read by MS Visual Studio to determine t >>%CMakeSettings% echo "generator": "Ninja", >>%CMakeSettings% echo "inheritEnvironments": [ "msvc_!PLATFORM!_!PLATFORM!" ], >>%CMakeSettings% echo "installRoot": "!INSTALL_ROOT:\=\\!\\${name}", - >>%CMakeSettings% echo "cmakeToolchain": "!BUILDENV_PATH:\=\\!\\scripts\\buildsystems\\vcpkg.cmake", >>%CMakeSettings% echo "intelliSenseMode": "windows-msvc-!PLATFORM!", >>%CMakeSettings% echo "variables": [ SET variableElementTermination=, - CALL :AddCMakeVar2CMakeSettings_JSON "X_VCPKG_APPLOCAL_DEPS_INSTALL" "BOOL" "True" - CALL :AddCMakeVar2CMakeSettings_JSON "VCPKG_TARGET_TRIPLET" "STRING" "x64-windows" + CALL :AddCMakeVar2CMakeSettings_JSON "VCPKG_ROOT" "STRING" "!VCPKG_ROOT:\=\\!" CALL :AddCMakeVar2CMakeSettings_JSON "BATTERY" "BOOL" "True" CALL :AddCMakeVar2CMakeSettings_JSON "BROADCAST" "BOOL" "True" CALL :AddCMakeVar2CMakeSettings_JSON "BULK" "BOOL" "False" From d213b168a337a3df1a339e64e78343c223e87cec Mon Sep 17 00:00:00 2001 From: Be Date: Mon, 13 Sep 2021 01:32:38 -0500 Subject: [PATCH 36/47] CMake: add Windows-specific overlay when using vcpkg --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0159fab4fbd..46a38c93644 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -37,6 +37,8 @@ if(DEFINED VCPKG_ROOT) set(VCPKG_OVERLAY_PORTS "${VCPKG_ROOT}/overlay/ports") if(APPLE) list(APPEND VCPKG_OVERLAY_PORTS "${VCPKG_ROOT}/overlay/osx") + elseif(WIN32) + list(APPEND VCPKG_OVERLAY_PORTS "${VCPKG_ROOT}/overlay/windows") endif() endif() From 13b9c40b07c842e947c26c229eefabb11576da38 Mon Sep 17 00:00:00 2001 From: Be Date: Mon, 13 Sep 2021 01:35:06 -0500 Subject: [PATCH 37/47] CMake: reorganize CMAKE_OSX_DEPLOYMENT_TARGET code --- CMakeLists.txt | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 46a38c93644..34161919f42 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -112,12 +112,14 @@ else() set(LLVM_CLANG false) endif() -if(NOT DEFINED CMAKE_OSX_DEPLOYMENT_TARGET) - set(CMAKE_OSX_DEPLOYMENT_TARGET 10.12) -endif() +if(APPLE) + if(NOT DEFINED CMAKE_OSX_DEPLOYMENT_TARGET) + set(CMAKE_OSX_DEPLOYMENT_TARGET 10.12) + endif() -if(APPLE AND CMAKE_OSX_DEPLOYMENT_TARGET VERSION_LESS 10.14) - add_compile_options(-fno-aligned-allocation) + if(CMAKE_OSX_DEPLOYMENT_TARGET VERSION_LESS 10.14) + add_compile_options(-fno-aligned-allocation) + endif() endif() # CMake implicitly sets the variable MSVC to true for Microsoft From ce8188c8bfc94c382ba381810722d6f7bc39519c Mon Sep 17 00:00:00 2001 From: Swiftb0y <12380386+Swiftb0y@users.noreply.github.com> Date: Mon, 13 Sep 2021 14:18:04 +0200 Subject: [PATCH 38/47] eslintrc.json: add new es6-specific rules --- .eslintrc.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.eslintrc.json b/.eslintrc.json index 12bf142f9c3..9eb4cda17a8 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -42,11 +42,13 @@ "no-unused-vars": ["error", { "argsIgnorePattern": "^_" }], + "no-var": "warn", "object-curly-newline" : ["warn", { "consistent": true, "multiline": true }], "object-curly-spacing" : "warn", + "prefer-const": "warn", "prefer-regex-literals": "warn", "quotes": ["warn", "double"], "require-atomic-updates": "error", From dff40dead869b2f53a0a69d6cc2c24a52c82f603 Mon Sep 17 00:00:00 2001 From: Swiftb0y <12380386+Swiftb0y@users.noreply.github.com> Date: Mon, 13 Sep 2021 14:19:01 +0200 Subject: [PATCH 39/47] eslintrc.json: remove deprecated print() from globals --- .eslintrc.json | 1 - 1 file changed, 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 9eb4cda17a8..48f0e235960 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -62,7 +62,6 @@ "globals": { "console": "writable", "svg": "writable", - "print": "readonly", "HIDController": "writable", "HIDDebug": "writable", "HIDPacket": "writable", From 5a3a9397dc312ef334bb1a1bfe45fe9c0930846c Mon Sep 17 00:00:00 2001 From: Be Date: Mon, 13 Sep 2021 09:04:47 -0500 Subject: [PATCH 40/47] macos_buildenv.sh: delete ZIP after extracting Before, GitHub Actions was caching both the ZIP and its extracted contents which took about 2GB. --- tools/macos_buildenv.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/macos_buildenv.sh b/tools/macos_buildenv.sh index f76fcc439df..82a9a1391b2 100755 --- a/tools/macos_buildenv.sh +++ b/tools/macos_buildenv.sh @@ -51,9 +51,10 @@ case "$1" in exit 1 fi echo "" - echo "Extracting ${BUILDENV_NAME}.tar.gz..." + echo "Extracting ${BUILDENV_NAME}.zip..." unzip "${BUILDENV_PATH}.zip" -d "${BUILDENV_BASEPATH}" && \ - echo "Successfully extracted ${BUILDENV_NAME}.tar.gz" + echo "Successfully extracted ${BUILDENV_NAME}.zip" && \ + rm "${BUILDENV_PATH}.zip" else echo "Build environment $BUILDENV_NAME not found in mixxx repository, run the command below to download it." echo "source ${THIS_SCRIPT_NAME} setup" From 6433f5bee73339c4ab2b1f49d4222044321c3e3f Mon Sep 17 00:00:00 2001 From: Be Date: Mon, 13 Sep 2021 02:17:55 -0500 Subject: [PATCH 41/47] CMake: always set CMAKE_OSX_DEPLOYMENT_TARGET=10.12 It seems that CMake sets this to a default value, so checking if it is already set does not work. --- CMakeLists.txt | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 34161919f42..32a520bf147 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -75,6 +75,13 @@ if(NOT CMAKE_CONFIGURATION_TYPES) endif() endif() +if(APPLE) + # Minimum macOS version supported by Qt 5.12 + set(CMAKE_OSX_DEPLOYMENT_TARGET 10.12 CACHE STRING "Minimum macOS version the build will be able to run on" FORCE) + # Needed for deployment target < 10.14 + add_compile_options(-fno-aligned-allocation) +endif() + project(mixxx VERSION 2.4.0) # Work around missing version suffixes support https://gitlab.kitware.com/cmake/cmake/-/issues/16716 set(MIXXX_VERSION_PRERELEASE "alpha-pre") # set to "alpha-pre" "beta" or "" @@ -112,16 +119,6 @@ else() set(LLVM_CLANG false) endif() -if(APPLE) - if(NOT DEFINED CMAKE_OSX_DEPLOYMENT_TARGET) - set(CMAKE_OSX_DEPLOYMENT_TARGET 10.12) - endif() - - if(CMAKE_OSX_DEPLOYMENT_TARGET VERSION_LESS 10.14) - add_compile_options(-fno-aligned-allocation) - endif() -endif() - # CMake implicitly sets the variable MSVC to true for Microsoft # Visual C++ or another compiler simulating Visual C++. # https://cmake.org/cmake/help/latest/variable/MSVC.html From 95b4c72748f93671cd81c48b58938c9f56e6dad8 Mon Sep 17 00:00:00 2001 From: Be Date: Mon, 13 Sep 2021 09:30:48 -0500 Subject: [PATCH 42/47] update build environments to fix Debug macOS build --- packaging/macos/build_environment | 4 ++-- packaging/windows/build_environment | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packaging/macos/build_environment b/packaging/macos/build_environment index 9496b716b0c..215b75a864a 100644 --- a/packaging/macos/build_environment +++ b/packaging/macos/build_environment @@ -1,2 +1,2 @@ -mixxx-deps-2.4-x64-osx-d36133a -b9f2bc77a0d4d802fff8cb5c0bfb8446f2522b9253f4455919c7094a87211478 +mixxx-deps-2.4-x64-osx-b124ddc +dd63757c35f861770413cc7537343d4dc930348d8074e6485458111f834c80de diff --git a/packaging/windows/build_environment b/packaging/windows/build_environment index 35945bda92c..8a93f7d5181 100644 --- a/packaging/windows/build_environment +++ b/packaging/windows/build_environment @@ -1 +1 @@ -mixxx-deps-2.4-x64-windows-d36133a +mixxx-deps-2.4-x64-windows-b124ddc From 1b95468f99bd50735d60642b5a910d0bd98dc22e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Wed, 15 Sep 2021 09:22:14 +0200 Subject: [PATCH 43/47] Retire osolete Ubuntu Groovy 20.10 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a822168707a..c0d04bb5221 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2753,7 +2753,7 @@ if (NOT CPACK_DEBIAN_PACKAGE_RELEASE) set(CPACK_DEBIAN_PACKAGE_RELEASE 1) endif() -set(CPACK_DEBIAN_DISTRIBUTION_RELEASES bionic focal groovy hirsute impish) +set(CPACK_DEBIAN_DISTRIBUTION_RELEASES bionic focal hirsute impish) set(CPACK_DEBIAN_SOURCE_DIR ${CMAKE_SOURCE_DIR}) set(CPACK_DEBIAN_UPLOAD_PPA_SCRIPT "${CMAKE_CURRENT_SOURCE_DIR}/packaging/CPackDebUploadPPA.cmake") set(CPACK_DEBIAN_INSTALL_SCRIPT "${CMAKE_CURRENT_SOURCE_DIR}/packaging/CPackDebInstall.cmake") From 2539d2f0f6cba243bad93bfd45f2468e5392cb94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Wed, 15 Sep 2021 09:31:31 +0200 Subject: [PATCH 44/47] Update Translation template. Found 2645 source text(s) (0 new and 2645 already existing) --- res/translations/mixxx.ts | 164 ++++++++++++++++++-------------------- 1 file changed, 77 insertions(+), 87 deletions(-) diff --git a/res/translations/mixxx.ts b/res/translations/mixxx.ts index 259a8b89ba1..e773055aea1 100644 --- a/res/translations/mixxx.ts +++ b/res/translations/mixxx.ts @@ -21,22 +21,22 @@ AutoDJFeature - + Crates - + Remove Crate as Track Source - + Auto DJ - + Add Crate as Track Source @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. @@ -642,12 +642,12 @@ - + Mixxx Library - + Could not load the following file because it is in use by Mixxx or another application. @@ -3363,37 +3363,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -7286,123 +7286,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year - + Title - - + + Artist - - + + Album - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7897,51 +7897,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8100,27 +8090,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8386,39 +8376,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8533,58 +8523,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13552,20 +13542,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis From a5a8772b1ab85ea5b7cdce49b56cb4a3473ac130 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Wed, 15 Sep 2021 09:36:36 +0200 Subject: [PATCH 45/47] Pull latest translations from https://www.transifex.com/mixxx-dj-software/mixxxd/jmixxx2-3/. Compile QM files out of TS files that are used by the localized app --- res/translations/mixxx_ar.ts | 164 +- res/translations/mixxx_ast.ts | 164 +- res/translations/mixxx_bg.ts | 164 +- res/translations/mixxx_bs.ts | 164 +- res/translations/mixxx_ca.qm | Bin 342109 -> 341918 bytes res/translations/mixxx_ca.ts | 164 +- res/translations/mixxx_ca_ES.qm | Bin 322459 -> 322268 bytes res/translations/mixxx_ca_ES.ts | 164 +- res/translations/mixxx_cs.qm | Bin 310050 -> 309859 bytes res/translations/mixxx_cs.ts | 164 +- res/translations/mixxx_da.ts | 164 +- res/translations/mixxx_de.qm | Bin 389731 -> 389534 bytes res/translations/mixxx_de.ts | 164 +- res/translations/mixxx_el.ts | 164 +- res/translations/mixxx_el_GR.ts | 164 +- res/translations/mixxx_en_GB.qm | Bin 315303 -> 315108 bytes res/translations/mixxx_en_GB.ts | 164 +- res/translations/mixxx_eo.ts | 164 +- res/translations/mixxx_es.qm | Bin 321840 -> 384298 bytes res/translations/mixxx_es.ts | 949 ++++--- res/translations/mixxx_es_ES.qm | Bin 378543 -> 378346 bytes res/translations/mixxx_es_ES.ts | 164 +- res/translations/mixxx_es_MX.qm | Bin 24652 -> 28166 bytes res/translations/mixxx_es_MX.ts | 232 +- res/translations/mixxx_et.qm | Bin 47725 -> 48267 bytes res/translations/mixxx_et.ts | 176 +- res/translations/mixxx_eu.ts | 164 +- res/translations/mixxx_fa.ts | 164 +- res/translations/mixxx_fi.qm | Bin 78469 -> 78268 bytes res/translations/mixxx_fi.ts | 164 +- res/translations/mixxx_fr.qm | Bin 401973 -> 401770 bytes res/translations/mixxx_fr.ts | 164 +- res/translations/mixxx_fr_FR.ts | 164 +- res/translations/mixxx_ga.ts | 164 +- res/translations/mixxx_gl.qm | Bin 201520 -> 201325 bytes res/translations/mixxx_gl.ts | 164 +- res/translations/mixxx_he.ts | 164 +- res/translations/mixxx_he_IL.ts | 164 +- res/translations/mixxx_hi_IN.ts | 164 +- res/translations/mixxx_hr.ts | 164 +- res/translations/mixxx_hu.ts | 164 +- res/translations/mixxx_hy.ts | 164 +- res/translations/mixxx_id.ts | 164 +- res/translations/mixxx_is.ts | 164 +- res/translations/mixxx_it.qm | Bin 229224 -> 229023 bytes res/translations/mixxx_it.ts | 164 +- res/translations/mixxx_it_IT.qm | Bin 100620 -> 371258 bytes res/translations/mixxx_it_IT.ts | 3920 +++++++++++++------------- res/translations/mixxx_ja.ts | 164 +- res/translations/mixxx_ko.ts | 164 +- res/translations/mixxx_lb.ts | 164 +- res/translations/mixxx_lt.ts | 164 +- res/translations/mixxx_lv.ts | 164 +- res/translations/mixxx_mi.ts | 164 +- res/translations/mixxx_mk.ts | 164 +- res/translations/mixxx_ml.ts | 164 +- res/translations/mixxx_mn.ts | 164 +- res/translations/mixxx_mr.qm | Bin 4576 -> 9688 bytes res/translations/mixxx_mr.ts | 260 +- res/translations/mixxx_ms.ts | 164 +- res/translations/mixxx_my.ts | 164 +- res/translations/mixxx_nb.ts | 164 +- res/translations/mixxx_nl.qm | Bin 339735 -> 339528 bytes res/translations/mixxx_nl.ts | 164 +- res/translations/mixxx_nl_BE.qm | Bin 379253 -> 379046 bytes res/translations/mixxx_nl_BE.ts | 164 +- res/translations/mixxx_nl_NL.qm | Bin 67007 -> 66897 bytes res/translations/mixxx_nl_NL.ts | 164 +- res/translations/mixxx_nn.ts | 164 +- res/translations/mixxx_oc.ts | 164 +- res/translations/mixxx_pl.qm | Bin 206659 -> 206410 bytes res/translations/mixxx_pl.ts | 164 +- res/translations/mixxx_pt.qm | Bin 105830 -> 105627 bytes res/translations/mixxx_pt.ts | 164 +- res/translations/mixxx_pt_BR.qm | Bin 258914 -> 356048 bytes res/translations/mixxx_pt_BR.ts | 1372 ++++----- res/translations/mixxx_pt_PT.qm | Bin 312278 -> 312083 bytes res/translations/mixxx_pt_PT.ts | 164 +- res/translations/mixxx_ro.qm | Bin 183070 -> 182873 bytes res/translations/mixxx_ro.ts | 164 +- res/translations/mixxx_ru.qm | Bin 256445 -> 256256 bytes res/translations/mixxx_ru.ts | 164 +- res/translations/mixxx_ru_RU.ts | 164 +- res/translations/mixxx_si.ts | 164 +- res/translations/mixxx_sk.ts | 164 +- res/translations/mixxx_sl.qm | Bin 371368 -> 376677 bytes res/translations/mixxx_sl.ts | 340 ++- res/translations/mixxx_sn.ts | 164 +- res/translations/mixxx_sq_AL.ts | 164 +- res/translations/mixxx_sr.qm | Bin 193555 -> 193370 bytes res/translations/mixxx_sr.ts | 164 +- res/translations/mixxx_sv.qm | Bin 193287 -> 193084 bytes res/translations/mixxx_sv.ts | 164 +- res/translations/mixxx_te.ts | 164 +- res/translations/mixxx_tr.ts | 164 +- res/translations/mixxx_uk.qm | Bin 47802 -> 47698 bytes res/translations/mixxx_uk.ts | 164 +- res/translations/mixxx_uz.ts | 164 +- res/translations/mixxx_vi.qm | Bin 207667 -> 207476 bytes res/translations/mixxx_vi.ts | 164 +- res/translations/mixxx_zh_CN.qm | Bin 227314 -> 227161 bytes res/translations/mixxx_zh_CN.ts | 164 +- res/translations/mixxx_zh_HK.ts | 164 +- res/translations/mixxx_zh_TW.Big5.ts | 164 +- res/translations/mixxx_zh_TW.qm | Bin 161436 -> 161271 bytes res/translations/mixxx_zh_TW.ts | 164 +- 106 files changed, 8931 insertions(+), 9470 deletions(-) diff --git a/res/translations/mixxx_ar.ts b/res/translations/mixxx_ar.ts index 3df0b72a07c..82d953f80a3 100644 --- a/res/translations/mixxx_ar.ts +++ b/res/translations/mixxx_ar.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates الصناديق - + Remove Crate as Track Source نزع الصندوق كمصدر للمقاطع - + Auto DJ الدي جي الأوتوماتيكي - + Add Crate as Track Source اضافة صندوق كمصدر للمقاطع @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. لا يمكنك تحميل المقطع @@ -642,12 +642,12 @@ - + Mixxx Library مكتبة البرنامج - + Could not load the following file because it is in use by Mixxx or another application. لا تستطيع تشغيل هذا الملف لانه مستخدم من قبل البرنامج او برنامج آخر @@ -3363,37 +3363,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -7286,123 +7286,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year السنة - + Title العنوان - - + + Artist الفنان - - + + Album الألبوم - + Album Artist ألبوم الفنان - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7897,51 +7897,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8100,27 +8090,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel إلغاء - + Scanning: - + Scanning cover art (safe to cancel) @@ -8386,39 +8376,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8533,58 +8523,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13552,20 +13542,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_ast.ts b/res/translations/mixxx_ast.ts index 81e636fcd00..a38b8e1731d 100644 --- a/res/translations/mixxx_ast.ts +++ b/res/translations/mixxx_ast.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Caxes - + Remove Crate as Track Source - + Auto DJ Auto-DJ - + Add Crate as Track Source @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Nun se pudo cargar la pista. @@ -640,12 +640,12 @@ - + Mixxx Library Biblioteca de Mixxx - + Could not load the following file because it is in use by Mixxx or another application. Nun se pudo cargar el ficheru siguiente porque ta usandolu Mixxx o otra aplicación. @@ -3361,37 +3361,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -7284,123 +7284,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Añu - + Title Títulu - - + + Artist Artista - - + + Album Álbum - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply &Aplicar - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7895,51 +7895,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8098,27 +8088,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8384,39 +8374,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8531,58 +8521,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13550,20 +13540,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_bg.ts b/res/translations/mixxx_bg.ts index e38afd065a0..27a711b59c7 100644 --- a/res/translations/mixxx_bg.ts +++ b/res/translations/mixxx_bg.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Колекции - + Remove Crate as Track Source Премахни Колекция като Пистов Източник - + Auto DJ Авто-DJ (Автодиджей) - + Add Crate as Track Source Добави Колекция като Пистов Източник @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Песента не може да бъде заредена. @@ -640,12 +640,12 @@ Файла е създаден - + Mixxx Library Библиотека на Mixxx - + Could not load the following file because it is in use by Mixxx or another application. Следният файл не може да бъде зареден, защото се използва отMixxx или друго приложение. @@ -3361,37 +3361,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: Със съдействието на: - + And special thanks to: Специални благодарности за: - + Past Developers Програмисти от стари версии - + Past Contributors Програмисти от стари версии - + Official Website - + Donate @@ -7284,123 +7284,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Година - + Title Заглавие - - + + Artist Изпълнител - - + + Album Албум - + Album Artist Изпълнител - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply &Прилагане - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7895,51 +7895,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8098,27 +8088,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Скенер на библиотеката - + It's taking Mixxx a minute to scan your music library, please wait... Ще отнеме минута Mixxx да сканира музикалната ви библиотека, моля изчакайте... - + Cancel Отказ - + Scanning: - + Scanning cover art (safe to cancel) @@ -8387,39 +8377,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Потвърждане на излизането - + A deck is currently playing. Exit Mixxx? В момента свири дек. Изход от Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8536,58 +8526,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Сканиране - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13555,20 +13545,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Чисто преминаване на сигнала - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_bs.ts b/res/translations/mixxx_bs.ts index f7e806e456e..2022bd2fa21 100644 --- a/res/translations/mixxx_bs.ts +++ b/res/translations/mixxx_bs.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Sanduci - + Remove Crate as Track Source - + Auto DJ - + Add Crate as Track Source @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Nije u mogućnosti pustiti pjesmu. @@ -640,12 +640,12 @@ - + Mixxx Library - + Could not load the following file because it is in use by Mixxx or another application. Ne može pokrenuti sljedeći fajl jer ga koristi Mixxx ili druga aplikacija. @@ -3361,37 +3361,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -7284,123 +7284,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Godina - + Title Naslov - - + + Artist Umjetnik - - + + Album Album - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7895,51 +7895,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8098,27 +8088,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8384,39 +8374,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8531,58 +8521,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13550,20 +13540,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_ca.qm b/res/translations/mixxx_ca.qm index df305c30b8a9aac54cbc55907c5172be80d7a0d3..97572ea8ce741e8c57d7412d75c827406c40a2bb 100644 GIT binary patch delta 12611 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 delta 12899 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 diff --git a/res/translations/mixxx_ca.ts b/res/translations/mixxx_ca.ts index 678e4ffc204..c4fce8a487e 100644 --- a/res/translations/mixxx_ca.ts +++ b/res/translations/mixxx_ca.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Caixes - + Remove Crate as Track Source Esborra la caixa com a font de pistes - + Auto DJ DJ automàtic - + Add Crate as Track Source Afegeix la caixa com a font de pistes @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. No s'ha pogut carregar la pista. @@ -642,12 +642,12 @@ Data de creació - + Mixxx Library Biblioteca del Mixxx - + Could not load the following file because it is in use by Mixxx or another application. No s'ha pogut carregar el següent fitxer, degut a que el Mixxx o una altra aplicació l'estan utilitzant. @@ -3363,37 +3363,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: Amb les contribucions de: - + And special thanks to: Reconeixements especials a: - + Past Developers Antics desenvolupadors - + Past Contributors Antics Contribuidors - + Official Website - + Donate @@ -7345,123 +7345,123 @@ Seleccioneu entre els diferents tipus de gràfics per a la forma d'ona loca Selecciona el millor candidat - - + + Track Pista - - + + Year Any - + Title Tí­tol - - + + Artist Artista - - + + Album Àlbum - + Album Artist Artista de l'àlbum - + Fetching track data from the MusicBrainz database Recuperant informació de la pista de la base de dades de MusicBrainz - + Mixxx could not find this track in the MusicBrainz database. Mixxx no ha pogut trobar aquesta pista a la base de dades del MusicBrainz. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. Obté la API de notes - + Submit Submits audio fingerprints to the MusicBrainz database. Envia - + New Column Nova columna - + New Item Nou ítem - + &Previous A&nterior - + &Next &Següent - + &Apply &Aplica - + &Close &Tanca - + Status: %1 Estat: %1 - + HTTP Status: %1 Estat HTTP: %1 - + Code: %1 Codi: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx no pot connectar a %1 per algun motiu desconegut. - + Mixxx can't connect to %1. Mixxx no pot connectar a %1. - + Original tags Etiquetes originals - + Suggested tags Etiquetes suggerides @@ -7958,51 +7958,41 @@ Sovint ofereix una graella de pulsacions de major qualitat, però no serà prou HidController - Generic HID Mouse - Mouse HID Genèric - - - Generic HID Joystick Comandament HID genèric - + Generic HID Gamepad Comandament de jocs HID genèric - - Generic HID Keyboard - Teclat HID genèric - - - + Generic HID Multiaxis Controller Controladora multi-axis HID genèric - + Unknown HID Desktop Device Dispositiu d'escriptori HID desconegut - + HID Infrared Control Control d'infrarojos per HID - + Unknown Apple HID Device Dispositiu HID d'Apple desconnegut - + HID Unknown Device Dispositiu HID desconegut - + HID Interface Number Número d'interfície HID @@ -8165,27 +8155,27 @@ Voleu sobreescriure aquesta llista? LibraryScannerDlg - + Library Scanner Analitzador de la biblioteca - + It's taking Mixxx a minute to scan your music library, please wait... Mixxx tardarà una estona a escanejar biblioteca de música. Espereu un moment... - + Cancel Cancel·la - + Scanning: Escanejant: - + Scanning cover art (safe to cancel) Escanejant les caràtules (es pot cancel·lar) @@ -8457,39 +8447,39 @@ Do you want to select an input device? No es pot carregar l'aparença seleccionada. - + OpenGL Direct Rendering OpenGL Renderització Directa - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. La Renderizació Directa no està activada a la vostra màquina.<br><br> Això significa que els gràfics d'ona seran molt <br><b>lent i poden fer anar molta CPU</b>. Prove de canviar la<br> configuració per activar la renderització directa, o desactiveu<br>els gràfics d'ona a les preferències del Mixxx selecionant<br>"Buit" al tipus deforma d'ona local, en la secció de "Gràfics d'ona". - - - + + + Confirm Exit Confirma la sortida - + A deck is currently playing. Exit Mixxx? Un plat està reproduint encara. Voleu sortir del Mixxx? - + A sampler is currently playing. Exit Mixxx? Hi ha un reproductor de mostres que està reproduint. Segur que voleu sortir del Mixxx? - + The preferences window is still open. La finestra de preferències està oberta encara. - + Discard any changes and exit Mixxx? Descartar els canvis i sortir del Mixxx? @@ -8606,59 +8596,59 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx Actualitzant el Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? Ara és possible que el Mixxx mostri les caràtules. Voleu escanejar ara la biblioteca cercant les caràtules? - + Scan Escaneja - + Later Més tard - + Upgrading Mixxx from v1.9.x/1.10.x. Actualitzant el Mixxx de la versió v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. El Mixxx té un nou i millorat detector de tocs. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. Quan carregueu les vostres pistes, el Mixxx pot tornar a analitzar i generar noves graelles de ritme més acurades. Això millora la sincronització automàtica de ritme i els bucles. - + This does not affect saved cues, hotcues, playlists, or crates. Això no afecta als punts Cue, marques directe, llistes de reproducció o caixes. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. Si no voleu que Mixxx torni a analitzar les vostres pistes, trieu "Mantingues les graelles actuals". Podeu canviar aquesta opció en qualsevol moment des de la secció "Detecció de ritme" de les Preferències. - + Keep Current Beatgrids Mantingues les graelles actuals - + Generate New Beatgrids Genera noves graelles de ritme @@ -13660,20 +13650,20 @@ Ho pots utilitzar per canviar només la senyal processada amb EQs i efectes de f Pas de l'àudio - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_ca_ES.qm b/res/translations/mixxx_ca_ES.qm index cddf521ae6e1a1bd92281aee958dfff563208bab..ddcfd59da66f1b0b589c7923446540b7d41cdc66 100644 GIT binary patch delta 12144 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 delta 12458 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 diff --git a/res/translations/mixxx_ca_ES.ts b/res/translations/mixxx_ca_ES.ts index 908250d611f..5f7f6dfa636 100644 --- a/res/translations/mixxx_ca_ES.ts +++ b/res/translations/mixxx_ca_ES.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Caixes - + Remove Crate as Track Source Esborra la caixa com a font de pistes - + Auto DJ DJ automàtic - + Add Crate as Track Source Afegeix la caixa com a font de pistes @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. No s'ha pogut carregar la pista. @@ -642,12 +642,12 @@ Data de creació - + Mixxx Library Biblioteca del Mixxx - + Could not load the following file because it is in use by Mixxx or another application. No s'ha pogut carregar el següent fitxer, degut a que el Mixxx o una altra aplicació l'estan utilitzant. @@ -3363,37 +3363,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: Amb les contribucions de: - + And special thanks to: Reconeixements especials a: - + Past Developers Antics desenvolupadors - + Past Contributors Antics contribuidors - + Official Website - + Donate @@ -7316,123 +7316,123 @@ Seleccioneu entre els diferents tipus de gràfics per a la forma d'ona loca Selecciona el millor candidat - - + + Track Pista - - + + Year Any - + Title Tí­tol - - + + Artist Artista - - + + Album Àlbum - + Album Artist Artista de l'àlbum - + Fetching track data from the MusicBrainz database Recuperant informació de la pista de la base de dades de MusicBrainz - + Mixxx could not find this track in the MusicBrainz database. Mixxx no ha pogut trobar aquesta pista a la base de dades del MusicBrainz. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. Obté la API de notes - + Submit Submits audio fingerprints to the MusicBrainz database. Envia - + New Column Nova columna - + New Item Nou ítem - + &Previous A&nterior - + &Next &Següent - + &Apply &Aplica - + &Close &Tanca - + Status: %1 Estat: %1 - + HTTP Status: %1 Estat HTTP: %1 - + Code: %1 Codi: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx no pot connectar a %1 per algun motiu desconegut. - + Mixxx can't connect to %1. Mixxx no pot connectar a %1. - + Original tags Etiquetes originals - + Suggested tags Etiquetes suggerides @@ -7927,51 +7927,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - Mouse HID Genèric - - - Generic HID Joystick Comandament HID genèric - + Generic HID Gamepad Comandament de jocs HID genèric - - Generic HID Keyboard - Teclat HID genèric - - - + Generic HID Multiaxis Controller Controladora multi-axis HID genèric - + Unknown HID Desktop Device Dispositiu d'escriptori HID desconegut - + HID Infrared Control Control d'infrarojos per HID - + Unknown Apple HID Device Dispositiu HID d'Apple desconnegut - + HID Unknown Device Dispositiu HID desconegut - + HID Interface Number Número d'interfície HID @@ -8131,27 +8121,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Analitzador de la biblioteca - + It's taking Mixxx a minute to scan your music library, please wait... Mixxx tardarà una estona a escanejar biblioteca de música. Espereu un moment... - + Cancel Cancel·la - + Scanning: Escanejant: - + Scanning cover art (safe to cancel) Escanejant les caràtules (es pot cancel·lar) @@ -8423,39 +8413,39 @@ Do you want to select an input device? No es pot carregar l'aparença seleccionada. - + OpenGL Direct Rendering OpenGL Renderització Directa - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Confirma la sortida - + A deck is currently playing. Exit Mixxx? Un plat està reproduint encara. Voleu sortir del Mixxx? - + A sampler is currently playing. Exit Mixxx? Hi ha un reproductor de mostres que està reproduint. Segur que voleu sortir del Mixxx? - + The preferences window is still open. La finestra de preferències està oberta encara. - + Discard any changes and exit Mixxx? Descartar els canvis i sortir del Mixxx? @@ -8572,59 +8562,59 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx Actualitzant el Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? Ara és possible que el Mixxx mostri les caràtules. Voleu escanejar ara la biblioteca cercant les caràtules? - + Scan Escaneja - + Later Més tard - + Upgrading Mixxx from v1.9.x/1.10.x. Actualitzant el Mixxx de la versió v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. El Mixxx té un nou i millorat detector de tocs. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. Quan carregueu les vostres pistes, el Mixxx pot tornar a analitzar i generar noves graelles de ritme més acurades. Això millora la sincronització automàtica de ritme i els bucles. - + This does not affect saved cues, hotcues, playlists, or crates. Això no afecta als punts Cue, Hotcues, Llistes de reproducció o caixes. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. Si no voleu que Mixxx torni a analitzar les vostres pistes, trieu "Mantingues les graelles actuals". Podeu canviar aquesta opció en qualsevol moment des de la secció "Detecció de ritme" de les Preferències. - + Keep Current Beatgrids Mantingues les graelles actuals - + Generate New Beatgrids Genera noves graelles de ritme @@ -13626,20 +13616,20 @@ Ho pots utilitzar per canviar només la senyal processada amb EQs i efectes de f - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_cs.qm b/res/translations/mixxx_cs.qm index c008e29258de2bab4dc64563c2e10f19f1fe21de..0637a820e84c43f18ba50b63b780919e5d761486 100644 GIT binary patch delta 11623 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 delta 12089 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 AutoDJFeature - + Crates Přepravky - + Remove Crate as Track Source Odstranit přepravku na desky jako zdroj skladeb - + Auto DJ Diskžokej - + Add Crate as Track Source Přidat přepravku na desky jako zdroj skladeb @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Nepodařilo se nahrát skladbu. @@ -642,12 +642,12 @@ Soubor vytvořen - + Mixxx Library Knihovna Mixxxu - + Could not load the following file because it is in use by Mixxx or another application. Nepodařilo se nahrát následující soubor. Je používán Mixxxem nebo jinou aplikací. @@ -3363,37 +3363,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: S příspěvky od: - + And special thanks to: A zvláštní poděkování: - + Past Developers Vývojáři v minulosti - + Past Contributors Přispěvatelé v minulosti - + Official Website - + Donate @@ -7319,123 +7319,123 @@ Vyberte z různých druhů zobrazení průběhových křivek, které se v prvé Vyberte nejlepší možnou shodu - - + + Track Skladba - - + + Year Rok - + Title Název - - + + Artist Umělec - - + + Album Album - + Album Artist Umělec alba - + Fetching track data from the MusicBrainz database Natahují se data z databáze MusicBrainz - + Mixxx could not find this track in the MusicBrainz database. Mixxxu se nepodařilo najít tuto skladbu v databázi MusicBrainz. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. Vyžádat si klíč API - + Submit Submits audio fingerprints to the MusicBrainz database. Poslat - + New Column Nový sloupec - + New Item Nový prvek - + &Previous &Předchozí - + &Next &Další - + &Apply &Použít - + &Close &Zavřít - + Status: %1 Stav: %1 - + HTTP Status: %1 Stav HTTP: %1 - + Code: %1 Kód: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxxu se z neznámého důvodu nepodařilo připojit k %1. - + Mixxx can't connect to %1. Mixxx se nedokáže spojit s %1. - + Original tags Původní značky - + Suggested tags Navrhované značky @@ -7932,51 +7932,41 @@ Použijte toto nastavení, pokud mají vaše skladby stálé tempo (např. vět HidController - Generic HID Mouse - Obecná myš HID - - - Generic HID Joystick Obecný HID pákový ovladač - + Generic HID Gamepad Obecná HID Gamepad - - Generic HID Keyboard - Obecná klávesnice HID - - - + Generic HID Multiaxis Controller Obecný HID Multiaxis řadič - + Unknown HID Desktop Device Neznámé zařízení standardu HID - + HID Infrared Control HID infračervené ovládání - + Unknown Apple HID Device Neznámé HID zařízení Apple - + HID Unknown Device Neznámé zařízení standardu HID - + HID Interface Number Číslo rozhraní HID @@ -8136,27 +8126,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Prohledávač knihovny - + It's taking Mixxx a minute to scan your music library, please wait... Bude chvíli trvat, než Mixxx prohlédne vaši hudební sbírku, čekejte, prosím.... - + Cancel Zrušit - + Scanning: Prohledávání: - + Scanning cover art (safe to cancel) Hledají se obaly alb (lze bezpečně zrušit) @@ -8428,39 +8418,39 @@ Do you want to select an input device? Nelze nahrát vybraný vzhled. - + OpenGL Direct Rendering Přímé vykreslování OpenGL - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Potvrdit ukončení - + A deck is currently playing. Exit Mixxx? Některá z přehrávacích mechanik hraje. Ukončit Mixxx? - + A sampler is currently playing. Exit Mixxx? Vzorkovač nyní hraje. Ukončit Mixxx? - + The preferences window is still open. Okno s nastavením je stále otevřené. - + Discard any changes and exit Mixxx? Zahodit všechny změny a ukončit Mixxx? @@ -8577,59 +8567,59 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx Aktualizuje se Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? Mixxx nyní podporuje zobrazení obrázků obalů. Chcete nyní kvůli souborům s obaly prohledat knihovnu? - + Scan Prohledat - + Later Později - + Upgrading Mixxx from v1.9.x/1.10.x. Aktualizuje se Mixxx z verze 1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. Mixxx má nové a vylepšené rozpoznávání rytmu. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. Když nahrajete skladby, Mixxx je může znovu rozebrat a vytvoři novou, přesnější rytmickou mřížku. Tím bude automatické seřízení rytmu a smyčkování pracovat spolehlivěji. - + This does not affect saved cues, hotcues, playlists, or crates. Toto neovlivní značky, rychlé značky, seznamy skladeb nebo přepravky. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. Pokud nechcete, aby Mixxx znovu rozebral vaše skladby, vyberte Zachovat nynější rytmické mřížky. Toto nastavení můžete kdykoliv změnit v nastavení v části Rozpoznávání rytmu. - + Keep Current Beatgrids Zachovat nynější rytmické mřížky - + Generate New Beatgrids Vytvořit nové rytmické mřížky @@ -13610,20 +13600,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Propustit skrz - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_da.ts b/res/translations/mixxx_da.ts index c3699d2b51e..7de9b707867 100644 --- a/res/translations/mixxx_da.ts +++ b/res/translations/mixxx_da.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates - + Remove Crate as Track Source - + Auto DJ Auto DJ - + Add Crate as Track Source @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Kunne ikke læse spor. @@ -640,12 +640,12 @@ Fil oprettet - + Mixxx Library Mixxx bibliotek - + Could not load the following file because it is in use by Mixxx or another application. Kunne ikke læse den følgende fil, da den er i brug af Mixxx eller et andet program. @@ -3361,37 +3361,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -7284,123 +7284,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year År - + Title Titel - - + + Artist Kunstner - - + + Album Album - + Album Artist Albumskunstner - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7895,51 +7895,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8098,27 +8088,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8384,39 +8374,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8531,58 +8521,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Skan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13550,20 +13540,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_de.qm b/res/translations/mixxx_de.qm index 5f248fcd7a4b8ca6a3692d3e8a54c0704deb70d6..300883c8835d1ea73428ffabf22851676c3c23ec 100644 GIT binary patch delta 14350 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 delta 14032 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 z zjHk(4oT3NV{=-OiBvl!FA4|k0OO&C5 zF-Li7j1=}rBxabusdTLdorJtvgiTY6)u`C8fgbU7}cAZ29fSWpQM zs+3WG+b-2-C0kD`lM~9g*Oi#s&MOB;<7G{oN)ev+hI7hcQ`Vw}FI5gNzz)>lN6HaO ze8|TSl_N%Mz-l7wADh20l03YmOgdf-EPR=AOiyI5{mQYUQ8%~vE0bNX z)+H^l0#IgM$4YAYS7r7X6u-*5M)JHosd+0igii%9ksOfvhZ5zB<+);8?iw)qRxeqB_bqgE7HgHZhV< z{jU5#vCDDPPWknE6&@n+RsP&-0BYV(vTf7Vyhaq%XekptMRKSm!2Jm#IgGD|50~b& z@iv&O6)iRR4O%W08>CgBhqe+M>Xg`Ydnz{kfWi^;T(rA245)`B+WTTn_V|V9)GG$i%{12Zr?xromDt8utoMd!<5AZ)uYx^y-GF{>lG6l<{s`dw@>Vkq#sQ$>&S@c_5< zV#_{Qo-emB(w*&EC3-5*TWzWmJ!7u|JjfE;&kqCE$z1fV_yTm{YtiQ-&R_d5BU!zM zQhHl`xXC=RGiw8|bBx&8H3c{v6}t#efvoozyX?R-MQ8qqq4C8a?D;K*WuQKc*Nfd; zaJqe!Vzd_uU-PSC--Fmz=;bC37>Vx1zJ>I*Z3n|`G2uW15VSl0u~wQm#0GO#k%u^B z{0KZdR4fj8h1~a19P<4eRvx{Lq&F^#L+^b6VScYrvf(KE$$eZzoM?h!XcVUul9uynb-ry*&nxV^Lt$nOGiNAzT% z$|!Ni_MRC1ZsIQQOgvtt6?a|7W@b>4xO*FlvR7Skzo#$mrG$wGuAyu0bInLPw#Z1H zK14j!ISp{D<{y<^{;{oxk$k+9SQ3Q+lRQ=|xs3Vt1sD$ai&r`v z1#q7#{^y7F_>DyIs%iyLhfdvz+|viCR>M<sUlfRHy&d{$Eo%&v*}^4Jcb-@k~jL-6&u?&61gvDnW!B7Qmf5^Y`+ z@dw`lmN22Q_&a4YkS_1UKZ7t7>P{AGhT;c&b&wLh^@d3!RLV5W3tm+!Hv_jdtVn9-peRUWFU_N5`m|UOfS9#}ifa5g1WS6K_19uwUi7q7>+hC{@Rs zaoBs>Z6vLeuL}5#O49M5s`Iq5xQm>k3Qq6<7?P&y5{(a7zEu@!aRc~Ny(&zJ$G%>k zQgyf0qQrE3tqSky4|Lu(RfIDx^}B0S5iQDr`NpgI_TJF1+m z&ZvOVs+_$!c)D?sk?g926yaml{e)_k+aqAElU1_=@XJ(PGLoLLR?S|H;ZygiYEB4N z#J;^$^Ty<%o`tIx9QFZ{vR{>Ff<1fnKGi~dl*biwR0Sy*9X73`(>^Z3E9r}mvqjE) z)s~aEMocHEiWiT;^F1=vwmrGPhl1qgYu4tWYF`}(+|GSwq+sz@bucR$=yX%n;a3>x z?>?!H?EC>FY^tgx8+%4^zN(`h4#48CN^^YmwQsqq&We9eZrG~Me$EH_<)U=NS0AqL zt-96(uVzZs%@FJyEuE~oiT0E&U8%aeq!jH@r0Tu{3iFQ%s{0G(1N}K&b$<)W#7{w0 z&ii98|FY_#h;jUIrt0C}Qoq_lYTi*F+bc))etTUIdUREN_~{Px=n>V&^WH#p>8c+> zII!&pv3>Co8Lavdu^k}$i0a3dNTj>!XE+AK_y9Fo=?~zyP)%{1goA_BbUcpNU?(-N z$pH3!xU{vSvtfs$+H3~Sb{Yx<)L;Wg;;*oS36y(2A1xvcKV|QmSLi9{<0Wo z#!0pFMRS1D9o5biSPc8+s$G9FkfJ(Sli4Gs^iF2xzto+oO@W>HqV_k%PxxT3_D{w+ z{Nx~Q?c{8jW}^;X>W6BYs17-K73irPb*L!@t8Sh;%<%*+&!_6}Ug$Jz<{K$AEmMbQ zW8G(|Q}@_bf{naw>Ry(({W|ZAIw}gsXF#et>ewn&y(lDl`XRaM=uOT**9}(pANUTy z-rGph>YaMv^iTMpe%4Vf!_={#`vdn#Q^zg8k9A%{b%Gwh?BY~)LbnoN$&J;6vv;CF zIinu(2rHTR!RldC(2xje>e1FIcxWO|om}rQO1ZB(r73=vHbXtGMtZSJdT3+(t<3MJXZ1#BIYO(R(>4xB_9k`iwEozD*Gv8U^`z-&Dc#>J z=%IR9Kmzc#h3e%;6Y#V~n7Z&8YUDn>dc}Brut8Dkm5O3uJ$=-x+xG*Wc1pcr>wFNF zcQlgcaP=l@Z`_&GNe}#;-InxGAHRefZXsjUC!ab4>o-n)ihKsBA8aJ+=x-#SWT8GA z^BPTS1Ia7EOgJY+1lXILRNroxf%8zNzLWd|_`<`|oB(^@6Y9#jVL+Q_t6$dFf^gek z{nGXhzVoa4Rp@72OTOw4GCY(zcA1fEbTjpb{$aq}Yt$cBSE0tl#h1ZArkE?AMqK z7z#pXQ;n%C7GU*vjp_SxU{i)jIf0(xHgb*CMEuCq`kF>1I4QAbHP*5;G`ycRwr1GK z+p1=1nYNu)6 zIu2`RGmY0_Oe6URG=7nI{w2Z>iQ5?wbCF+=cahb=d)Xpua1S$C;}?Z<&}$TuArEQ% zH)a5@-BA;egW0F3o+jW6F34kXnxL*|6V=&9(pKh1@=5ucpqN3>h0b-VwC zs$K$uxl$AQ$O@=6Xu_P5fDiG}giXWzJFcsy+pH`g2j6SD>#?sOcGL7kW6NrLX?k_T z_p3)re>$6)AJ+88K_fFdYhoj9@EobRCU(npY%TAQng^K~?rDbV9s`4MnxO%00fD5<&>YKZ3G}nK=2QW;WMU?3&gs-Zz6{b_?2acF+bT2{AL7vW zDA8Q$U4|XSH=6%u?F7NwNps6D2~R6^*W6iBg;i5aP5DVIh^GG0Jk*v0@8_j?+z2c0 z&Z{+#*E@jpDp(XgNne7ktlw)skH>w3cu&peiZp<4ewr`U4e)_(Xug_Y64^dnYT3m~ z_$@_rv8&x*t!-4NHufj?Ya1Qf1XQ*|n$yKT=C;-$tv2q~Y%-Fa>Z^5}jm6jW16mi8 z>j0nIYTaIA+Tz`{o)tJX-Ck_9`ar5qvwyRGH2ICrS*8``quE^K+xc&*)&y(8Txfpbd z?`ZohTmtl4q&Bh?zlb(KN)NFkT{}qYLhKy%N^N?rVh~0@&`uFbfI98fW}d*=OS08w z8Su03t=DF!;jH_lNnb*&4BxafKDNhQjh@%d@px)?<(~+N|9!VTSn~qut@T8@HyUP?I+Iw1+%0fb1TqJ#wrVs9(0W zqynu~VMp!JFD-$MF4rE@bpqJ-#z=O=QhRQS8CtO`(t}W!n3LLj!?QuiTA{sPX9k`X zkZJFq!6z77qAhoy48Xtrqsq=mKEXx%2pe*&j)nHoZD$~n{@N!m!?0BX+NamC#6KCT zefko2VfwYvRxY>2;^?iE7^V-mT&n$5T?(w$Ozoewk5L)U8_C8_(pDcLz}gtCj zJ=4}4#E>{=sjWG~fv3LKLEBD1cCFQsmUXZr8K)!LBY_UwBs~bz+q_EGsi+(7Wn}AA zB4+H___}u(2*XNr>IyuJ@OhSG+SMxPmabMJ#(L3Vok=t7b8U3hne;_p}nQkSeceQtTqjUb0i~Wgn zI+t}=ETy*9wQy*IW-U(VnuQ0?WG!@VfBP`*&7{j+&CE~e+BO}7(>gxhHm1z#GNt zPA$Z$XZQ}?nPE5}-8<>dTjm0JGs#FEJm4R@H2Obg>MjoG2Evg8x=Xe3p`uN6*ZQ5r zMU$hu7FP`H^<71%vr_-CY}8yB&RX z_k1F87htOHzNG;4nx*c+i$Z|nrMmKOm^TMS=^hO%0n*c7_h?j0JSD$c_c##`uP@lC zd%6o70Fk!33b*k AutoDJFeature - + Crates Plattenkisten - + Remove Crate as Track Source Plattenkiste als Track-Quelle entfernen - + Auto DJ Auto-DJ - + Add Crate as Track Source Plattenkiste als Track-Quelle hinzufügen @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Track konnte nicht geladen werden. @@ -642,12 +642,12 @@ Datei erstellt - + Mixxx Library Mixxx-Bibliothek - + Could not load the following file because it is in use by Mixxx or another application. Folgende Datei konnte nicht geladen werden, da sie in Mixxx oder einer anderen Anwendung in Benutzung ist. @@ -3363,37 +3363,37 @@ DlgAbout - + Mixxx %1.%2 Development Team Mixxx %1.%2 Entwicklerteam - + With contributions from: Mit Beiträgen von: - + And special thanks to: Und besonderen Dank an: - + Past Developers Frühere Entwickler - + Past Contributors Frühere Mitwirkende - + Official Website Offizielle Webseite - + Donate Spenden @@ -7356,123 +7356,123 @@ Wählen Sie aus verschiedenen Arten der Wellenform-Anzeige, welche sich in erste Wählen Sie die bestmögliche Übereinstimmung - - + + Track Track - - + + Year Jahr - + Title Titel - - + + Artist Interpret - - + + Album Album - + Album Artist Album-Interpret - + Fetching track data from the MusicBrainz database Track-Daten aus der MusicBrainz-Datenbank abrufen - + Mixxx could not find this track in the MusicBrainz database. Mixxx konnte diesen Track nicht in der MusicBrainz-Datenbank finden. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. API-Schlüssel anfordern - + Submit Submits audio fingerprints to the MusicBrainz database. Senden - + New Column Neue Spalte - + New Item Neues Element - + &Previous &Zurück - + &Next &Weiter - + &Apply &Anwenden - + &Close S&chließen - + Status: %1 Status: %1 - + HTTP Status: %1 HTTP Status: %1 - + Code: %1 Code: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx kann aus einem unbekannten Grund keine Verbindung zu %1 herstellen. - + Mixxx can't connect to %1. Mixxx kann sich nicht mit %1 verbinden. - + Original tags Original-Tags - + Suggested tags Vorgeschlagene Tags @@ -7969,51 +7969,41 @@ Das führt oft zu Beatgrids mit höherer Qualität, wird aber nicht so gut bei T HidController - Generic HID Mouse - Standard HID Maus - - - Generic HID Joystick Standard HID Joystick - + Generic HID Gamepad Standard HID Gamepad - - Generic HID Keyboard - Standard HID Tastatur - - - + Generic HID Multiaxis Controller Standard HID Mehrachsen-Controller - + Unknown HID Desktop Device Unbekanntes HID Desktop-Gerät - + HID Infrared Control HID Infrarot-Steuerung - + Unknown Apple HID Device Unbekanntes Apple HID Gerät - + HID Unknown Device Unbekanntes HID Gerät - + HID Interface Number HID Gerätenummer @@ -8176,27 +8166,27 @@ Möchten Sie es wirklich überschreiben? LibraryScannerDlg - + Library Scanner Bibliothek-Scanner - + It's taking Mixxx a minute to scan your music library, please wait... Mixxx benötigt einen Moment um Ihre Musikbibliothek zu scannen, bitte warten … - + Cancel Abbrechen - + Scanning: Scannen: - + Scanning cover art (safe to cancel) Scanne Cover-Bilder (kann sicher abgebrochen werden) @@ -8470,39 +8460,39 @@ Wollen Sie ein Eingabegerät auswählen? Das gewählte Skin kann nicht geladen werden. - + OpenGL Direct Rendering Direktes Rendern mit OpenGL - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. Direktes Rendern ist auf Ihrem System nicht aktiviert.<br><br>Dies bedeutet, dass die Wellenform-Anzeige sehr langsam sein wird <br><b>und möglicherweise Ihre CPU stark belastet</b>. Entweder aktualisieren Sie Ihre<br>Konfiguration, um direktes Rendern zu aktivieren oder deaktivieren<br>die Wellenform-Anzeige in den Mixxx-Einstellungen durch die Auswahl von<br>"Leer" als Wellenform-Anzeige im Bereich 'Benutzeroberfläche'. - - - + + + Confirm Exit Beenden bestätigen - + A deck is currently playing. Exit Mixxx? Ein Deck spielt derzeit. Mixxx beenden? - + A sampler is currently playing. Exit Mixxx? Ein Sampler spielt derzeit. Mixxx beenden? - + The preferences window is still open. Das Einstellungen-Fenster ist noch geöffnet. - + Discard any changes and exit Mixxx? Alle Änderungen verwerfen und Mixxx schließen? @@ -8619,59 +8609,59 @@ Wollen Sie ein Eingabegerät auswählen? QMessageBox - + Upgrading Mixxx Aktualisieren von Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? Mixxx unterstützt nun die Anzeige von Cover-Bildern. Willst du deine Bibliothek jetzt nach Cover-Dateien scannen? - + Scan Scannen - + Later Später - + Upgrading Mixxx from v1.9.x/1.10.x. Aktualisierung von Mixxx v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. Mixxx hat eine neue und verbesserte Beat-Erkennung. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. Wenn Sie Tracks laden, kann Mixxx diese erneut analysieren und neue, genauere Beatgrids erzeugen. Dadurch werden automatische Beat-Synchronisierung und Looping zuverlässiger funktionieren. - + This does not affect saved cues, hotcues, playlists, or crates. Dies hat keine Auswirkungen auf Cues, Hotcues, Wiedergabelisten oder Plattenkisten. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. Wenn Sie nicht wollen das Mixxx Ihre Tracks erneut analysiert, wählen Sie "Aktuelle Beatgrids erhalten". Sie können dies jederzeit im Bereich "Beat-Erkennung" in den Einstellungen ändern. - + Keep Current Beatgrids Aktuelle Beatgrids erhalten - + Generate New Beatgrids Neue Beatgrids erzeugen @@ -13677,20 +13667,20 @@ Verwenden Sie diese Option, um nur das verarbeitete (Wet) Signal mit EQ- und Fil Weiterleiten - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible Bereit zu spielen, analysiere … - - + + Loading track... Text on waveform overview when file is cached from source Track wird geladen … - + Finalizing... Text on waveform overview during finalizing of waveform analysis Fertigstellen … diff --git a/res/translations/mixxx_el.ts b/res/translations/mixxx_el.ts index d5e103b2754..2d18f51c9f6 100644 --- a/res/translations/mixxx_el.ts +++ b/res/translations/mixxx_el.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Κιβώτια - + Remove Crate as Track Source Αφαίρεση κιβωτίου ως πηγή κομματιών - + Auto DJ Αυτόματος DJ - + Add Crate as Track Source Προσθήκη κιβωτίου ως πηγή κομματιών @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. H φόρτωση του κομματιού απέτυχε. @@ -642,12 +642,12 @@ Δημιουργία αρχείου - + Mixxx Library Βιβλιοθήκη του Mixxx - + Could not load the following file because it is in use by Mixxx or another application. Αδυναμία φόρτωσης του ακόλουθου αρχείου λόγω χρήσης του από το Mixxx ή άλλη εφαρμογή. @@ -3364,37 +3364,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -7288,123 +7288,123 @@ Select from different types of displays for the waveform, which differ primarily Επιλογή καλύτερου δυνατού ως ταίρι - - + + Track Κομμάτι - - + + Year Έτος - + Title Τίτλος - - + + Artist Καλλιτέχνης - - + + Album Άλμπουμ - + Album Artist Καλλιτέχνης δίσκου - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply &Εφαρμογή - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7899,51 +7899,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8102,27 +8092,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Σαρωτής της Συλλογής - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel Άκυρο - + Scanning: - + Scanning cover art (safe to cancel) @@ -8391,39 +8381,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Επιβεβαίωση εξόδου - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. Το παράθυρο επιλογών είναι ακόμα ανοιχτό - + Discard any changes and exit Mixxx? Απαλοιφή αλλαγών και έξοδος του Mixxx; @@ -8538,58 +8528,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx Γίνεται αναβάθμιση του Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Σάρωση - + Later Αργότερα - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13557,20 +13547,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Διέλευση - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_el_GR.ts b/res/translations/mixxx_el_GR.ts index 5d5b7a63b10..2fad8bb93ee 100644 --- a/res/translations/mixxx_el_GR.ts +++ b/res/translations/mixxx_el_GR.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Κιβώτια - + Remove Crate as Track Source Αφαίρεσε το πακέτο από τις πηγές ήχου - + Auto DJ Αυτόματος DJ - + Add Crate as Track Source Πρόσεθεσε το πακέτο στις πηγές ήχου @@ -263,7 +263,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Αδύνατο να φόρτωθεί το συγκεκριμένο κομμάτι. @@ -643,12 +643,12 @@ - + Mixxx Library - + Could not load the following file because it is in use by Mixxx or another application. @@ -3365,37 +3365,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -7288,123 +7288,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Έτος - + Title Τίτλος - - + + Artist Καλιτέχνης - - + + Album Άλμπουμ - + Album Artist Καλιτέχνης του Αλμπουμ - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7899,51 +7899,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8102,27 +8092,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8388,39 +8378,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8535,58 +8525,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13554,20 +13544,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_en_GB.qm b/res/translations/mixxx_en_GB.qm index 33d01db03a0a7ca20b65b6abf77dfdc7e4ff1e47..0b03cdb48dec14f0216513d48e7f2b078f351973 100644 GIT binary patch delta 13153 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 N#eeKzSvFT}_#cwOF>e3> delta 13346 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 AutoDJFeature - + Crates Crates - + Remove Crate as Track Source Remove Crate as Track Source - + Auto DJ Auto DJ - + Add Crate as Track Source Add Crate as Track Source @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Couldn't load track. @@ -642,12 +642,12 @@ File Created - + Mixxx Library Mixxx Library - + Could not load the following file because it is in use by Mixxx or another application. Could not load the following file because it is in use by Mixxx or another application. @@ -3363,37 +3363,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: With contributions from: - + And special thanks to: And special thanks to: - + Past Developers Past Developers - + Past Contributors Past Contributors - + Official Website - + Donate @@ -7348,123 +7348,123 @@ Select from different types of displays for the waveform, which differ primarily Select best possible match - - + + Track Track - - + + Year Year - + Title Title - - + + Artist Artist - - + + Album Album - + Album Artist Album Artist - + Fetching track data from the MusicBrainz database Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. Get API-Key - + Submit Submits audio fingerprints to the MusicBrainz database. Submit - + New Column New Column - + New Item New Item - + &Previous &Previous - + &Next &Next - + &Apply &Apply - + &Close &Close - + Status: %1 Status: %1 - + HTTP Status: %1 HTTP Status: %1 - + Code: %1 Code: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. Mixxx can't connect to %1. - + Original tags Original tags - + Suggested tags Suggested tags @@ -7959,51 +7959,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - Generic HID Mouse - - - Generic HID Joystick Generic HID Joystick - + Generic HID Gamepad Generic HID Gamepad - - Generic HID Keyboard - Generic HID Keyboard - - - + Generic HID Multiaxis Controller Generic HID Multiaxis Controller - + Unknown HID Desktop Device Unknown HID Desktop Device - + HID Infrared Control HID Infrared Control - + Unknown Apple HID Device Unknown Apple HID Device - + HID Unknown Device HID Unknown Device - + HID Interface Number HID Interface Number @@ -8166,27 +8156,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... It's taking Mixxx a minute to scan your music library, please wait... - + Cancel Cancel - + Scanning: Scanning: - + Scanning cover art (safe to cancel) Scanning cover art (safe to cancel) @@ -8460,39 +8450,39 @@ Do you want to select an input device? The selected skin cannot be loaded. - + OpenGL Direct Rendering OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Confirm Exit - + A deck is currently playing. Exit Mixxx? A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. The preferences window is still open. - + Discard any changes and exit Mixxx? Discard any changes and exit Mixxx? @@ -8609,59 +8599,59 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Scan - + Later Later - + Upgrading Mixxx from v1.9.x/1.10.x. Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. When you load tracks, Mixxx can re-analyse them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. If you do not want Mixxx to re-analyse your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids Keep Current Beatgrids - + Generate New Beatgrids Generate New Beatgrids @@ -13663,20 +13653,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Passthrough - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_eo.ts b/res/translations/mixxx_eo.ts index dc05c89e0bc..2700b4dbc55 100644 --- a/res/translations/mixxx_eo.ts +++ b/res/translations/mixxx_eo.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates - + Remove Crate as Track Source - + Auto DJ Aŭtomata DĴ - + Add Crate as Track Source @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Oni ne povis ŝargi la kanton. @@ -640,12 +640,12 @@ - + Mixxx Library Biblioteko de Mixxx - + Could not load the following file because it is in use by Mixxx or another application. Ne povis ŝarĝi la sekvan dosieron ĉar ĝi estas uzata de Miksss aŭ de alia aplikaĵo. @@ -3361,37 +3361,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -7284,123 +7284,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Jaro - + Title Titolo - - + + Artist Artisto - - + + Album Albumo - + Album Artist Albuma Artisto - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7895,51 +7895,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8098,27 +8088,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8384,39 +8374,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8531,58 +8521,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13550,20 +13540,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_es.qm b/res/translations/mixxx_es.qm index cca8e16118e9aa83096f299ac060f48017600bdc..8715a928bcb9bd4dcf7f06c1787386e80b5a22d1 100644 GIT binary patch delta 75236 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 delta 19762 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 diff --git a/res/translations/mixxx_es.ts b/res/translations/mixxx_es.ts index 6fc1226148b..944a989f4be 100644 --- a/res/translations/mixxx_es.ts +++ b/res/translations/mixxx_es.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Cajones - + Remove Crate as Track Source Quitar cajón como fuente de pistas - + Auto DJ Auto DJ - + Add Crate as Track Source Usar cajón como fuente de pistas @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. No se ha podido cargar la pista. @@ -642,12 +642,12 @@ Fecha creación - + Mixxx Library Biblioteca de Mixxx - + Could not load the following file because it is in use by Mixxx or another application. No se ha podido cargar el siguiente archivo debido a que Mixxx u otra aplicación lo esta usando. @@ -665,17 +665,17 @@ The file '%1' could not be found. - + The file '%1' could not be found. The file '%1' could not be loaded. - + The file '%1' could not be loaded. The file '%1' is empty and could not be loaded. - + The file '%1' is empty and could not be loaded. @@ -709,17 +709,17 @@ Assign to Hotcue Number - + Assign to Hotcue Number Edited - + Edited Do you really want to remove the palette permanently? - + Do you really want to remove the palette permanently? @@ -732,7 +732,7 @@ %1 %2 - + %1 %2 @@ -2029,27 +2029,27 @@ Microphone & Auxiliary Show/Hide - + Microphone & Auxiliary Show/Hide Show/hide the microphone & auxiliary section - + Show/hide the microphone & auxiliary section 4 Effect Units Show/Hide - + 4 Effect Units Show/Hide Switches between showing 2 and 4 effect units - + Switches between showing 2 and 4 effect units Mixer Show/Hide - + Mixer Show/Hide @@ -2059,12 +2059,12 @@ Cover Art Show/Hide (Library) - + Cover Art Show/Hide (Library) Show/hide cover art in the library - + Show/hide cover art in the library @@ -2211,47 +2211,47 @@ Effect Unit %1 - + Effect Unit %1 Crossfader / Orientation - + Crossfader / Orientation Main Output - + Main Output Main Output Gain - + Main Output Gain Main Output gain - + Main Output gain Main Output Balance - + Main Output Balance Main Output balance - + Main Output balance Main Output Delay - + Main Output Delay Main Output delay - + Main Output delay @@ -2267,12 +2267,12 @@ BPM / Beatgrid - + BPM / Beatgrid Sync / Sync Lock - + Sync / Sync Lock @@ -2282,47 +2282,47 @@ Pitch (Musical Key) - + Pitch (Musical Key) Increase Pitch - + Increase Pitch Increases the pitch by one semitone - + Increases the pitch by one semitone Increase Pitch (Fine) - + Increase Pitch (Fine) Increases the pitch by 10 cents - + Increases the pitch by 10 cents Decrease Pitch - + Decrease Pitch Decreases the pitch by one semitone - + Decreases the pitch by one semitone Decrease Pitch (Fine) - + Decrease Pitch (Fine) Decreases the pitch by 10 cents - + Decreases the pitch by 10 cents @@ -2337,128 +2337,128 @@ Shift cue points earlier - + Shift cue points earlier Shift cue points 10 milliseconds earlier - + Shift cue points 10 milliseconds earlier Shift cue points earlier (fine) - + Shift cue points earlier (fine) Shift cue points 1 millisecond earlier - + Shift cue points 1 millisecond earlier Shift cue points later - + Shift cue points later Shift cue points 10 milliseconds later - + Shift cue points 10 milliseconds later Shift cue points later (fine) - + Shift cue points later (fine) Shift cue points 1 millisecond later - + Shift cue points 1 millisecond later Hotcues %1-%2 - + Hotcues %1-%2 Intro / Outro Markers - + Intro / Outro Markers Intro Start Marker - + Intro Start Marker Intro End Marker - + Intro End Marker Outro Start Marker - + Outro Start Marker Outro End Marker - + Outro End Marker intro start marker - + intro start marker intro end marker - + intro end marker outro start marker - + outro start marker outro end marker - + outro end marker Activate %1 [intro/outro marker - + Activate %1 Jump to or set the %1 [intro/outro marker - + Jump to or set the %1 Set %1 [intro/outro marker - + Set %1 Set or jump to the %1 [intro/outro marker - + Set or jump to the %1 Clear %1 [intro/outro marker - + Clear %1 Clear the %1 [intro/outro marker - + Clear the %1 @@ -2483,12 +2483,12 @@ Loop Beats - + Loop Beats Loop Roll Beats - + Loop Roll Beats @@ -2563,27 +2563,27 @@ Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Forward Beat Jump / Loop Move Backward - + Beat Jump / Loop Move Backward Loop Move Forward - + Loop Move Forward Loop Move Backward - + Loop Move Backward Navigation - + Navigation @@ -2718,7 +2718,7 @@ Load Track and Play - + Load Track and Play @@ -2794,7 +2794,7 @@ Effect Unit Assignment - + Effect Unit Assignment @@ -2830,7 +2830,7 @@ Button Parameter Value - + Button Parameter Value @@ -2935,12 +2935,12 @@ Cover Art Show/Hide (Decks) - + Cover Art Show/Hide (Decks) Show/hide cover art in the main decks - + Show/hide cover art in the main decks @@ -2955,22 +2955,22 @@ Vinyl Spinners Show/Hide (All Decks) - + Vinyl Spinners Show/Hide (All Decks) Show/Hide all spinnies - + Show/Hide all spinnies Toggle Waveforms - + Toggle Waveforms Show/hide the scrolling waveforms. - + Show/hide the scrolling waveforms. @@ -3000,27 +3000,27 @@ Star Rating Up - + Star Rating Up Increase the track rating by one star - + Increase the track rating by one star Star Rating Down - + Star Rating Down Decrease the track rating by one star - + Decrease the track rating by one star Start/Stop Live Broadcasting - + Start/Stop Live Broadcasting @@ -3030,13 +3030,13 @@ Start/stop recording your mix. - + Start/stop recording your mix. Samplers - + Samplers @@ -3045,22 +3045,22 @@ The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. You can ignore this error for this session but you may experience erratic behavior. - + You can ignore this error for this session but you may experience erratic behavior. Controller Mapping Error - + Controller Mapping Error The mapping for your controller "%1" is not working properly. - + The mapping for your controller "%1" is not working properly. @@ -3070,22 +3070,22 @@ Controller Mapping File Problem - + Controller Mapping File Problem The mapping for controller "%1" cannot be opened. - + The mapping for controller "%1" cannot be opened. File: - + File: Error: - + Error: @@ -3363,39 +3363,39 @@ DlgAbout - + Mixxx %1.%2 Development Team - + Mixxx %1.%2 Development Team - + With contributions from: Con colaboradores de: - + And special thanks to: Y agradecimientos especiales a: - + Past Developers Antiguos desarrolladores - + Past Contributors Antiguos colaboradores - + Official Website - + Official Website - + Donate - + Donate @@ -3420,12 +3420,12 @@ Git Version: - + Git Version: Platform: - + Platform: @@ -3495,12 +3495,12 @@ Analyzing %1% %2/%3 - + Analyzing %1% %2/%3 Analyzing %1/%2 - + Analyzing %1/%2 @@ -3513,57 +3513,67 @@ Random - + Random Fade - + Fade Enable Auto DJ Shortcut: Shift+F12 - + Enable Auto DJ + +Shortcut: Shift+F12 Disable Auto DJ Shortcut: Shift+F12 - + Disable Auto DJ + +Shortcut: Shift+F12 Trigger the transition to the next track Shortcut: Shift+F11 - + Trigger the transition to the next track + +Shortcut: Shift+F11 Skip the next track in the Auto DJ queue Shortcut: Shift+F10 - + Skip the next track in the Auto DJ queue + +Shortcut: Shift+F10 Shuffle the content of the Auto DJ queue Shortcut: Shift+F9 - + Shuffle the content of the Auto DJ queue + +Shortcut: Shift+F9 Repeat the playlist - + Repeat the playlist Determines the duration of the transition - + Determines the duration of the transition @@ -3573,22 +3583,22 @@ Shortcut: Shift+F9 Full Intro + Outro - + Full Intro + Outro Fade At Outro Start - + Fade At Outro Start Full Track - + Full Track Skip Silence - + Skip Silence @@ -3614,7 +3624,28 @@ Skip Silence: Play the whole track except for silence at the beginning and end. Begin crossfading from the selected number of seconds before the last sound. - + Auto DJ Fade Modes + +Full Intro + Outro: +Play the full intro and outro. Use the intro or outro length as the +crossfade time, whichever is shorter. If no intro or outro are marked, +use the selected crossfade time. + +Fade At Outro Start: +Start crossfading at the outro start. If the outro is longer than the +intro, cut off the end of the outro. Use the intro or outro length as +the crossfade time, whichever is shorter. If no intro or outro are +marked, use the selected crossfade time. + +Full Track: +Play the whole track. Begin crossfading from the selected number of +seconds before the end of the track. A negative crossfade time adds +silence between tracks. + +Skip Silence: +Play the whole track except for silence at the beginning and end. +Begin crossfading from the selected number of seconds before the +last sound. @@ -3634,12 +3665,12 @@ last sound. Enable - + Enable Disable - + Disable @@ -3692,26 +3723,31 @@ Si no hay fuentes de pistas configuradas, se añade una pista de la biblioteca.< When beat detection is enabled, Mixxx detects the beats per minute and beats of your tracks, automatically shows a beat-grid for them, and allows you to synchronize tracks using their beat information. - + When beat detection is enabled, Mixxx detects the beats per minute and beats of your tracks, +automatically shows a beat-grid for them, and allows you to synchronize tracks using their beat information. Enable fast beat detection. If activated Mixxx only analyzes the first minute of a track for beat information. This can speed up beat detection on slower computers but may result in lower quality beatgrids. - + Enable fast beat detection. +If activated Mixxx only analyzes the first minute of a track for beat information. +This can speed up beat detection on slower computers but may result in lower quality beatgrids. Converts beats detected by the analyzer into a fixed-tempo beatgrid. Use this setting if your tracks have a constant tempo (e.g. most electronic music). Often results in higher quality beatgrids, but will not do well on tracks that have tempo shifts. - + Converts beats detected by the analyzer into a fixed-tempo beatgrid. +Use this setting if your tracks have a constant tempo (e.g. most electronic music). +Often results in higher quality beatgrids, but will not do well on tracks that have tempo shifts. Re-analyze beatgrids imported from other DJ software - + Re-analyze beatgrids imported from other DJ software @@ -3899,7 +3935,10 @@ Often results in higher quality beatgrids, but will not do well on tracks that h This could be because you are either using an old skin and this control is no longer supported, or you clicked a control that provides visual feedback and can only be mapped to outputs like LEDs via scripts. You tried to learn: %1,%2 - + The control you clicked in Mixxx is not learnable. +This could be because you are either using an old skin and this control is no longer supported, or you clicked a control that provides visual feedback and can only be mapped to outputs like LEDs via scripts. + +You tried to learn: %1,%2 @@ -4036,7 +4075,7 @@ You tried to learn: %1,%2 Re-queue Tracks - + Re-queue Tracks @@ -4067,7 +4106,7 @@ You tried to learn: %1,%2 Add Random Tracks - + Add Random Tracks @@ -4120,22 +4159,22 @@ You tried to learn: %1,%2 Opus - + Opus AAC - + AAC HE-AAC - + HE-AAC HE-AACv2 - + HE-AACv2 @@ -4484,7 +4523,7 @@ No pueden haber dos fuentes de emisión hacia el mismo servidor que usen el mism By hotcue number - + By hotcue number @@ -4497,38 +4536,38 @@ No pueden haber dos fuentes de emisión hacia el mismo servidor que usen el mism Color Preferences - + Color Preferences Colors - + Colors Edit… - + Edit… Track palette - + Track palette Hotcue palette - + Hotcue palette Hotcue default color - + Hotcue default color Replace… - + Replace… @@ -4573,77 +4612,77 @@ Apply settings and continue? No Preset - + No Preset Mapping has been edited - + Mapping has been edited Always overwrite during this session - + Always overwrite during this session Save As - + Save As Overwrite - + Overwrite Save user mapping - + Save user mapping Enter the name for saving the mapping to the user folder. - + Enter the name for saving the mapping to the user folder. Saving mapping failed - + Saving mapping failed A mapping cannot have a blank name and may not contain special characters. - + A mapping cannot have a blank name and may not contain special characters. A mapping file with that name already exists. - + A mapping file with that name already exists. missing - + missing built-in - + built-in Do you want to save the changes? - + Do you want to save the changes? Mapping already exists. - + Mapping already exists. <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? @@ -4733,12 +4772,12 @@ Apply settings and continue? Load Mapping: - + Load Mapping: Mapping Info - + Mapping Info @@ -4758,7 +4797,7 @@ Apply settings and continue? Mapping Files: - + Mapping Files: @@ -4777,22 +4816,22 @@ Apply settings and continue? Mixxx uses "mappings" to connect messages from your controller to controls in Mixxx. If you do not see a mapping for your controller in the "Load Mapping" menu when you click on your controller on the left sidebar, you may be able to download one online from the %1. Place the XML (.xml) and Javascript (.js) file(s) in the "User Mapping Folder" then restart Mixxx. If you download a mapping in a ZIP file, extract the XML and Javascript file(s) from the ZIP file to your "User Mapping Folder" then restart Mixxx. - + Mixxx uses "mappings" to connect messages from your controller to controls in Mixxx. If you do not see a mapping for your controller in the "Load Mapping" menu when you click on your controller on the left sidebar, you may be able to download one online from the %1. Place the XML (.xml) and Javascript (.js) file(s) in the "User Mapping Folder" then restart Mixxx. If you download a mapping in a ZIP file, extract the XML and Javascript file(s) from the ZIP file to your "User Mapping Folder" then restart Mixxx. Mixxx DJ Hardware Guide - + Mixxx DJ Hardware Guide MIDI Mapping File Format - + MIDI Mapping File Format MIDI Scripting with Javascript - + MIDI Scripting with Javascript @@ -4825,12 +4864,12 @@ Apply settings and continue? Mappings - + Mappings Open User Mapping Folder - + Open User Mapping Folder @@ -5009,47 +5048,47 @@ Apply settings and continue? mm:ss%1zz - Traditional - + mm:ss%1zz - Traditional mm:ss - Traditional (Coarse) - + mm:ss - Traditional (Coarse) s%1zz - Seconds - + s%1zz - Seconds sss%1zz - Seconds (Long) - + sss%1zz - Seconds (Long) s%1sss%2zz - Kiloseconds - + s%1sss%2zz - Kiloseconds Intro start - + Intro start Main cue - + Main cue First sound (skip silence) - + First sound (skip silence) Beginning of track - + Beginning of track @@ -5183,12 +5222,12 @@ Modo CUP: Time Format - + Time Format Intro start - + Intro start @@ -5197,33 +5236,38 @@ it will place it at the main cue point if the main cue point has been set previo This may be helpful for upgrading to Mixxx 2.3 from earlier versions. If this option is disabled, the intro start point is automatically placed at the first sound. - + When the analyzer places the intro start point automatically, +it will place it at the main cue point if the main cue point has been set previously. +This may be helpful for upgrading to Mixxx 2.3 from earlier versions. + +If this option is disabled, the intro start point is automatically placed at the first sound. Set intro start to main cue when analyzing tracks - + Set intro start to main cue when analyzing tracks Track load point - + Track load point Clone deck - + Clone deck Create a playing clone of the first playing deck by double-tapping a Load button on a controller or keyboard. You can always drag-and-drop tracks on screen to clone a deck. - + Create a playing clone of the first playing deck by double-tapping a Load button on a controller or keyboard. +You can always drag-and-drop tracks on screen to clone a deck. Double-press Load button to clone playing track - + Double-press Load button to clone playing track @@ -5499,7 +5543,7 @@ You can always drag-and-drop tracks on screen to clone a deck. Effect load behavior - + Effect load behavior @@ -5596,7 +5640,8 @@ You can always drag-and-drop tracks on screen to clone a deck. When key detection is enabled, Mixxx detects the musical key of your tracks and allows you to pitch adjust them for harmonic mixing. - + When key detection is enabled, Mixxx detects the musical key of your tracks +and allows you to pitch adjust them for harmonic mixing. @@ -5641,7 +5686,7 @@ and allows you to pitch adjust them for harmonic mixing. Lancelot/Traditional - + Lancelot/Traditional @@ -5651,7 +5696,7 @@ and allows you to pitch adjust them for harmonic mixing. OpenKey/Traditional - + OpenKey/Traditional @@ -5916,7 +5961,7 @@ and allows you to pitch adjust them for harmonic mixing. Write Serato Metadata to files (experimental) - + Write Serato Metadata to files (experimental) @@ -5931,22 +5976,22 @@ and allows you to pitch adjust them for harmonic mixing. Settings Folder - + Settings Folder The Mixxx settings folder contains the library database, various configuration files, log files, track analysis data, as well as custom controller mappings. - + The Mixxx settings folder contains the library database, various configuration files, log files, track analysis data, as well as custom controller mappings. Edit those files only if you know what you are doing and only while Mixxx is not running. - + Edit those files only if you know what you are doing and only while Mixxx is not running. Open Mixxx Settings Folder - + Open Mixxx Settings Folder @@ -6011,28 +6056,28 @@ and allows you to pitch adjust them for harmonic mixing. Automatically write modified track metadata from the library into file tags - + Automatically write modified track metadata from the library into file tags Track Double-Click Action Sets default action when double-clicking a track in the library. - + Track Double-Click Action Add track to Auto DJ queue (bottom) - + Add track to Auto DJ queue (bottom) Add track to Auto DJ queue (top) - + Add track to Auto DJ queue (top) Ignore - + Ignore @@ -6052,12 +6097,12 @@ and allows you to pitch adjust them for harmonic mixing. Show Rekordbox Library - + Show Rekordbox Library Show Serato Library - + Show Serato Library @@ -6244,7 +6289,7 @@ and allows you to pitch adjust them for harmonic mixing. All settings take effect on next track load. Currently loaded tracks are not affected. For an explanation of these settings, see the %1 - + All settings take effect on next track load. Currently loaded tracks are not affected. For an explanation of these settings, see the %1 @@ -6258,27 +6303,27 @@ and allows you to pitch adjust them for harmonic mixing. Recordings directory invalid - + Recordings directory invalid Recordings directory must be set to an existing directory. - + Recordings directory must be set to an existing directory. Recordings directory must be set to a directory. - + Recordings directory must be set to a directory. Recordings directory not writable - + Recordings directory not writable You do not have write access to %1. Choose a recordings directory you have write access to. - + You do not have write access to %1. Choose a recordings directory you have write access to. @@ -6337,12 +6382,12 @@ and allows you to pitch adjust them for harmonic mixing. Recording Files - + Recording Files Directory: - + Directory: @@ -6550,17 +6595,17 @@ Este volumen de referencia es aproximado y asume que la ganancia y el nivel de s To enable Realtime scheduling (currently disabled), see the %1. - + To enable Realtime scheduling (currently disabled), see the %1. The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. Mixxx DJ Hardware Guide - + Mixxx DJ Hardware Guide @@ -6805,12 +6850,12 @@ Este volumen de referencia es aproximado y asume que la ganancia y el nivel de s Vinyl Type - + Vinyl Type Lead-In - + Lead-In @@ -6825,12 +6870,12 @@ Este volumen de referencia es aproximado y asume que la ganancia y el nivel de s Deck 3 - + Deck 3 Deck 4 - + Deck 4 @@ -7129,7 +7174,7 @@ Elija entre los distintos tipos de visualización para la forma de onda, que se Colors - + Colors @@ -7211,7 +7256,7 @@ Elija entre los distintos tipos de visualización para la forma de onda, que se Recording to file: - + Recording to file: @@ -7221,7 +7266,7 @@ Elija entre los distintos tipos de visualización para la forma de onda, que se %1 MiB written in %2 - + %1 MiB written in %2 @@ -7229,74 +7274,74 @@ Elija entre los distintos tipos de visualización para la forma de onda, que se Replace Hotcue Color - + Replace Hotcue Color Replace cue color if … - + Replace cue color if … Hotcue index - + Hotcue index is - + is is not - + is not Current cue color - + Current cue color If you don't specify any conditions, the colors of all cues in the library will be replaced. - + If you don't specify any conditions, the colors of all cues in the library will be replaced. … by: - + … by: New cue color - + New cue color Selecting database rows... - + Selecting database rows... No colors changed! - + No colors changed! No cues matched the specified criteria. - + No cues matched the specified criteria. Confirm Color Replacement - + Confirm Color Replacement The colors of %1 cues in %2 tracks will be replaced. This change cannot be undone! Are you sure? - + The colors of %1 cues in %2 tracks will be replaced. This change cannot be undone! Are you sure? @@ -7312,123 +7357,123 @@ Elija entre los distintos tipos de visualización para la forma de onda, que se Seleccione la mejor coincidencia posible - - + + Track Pista - - + + Year Año - + Title Título - - + + Artist Artista - - + + Album Álbum - + Album Artist Artista del álbum - + Fetching track data from the MusicBrainz database Obteniendo datos de la pista desde la base de datos MusicBrainz - + Mixxx could not find this track in the MusicBrainz database. Mixxx no pudo encontrar esta pista en la base de datos de MusicBrainz. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. Obtener la clave de API - + Submit Submits audio fingerprints to the MusicBrainz database. Enviar - + New Column Nueva columna - + New Item Nuevo Item - + &Previous &Previo - + &Next &Siguiente - + &Apply &Aplicar - + &Close &Cerrar - + Status: %1 Estado: %1 - + HTTP Status: %1 Estado HTTP: %1 - + Code: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx no se puede conectar a %1 por una razón desconocida. - + Mixxx can't connect to %1. Mixxx no se puede conectar a %1. - + Original tags Etiquetas originales - + Suggested tags Etiquetas sugeridas @@ -7628,12 +7673,12 @@ Elija entre los distintos tipos de visualización para la forma de onda, que se Re-Import Metadata from file - + Re-Import Metadata from file Date added: - + Date added: @@ -7650,7 +7695,9 @@ Elija entre los distintos tipos de visualización para la forma de onda, que se Converts beats detected by the analyzer into a fixed-tempo beatgrid. Use this setting if your tracks have a constant tempo (e.g. most electronic music). Often results in higher quality beatgrids, but will not do well on tracks that have tempo shifts. - + Converts beats detected by the analyzer into a fixed-tempo beatgrid. +Use this setting if your tracks have a constant tempo (e.g. most electronic music). +Often results in higher quality beatgrids, but will not do well on tracks that have tempo shifts. @@ -7923,51 +7970,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - Ratón HID genérico - - - Generic HID Joystick Joystick HID genérico - + Generic HID Gamepad Gamepad HID genérico - - Generic HID Keyboard - Teclado HID genérico - - - + Generic HID Multiaxis Controller Controlador multieje HID genérico - + Unknown HID Desktop Device Dispositivo de escritorio HID desconocido - + HID Infrared Control Control de infrarrojos HID - + Unknown Apple HID Device Dispositivo HID de Apple desconocido - + HID Unknown Device Dispositivo HID desconocido - + HID Interface Number Número de interfaz HID @@ -8127,27 +8164,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Analizador de biblioteca - + It's taking Mixxx a minute to scan your music library, please wait... Mixxx necesita unos minutos para escanear la biblioteca de música. Por favor, espere... - + Cancel Cancelar - + Scanning: Analizando: - + Scanning cover art (safe to cancel) Escaneando las carátulas (se puede cancelar sin problemas) @@ -8175,7 +8212,7 @@ Do you really want to overwrite it? One or more MixxxControls specified in the outputs section of the loaded mapping were invalid. - + One or more MixxxControls specified in the outputs section of the loaded mapping were invalid. @@ -8192,7 +8229,7 @@ Do you really want to overwrite it? * Make sure the MixxxControls in question actually exist. Visit the manual for a complete list: - + * Make sure the MixxxControls in question actually exist. Visit the manual for a complete list: @@ -8400,13 +8437,15 @@ Por favor, seleccione un dispositivo de entrada en las preferencias de hardware There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this microphone. +Do you want to select an input device? There is no input device selected for this auxiliary. Do you want to select an input device? - + There is no input device selected for this auxiliary. +Do you want to select an input device? @@ -8419,39 +8458,39 @@ Do you want to select an input device? No se ha podido cargar la apariencia seleccionada. - + OpenGL Direct Rendering OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. El renderizado directo no está habilitado en su máquina. <br><br>Esto significa que las visualizaciones de forma de onda serán muy <br>lentas y pueden exigir mucho a su CPU<b>. Actualice su <br>configuración para habilitar la representación directa o desactiv<br> las visualizaciones de forma de onda en las preferencias de Mixxx seleccionando <br>"Vacío" como la pantalla de forma de onda en la sección 'Interfaz'. - - - + + + Confirm Exit Confirmar salida - + A deck is currently playing. Exit Mixxx? Un plato está reproduciendo. ¿Salir de Mixxx? - + A sampler is currently playing. Exit Mixxx? Un reproductor de muestras está en reproducción. ¿Salir de Mixxx? - + The preferences window is still open. La ventana de preferencias todavía está abierta. - + Discard any changes and exit Mixxx? ¿Descartar cambios y salir de Mixxx? @@ -8568,59 +8607,59 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx Actualizando Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? Mixxx ha añadido soporte para mostrar carátulas. ¿Desea escanear la biblioteca ahora para encontrar las carátulas? - + Scan Escanear - + Later Después - + Upgrading Mixxx from v1.9.x/1.10.x. Actualizar Mixxx desde v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. Mixxx ahora tiene un nuevo y mejorado analizador de ritmo. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. Cuando cargas pistas, Mixxx puede reanalizarlas y generar cuadrículas de tempo nuevas y más precisas. Esto hará que la sincronización y los Loops sean más fiables. - + This does not affect saved cues, hotcues, playlists, or crates. Esto no afecta a los Cues, Hotcues, listas de reproducción o cajas guardados/as. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. Si no quieres que Mixxx reanalize tus pistas, elige "Mantener las cuadrículas de tempo actuales". Puedes cambiar esta configuración en cualquier momento desde la sección "Detección de Beats" de la ventana Preferencias. - + Keep Current Beatgrids Mantener las cuadrículas de tempo actuales - + Generate New Beatgrids Generar nuevas cuadrículas de tempo @@ -8802,7 +8841,7 @@ Do you want to scan your library for cover files now? Using Opus at samplerates other than 48 kHz is not supported by the Opus encoder. Please use 48000 Hz in "Sound Hardware" preferences or switch to a different encoding. - + Using Opus at samplerates other than 48 kHz is not supported by the Opus encoder. Please use 48000 Hz in "Sound Hardware" preferences or switch to a different encoding. @@ -8839,7 +8878,7 @@ Para abortar esta acción, pulse Cancelar en el selector de archivos. Upgrading old Mixxx settings - + Upgrading old Mixxx settings @@ -8848,7 +8887,11 @@ Para abortar esta acción, pulse Cancelar en el selector de archivos. - + Due to macOS sandboxing, Mixxx needs your permission to access your music library and settings from Mixxx versions before 2.3.0. After clicking OK, you will see a file selection dialog. + +To allow Mixxx to use your old library and settings, click the Open button in the file selection dialog. Mixxx will then move your old settings into the sandbox. This only needs to be done once. + +If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx will create a new music library and use default settings. @@ -9906,75 +9949,75 @@ Todo a la derecha: final del período Parameters of %1 - + Parameters of %1 Queen Mary University London - + Queen Mary University London Queen Mary Tempo and Beat Tracker - + Queen Mary Tempo and Beat Tracker Queen Mary Key Detector - + Queen Mary Key Detector SoundTouch BPM Detector (Legacy) - + SoundTouch BPM Detector (Legacy) Constrained VBR - + Constrained VBR CBR - + CBR Full VBR (bitrate ignored) - + Full VBR (bitrate ignored) <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. MP3 encoding is not supported. Lame could not be initialized - + MP3 encoding is not supported. Lame could not be initialized OGG recording is not supported. OGG/Vorbis library could not be initialized. - + OGG recording is not supported. OGG/Vorbis library could not be initialized. encoder failure - + encoder failure Failed to apply the selected settings. - + Failed to apply the selected settings. @@ -10092,7 +10135,7 @@ Todo a la derecha: final del período Rekordbox - + Rekordbox @@ -10102,42 +10145,42 @@ Todo a la derecha: final del período Folders - + Folders Hot cues - + Hot cues Loops (only the first loop is currently usable in Mixxx) - + Loops (only the first loop is currently usable in Mixxx) Check for attached Rekordbox USB / SD devices (refresh) - + Check for attached Rekordbox USB / SD devices (refresh) Beatgrids - + Beatgrids Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: Memory cues - + Memory cues (loading) Rekordbox - + (loading) Rekordbox @@ -10169,7 +10212,7 @@ Todo a la derecha: final del período Mixxx Sampler Banks (*%1) - + Mixxx Sampler Banks (*%1) @@ -10199,12 +10242,12 @@ Todo a la derecha: final del período Serato - + Serato Reads the following from the Serato Music directory and removable devices: - + Reads the following from the Serato Music directory and removable devices: @@ -10219,12 +10262,12 @@ Todo a la derecha: final del período Check for Serato databases (refresh) - + Check for Serato databases (refresh) (loading) Serato - + (loading) Serato @@ -10372,22 +10415,22 @@ Todo a la derecha: final del período Unknown stream encoding format! - + Unknown stream encoding format! Use a libshout version with %1 enabled - + Use a libshout version with %1 enabled Error setting stream encoding format! - + Error setting stream encoding format! Broadcasting at 96 kHz with Ogg Vorbis is not currently supported. Please try a different sample rate or switch to a different encoding. - + Broadcasting at 96 kHz with Ogg Vorbis is not currently supported. Please try a different sample rate or switch to a different encoding. @@ -10397,7 +10440,7 @@ Todo a la derecha: final del período Unsupported sample rate - + Unsupported sample rate @@ -10412,7 +10455,7 @@ Todo a la derecha: final del período Error: Shoutcast only supports MP3 and AAC encoders - + Error: Shoutcast only supports MP3 and AAC encoders @@ -10565,12 +10608,12 @@ Todo a la derecha: final del período Identifying track through Acoustid - + Identifying track through Acoustid Retrieving metadata from MusicBrainz - + Retrieving metadata from MusicBrainz @@ -10593,7 +10636,7 @@ Todo a la derecha: final del período Double-click - + Double-click @@ -10603,7 +10646,7 @@ Todo a la derecha: final del período Shift-key - + Shift-key @@ -10684,12 +10727,12 @@ Todo a la derecha: final del período Big Spinny/Cover Art - + Big Spinny/Cover Art Show a big version of the Spinny or track cover art if enabled. - + Show a big version of the Spinny or track cover art if enabled. @@ -10744,22 +10787,22 @@ Todo a la derecha: final del período Auxiliary Volume Meter - + Auxiliary Volume Meter Shows the current auxiliary volume. - + Shows the current auxiliary volume. Auxiliary Peak Indicator - + Auxiliary Peak Indicator Indicates when the signal on the auxiliary is clipping, - + Indicates when the signal on the auxiliary is clipping, @@ -10926,7 +10969,7 @@ Todo a la derecha: final del período Show/hide Cover Art of the selected track in the library. - + Show/hide Cover Art of the selected track in the library. @@ -10941,12 +10984,12 @@ Todo a la derecha: final del período Show/hide the scrolling waveforms - + Show/hide the scrolling waveforms Show/hide the beatgrid controls section - + Show/hide the beatgrid controls section @@ -10971,7 +11014,7 @@ Todo a la derecha: final del período Hide all skin sections except the decks to have more screen space for the track library. - + Hide all skin sections except the decks to have more screen space for the track library. @@ -10986,12 +11029,12 @@ Todo a la derecha: final del período Volume Meters - + Volume Meters Show/hide volume meters for channels and master output. - + Show/hide volume meters for channels and master output. @@ -11016,12 +11059,12 @@ Todo a la derecha: final del período Auxiliary Gain - + Auxiliary Gain Adjusts the pre-fader auxiliary gain. - + Adjusts the pre-fader auxiliary gain. @@ -11283,7 +11326,7 @@ Todo a la derecha: final del período (while previewing) - + (while previewing) @@ -11303,7 +11346,7 @@ Todo a la derecha: final del período Is latching the playing state. - + Is latching the playing state. @@ -11323,17 +11366,17 @@ Todo a la derecha: final del período Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. - + Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. Master enable - + Master enable Hold or short click for latching to mix this input into the master output. - + Hold or short click for latching to mix this input into the master output. @@ -11343,27 +11386,27 @@ Todo a la derecha: final del período Tempo Range Display - + Tempo Range Display Displays the current range of the tempo slider. - + Displays the current range of the tempo slider. Delete selected hotcue. - + Delete selected hotcue. Opens separate artwork viewer. - + Opens separate artwork viewer. Select and configure a hardware device for this input - + Select and configure a hardware device for this input @@ -11373,59 +11416,59 @@ Todo a la derecha: final del período Auto: Automatically reduce music volume when microphone volume rises above threshold. - + Auto: Automatically reduce music volume when microphone volume rises above threshold. Adjust the amount the music volume is reduced with the Strength knob. - + Adjust the amount the music volume is reduced with the Strength knob. Auto: Sets how much to reduce the music volume when the volume of active microphones rises above threshold. - + Auto: Sets how much to reduce the music volume when the volume of active microphones rises above threshold. Manual: Sets how much to reduce the music volume, when talkover is activated regardless of volume of microphone inputs. - + Manual: Sets how much to reduce the music volume, when talkover is activated regardless of volume of microphone inputs. Shift cues earlier - + Shift cues earlier Shift cues imported from Serato or Rekordbox if they are slightly off time. - + Shift cues imported from Serato or Rekordbox if they are slightly off time. Left click: shift 10 milliseconds earlier - + Left click: shift 10 milliseconds earlier Right click: shift 1 millisecond earlier - + Right click: shift 1 millisecond earlier Shift cues later - + Shift cues later Left click: shift 10 milliseconds later - + Left click: shift 10 milliseconds later Right click: shift 1 millisecond later - + Right click: shift 1 millisecond later @@ -11435,12 +11478,12 @@ Todo a la derecha: final del período Auto DJ is active - + Auto DJ is active Hot Cue - Track will seek to nearest previous hotcue point. - + Hot Cue - Track will seek to nearest previous hotcue point. @@ -11600,17 +11643,17 @@ Todo a la derecha: final del período Hint: Change the time format in Preferences -> Decks. - + Hint: Change the time format in Preferences -> Decks. Show/hide intro & outro markers and associated buttons. - + Show/hide intro & outro markers and associated buttons. Intro Start Marker - + Intro Start Marker @@ -11618,7 +11661,7 @@ Todo a la derecha: final del período If marker is set, jumps to the marker. - + If marker is set, jumps to the marker. @@ -11626,7 +11669,7 @@ Todo a la derecha: final del período If marker is not set, sets the marker to the current play position. - + If marker is not set, sets the marker to the current play position. @@ -11634,22 +11677,22 @@ Todo a la derecha: final del período If marker is set, clears the marker. - + If marker is set, clears the marker. Intro End Marker - + Intro End Marker Outro Start Marker - + Outro Start Marker Outro End Marker - + Outro End Marker @@ -12185,27 +12228,27 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Drag this item to other decks/samplers, to crates and playlist or to external file manager. - + Drag this item to other decks/samplers, to crates and playlist or to external file manager. Shows information about the track currently loaded in this deck. - + Shows information about the track currently loaded in this deck. Left click to jump around in the track. - + Left click to jump around in the track. Right click hotcues to edit their labels and colors. - + Right click hotcues to edit their labels and colors. Right click anywhere else to show the time at that point. - + Right click anywhere else to show the time at that point. @@ -12366,12 +12409,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Opens the track properties editor - + Opens the track properties editor Opens the track context menu. - + Opens the track context menu. @@ -12493,7 +12536,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Opens a menu to clear hotcues or edit their labels and colors. - + Opens a menu to clear hotcues or edit their labels and colors. @@ -13092,12 +13135,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. No color - + No color Custom color - + Custom color @@ -13136,32 +13179,32 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Cue number - + Cue number Cue position - + Cue position Edit cue label - + Edit cue label Label... - + Label... Delete this cue - + Delete this cue Hotcue #%1 - + Hotcue #%1 @@ -13620,23 +13663,23 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Paso - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - + Ready to play, analyzing... - - + + Loading track... Text on waveform overview when file is cached from source - + Loading track... - + Finalizing... Text on waveform overview during finalizing of waveform analysis - + Finalizing... @@ -13673,7 +13716,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Clear the search bar input field - + Clear the search bar input field @@ -13683,12 +13726,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Use operators like bpm:115-128, artist:BooFar, -year:1990 - + Use operators like bpm:115-128, artist:BooFar, -year:1990 For more information see User Manual > Mixxx Library - + For more information see User Manual > Mixxx Library @@ -13760,7 +13803,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Update external collections - + Update external collections @@ -13770,12 +13813,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Adjust BPM - + Adjust BPM Select Color - + Select Color @@ -13886,12 +13929,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Intro - + Intro Outro - + Outro @@ -13961,7 +14004,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Reset BPM - + Reset BPM @@ -13976,12 +14019,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Importing metadata of %n track(s) from file tags - + Importing metadata of %n track(s) from file tagsImporting metadata of %n track(s) from file tags Marking metadata of %n track(s) to be exported into file tags - + Marking metadata of %n track(s) to be exported into file tagsMarking metadata of %n track(s) to be exported into file tags @@ -14024,97 +14067,97 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Add to New Crate - + Add to New Crate Scaling BPM of %n track(s) - + Scaling BPM of %n track(s)Scaling BPM of %n track(s) Locking BPM of %n track(s) - + Locking BPM of %n track(s)Locking BPM of %n track(s) Unlocking BPM of %n track(s) - + Unlocking BPM of %n track(s)Unlocking BPM of %n track(s) Setting color of %n track(s) - + Setting color of %n track(s)Setting color of %n track(s) Resetting play count of %n track(s) - + Resetting play count of %n track(s)Resetting play count of %n track(s) Resetting beats of %n track(s) - + Resetting beats of %n track(s)Resetting beats of %n track(s) Clearing rating of %n track(s) - + Clearing rating of %n track(s)Clearing rating of %n track(s) Removing main cue from %n track(s) - + Removing main cue from %n track(s)Removing main cue from %n track(s) Removing outro cue from %n track(s) - + Removing outro cue from %n track(s)Removing outro cue from %n track(s) Removing intro cue from %n track(s) - + Removing intro cue from %n track(s)Removing intro cue from %n track(s) Removing loop cues from %n track(s) - + Removing loop cues from %n track(s)Removing loop cues from %n track(s) Removing hot cues from %n track(s) - + Removing hot cues from %n track(s)Removing hot cues from %n track(s) Resetting keys of %n track(s) - + Resetting keys of %n track(s)Resetting keys of %n track(s) Resetting replay gain of %n track(s) - + Resetting replay gain of %n track(s)Resetting replay gain of %n track(s) Resetting waveform of %n track(s) - + Resetting waveform of %n track(s)Resetting waveform of %n track(s) Resetting all performance metadata of %n track(s) - + Resetting all performance metadata of %n track(s)Resetting all performance metadata of %n track(s) Setting cover art of %n track(s) - + Setting cover art of %n track(s)Setting cover art of %n track(s) Reloading cover art of %n track(s) - + Reloading cover art of %n track(s)Reloading cover art of %n track(s) @@ -14175,7 +14218,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Abort - + Abort @@ -14183,7 +14226,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. No network access - + No network access \ No newline at end of file diff --git a/res/translations/mixxx_es_ES.qm b/res/translations/mixxx_es_ES.qm index cc2e74ac855f6103c1c6ffb71862e12ff15ec10f..ef8ac506a1e25380e6d29602b86862c3cfe294b8 100644 GIT binary patch delta 13961 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 diff --git a/res/translations/mixxx_es_ES.ts b/res/translations/mixxx_es_ES.ts index 295daa90a73..1bff357dbb6 100644 --- a/res/translations/mixxx_es_ES.ts +++ b/res/translations/mixxx_es_ES.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Cajones - + Remove Crate as Track Source Quitar cajón como fuente de pistas - + Auto DJ Auto DJ - + Add Crate as Track Source Usar cajón como fuente de pistas @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. No se ha podido cargar la pista. @@ -642,12 +642,12 @@ Fecha creación - + Mixxx Library Biblioteca de Mixxx - + Could not load the following file because it is in use by Mixxx or another application. No se ha podido cargar el siguiente archivo debido a que Mixxx u otra aplicación lo esta usando. @@ -3363,37 +3363,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: Con colaboradores de: - + And special thanks to: Y agradecimientos especiales a: - + Past Developers Antiguos desarrolladores - + Past Contributors Antiguos colaboradores - + Official Website Official Website - + Donate @@ -7357,123 +7357,123 @@ Elija entre los distintos tipos de visualización para la forma de onda, que se Seleccione la mejor coincidencia posible - - + + Track Pista - - + + Year Año - + Title Título - - + + Artist Artista - - + + Album Álbum - + Album Artist Artista del álbum - + Fetching track data from the MusicBrainz database Obteniendo datos de la pista desde la base de datos MusicBrainz - + Mixxx could not find this track in the MusicBrainz database. Mixxx no pudo encontrar esta pista en la base de datos de MusicBrainz. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. Obtener la clave de API - + Submit Submits audio fingerprints to the MusicBrainz database. Enviar - + New Column Nueva columna - + New Item Nuevo Item - + &Previous &Previo - + &Next &Siguiente - + &Apply &Aplicar - + &Close &Cerrar - + Status: %1 Estado: %1 - + HTTP Status: %1 Estado HTTP: %1 - + Code: %1 Código: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx no se puede conectar a %1 por una razón desconocida. - + Mixxx can't connect to %1. Mixxx no se puede conectar a %1. - + Original tags Etiquetas originales - + Suggested tags Etiquetas sugeridas @@ -7970,51 +7970,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - Ratón HID genérico - - - Generic HID Joystick Joystick HID genérico - + Generic HID Gamepad Gamepad HID genérico - - Generic HID Keyboard - Teclado HID genérico - - - + Generic HID Multiaxis Controller Controlador multieje HID genérico - + Unknown HID Desktop Device Dispositivo de escritorio HID desconocido - + HID Infrared Control Control de infrarrojos HID - + Unknown Apple HID Device Dispositivo HID de Apple desconocido - + HID Unknown Device Dispositivo HID desconocido - + HID Interface Number Número de interfaz HID @@ -8177,27 +8167,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Analizador de biblioteca - + It's taking Mixxx a minute to scan your music library, please wait... Mixxx necesita unos minutos para escanear la biblioteca de música. Por favor, espere... - + Cancel Cancelar - + Scanning: Analizando: - + Scanning cover art (safe to cancel) Escaneando las carátulas (se puede cancelar sin problemas) @@ -8471,39 +8461,39 @@ Do you want to select an input device? No se ha podido cargar la apariencia seleccionada. - + OpenGL Direct Rendering OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Confirmar salida - + A deck is currently playing. Exit Mixxx? Un plato está reproduciendo. ¿Salir de Mixxx? - + A sampler is currently playing. Exit Mixxx? Un reproductor de muestras está en reproducción. ¿Salir de Mixxx? - + The preferences window is still open. La ventana de preferencias todavía está abierta. - + Discard any changes and exit Mixxx? ¿Descartar cambios y salir de Mixxx? @@ -8620,59 +8610,59 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx Actualizando Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? Mixxx ha añadido soporte para mostrar carátulas. ¿Desea escanear la biblioteca ahora para encontrar las carátulas? - + Scan Escanear - + Later Después - + Upgrading Mixxx from v1.9.x/1.10.x. Actualizar Mixxx desde v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. Mixxx ahora tiene un nuevo y mejorado analizador de ritmo. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. Cuando cargas pistas, Mixxx puede reanalizarlas y generar cuadrículas de tempo nuevas y más precisas. Esto hará que la sincronización y los Loops sean más fiables. - + This does not affect saved cues, hotcues, playlists, or crates. Esto no afecta a los Cues, Hotcues, listas de reproducción o cajas guardados/as. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. Si no quieres que Mixxx reanalize tus pistas, elige "Mantener las cuadrículas de tempo actuales". Puedes cambiar esta configuración en cualquier momento desde la sección "Detección de Beats" de la ventana Preferencias. - + Keep Current Beatgrids Mantener las cuadrículas de tempo actuales - + Generate New Beatgrids Generar nuevas cuadrículas de tempo @@ -13678,20 +13668,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Passthrough - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible Ready to play, analyzing... - - + + Loading track... Text on waveform overview when file is cached from source Loading track... - + Finalizing... Text on waveform overview during finalizing of waveform analysis Finalizing... diff --git a/res/translations/mixxx_es_MX.qm b/res/translations/mixxx_es_MX.qm index a2c4c4ebb8594540a8410053ff1e742572314b60..914a74fdce3915f3abca2ed45d9c4c55b287c2c5 100644 GIT binary patch delta 4859 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 RynD1LazFNa{L5`J{TJZ6pSA!1 delta 1613 zcmXZceNYs27zglYcW?LJ4-^pORg{z$an4vi1Fla2FP;&xB>x|`~Wb0l#D-5+Lw~?XL(h)?uMnK&CHbAt`Gd++ylMXmW@Y z$md4LG9Uivm0vJ`9{x=9K7f>H!SF{PKJRaW`8v*T(N4kE)QUb7-l`k~Sn#tj@Yo0t zuvPY6*M6MGFd2K6w55~zPT8m1PC*E8+_MeHyiK}l$l@t%kr3%wzvD}QV3*j?m4}X! zr5$2Z?r8wOPBPm~nm3S^60&qmZ2GSqe%HwC&0_n(mv9{|8UKWI{3U+YcnVweu6Sv_ z6T5nmboaBzLb%7VMbd`(1NetYQ7s<>@QqSh(?Wo>t5RMK1{ah|>c1iL4@-IH@%XG@ z$rgjbB>71j?O6aBJ0wpdkNf4)87-D_ag}uT)!7)_W@(U3;`uq!PamlOgivX$yC3)O zNE5*~fbEk-8jAmv$NBz_`P9neM!&;(+sU#DdEy1kL7Pe%gV}^^o}uI`MNGnZO#7Z9 zx$p@XaK0d!O-O;BM75aR0Wfc;y8eULa8?4DP)XXm)!lw^08`RQ;~n*# zr5Km~AB}G#z5=tYn!J{K`0AV{&B>(Yfu^9O8QauHX7^|+D(~Vq$V}!g)ifNM1n^7` zqYZ;z)6e5VLEA`o0$FrLGt5!|5*}(UhhbkLC9Pq(7a&T~T3y%=%@NXRAd8J!XZ>w_ z2Ulp<=B5L1_qDr>V;K1^a!IYuv<5%GQAc&<5hE}QxKv&FVZ5-RT36@p#JHPDlSbEf z6Jtw%%4!theBoWTT@fQU7Oe#++vELO@oO3zF*>}fv+8-T-qbGhYOS#{Ru#R#d(5fe zy_bp(@GQU{$u5`nvitTVrd;OFjx5V!LPWUt*78FfYs(Dss-7Pfyb-GsId%dplPr%H<8%Q=a4g1$w5$Z~y=R diff --git a/res/translations/mixxx_es_MX.ts b/res/translations/mixxx_es_MX.ts index d2f9721d3a2..d7b875e64bf 100644 --- a/res/translations/mixxx_es_MX.ts +++ b/res/translations/mixxx_es_MX.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Cajas - + Remove Crate as Track Source Remover Crate como Fuente de Archivos - + Auto DJ DJ Automatico - + Add Crate as Track Source Añadir Crate como Fuente de Archivos @@ -261,7 +261,7 @@ M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*. BaseTrackPlayerImpl - + Couldn't load track. No se puede cargar la pista @@ -641,12 +641,12 @@ M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*. Archivo Creado - + Mixxx Library Bliblioteca Mixxx - + Could not load the following file because it is in use by Mixxx or another application. No se puede cargar el siguiente archivo porque este es usado por Mixxx u otra aplicación @@ -1026,12 +1026,12 @@ M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*. Equalizers - + Equalizers Vinyl Control - + Vinyl Control @@ -1223,7 +1223,7 @@ M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*. Library - + Library @@ -1855,7 +1855,7 @@ M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*. Effects - + Effects @@ -3363,37 +3363,37 @@ M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*. DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -3720,7 +3720,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Analyzer Settings - + Analyzer Settings @@ -3741,7 +3741,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Re-analyze beats when settings change or beat detection data is outdated - + Re-analyze beats when settings change or beat detection data is outdated @@ -4801,7 +4801,7 @@ Apply settings and continue? Controllers - + Controllers @@ -5362,7 +5362,7 @@ You can always drag-and-drop tracks on screen to clone a deck. Equalizer Preferences - + Equalizer Preferences @@ -5594,7 +5594,7 @@ and allows you to pitch adjust them for harmonic mixing. Analyzer Settings - + Analyzer Settings @@ -5609,7 +5609,7 @@ and allows you to pitch adjust them for harmonic mixing. Key Notation - + Key Notation @@ -5767,7 +5767,7 @@ and allows you to pitch adjust them for harmonic mixing. Equalizer Preferences - + Equalizer Preferences @@ -5810,7 +5810,7 @@ and allows you to pitch adjust them for harmonic mixing. Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. @@ -5843,7 +5843,7 @@ and allows you to pitch adjust them for harmonic mixing. Library - + Library @@ -6590,17 +6590,17 @@ The loudness target is approximate and assumes track pregain and master output l Sound API - + Sound API Sample Rate - + Sample Rate Audio Buffer - + Audio Buffer @@ -6766,7 +6766,7 @@ The loudness target is approximate and assumes track pregain and master output l Turntable Input Signal Boost - + Turntable Input Signal Boost @@ -7063,17 +7063,17 @@ Select from different types of displays for the waveform, which differ primarily Sound Hardware - + Sound Hardware Controllers - + Controllers Library - + Library @@ -7093,7 +7093,7 @@ Select from different types of displays for the waveform, which differ primarily Equalizers - + Equalizers @@ -7113,7 +7113,7 @@ Select from different types of displays for the waveform, which differ primarily Effects - + Effects @@ -7128,12 +7128,12 @@ Select from different types of displays for the waveform, which differ primarily Beat Detection - + Beat Detection Key Detection - + Key Detection @@ -7143,7 +7143,7 @@ Select from different types of displays for the waveform, which differ primarily Vinyl Control - + Vinyl Control @@ -7161,7 +7161,7 @@ Select from different types of displays for the waveform, which differ primarily Preferences - + Preferences @@ -7286,123 +7286,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Año - + Title Título - - + + Artist Artista - - + + Album Album - + Album Artist Artista del Album - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7629,7 +7629,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Assume constant tempo - + Assume constant tempo @@ -7897,51 +7897,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8100,27 +8090,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8386,39 +8376,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8533,58 +8523,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Escanear - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8746,7 +8736,7 @@ Do you want to scan your library for cover files now? Vinyl Control - + Vinyl Control @@ -10826,7 +10816,7 @@ Fully right: end of the effect period Vinyl Control - + Vinyl Control @@ -11911,7 +11901,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Inactive: parameter not linked - + Inactive: parameter not linked @@ -12257,7 +12247,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Maximize Library - + Maximize Library @@ -13310,7 +13300,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Maximize Library - + Maximize Library @@ -13321,7 +13311,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Space Menubar|View|Maximize Library - + Space @@ -13552,20 +13542,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -14055,7 +14045,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. ESC Focus - + ESC diff --git a/res/translations/mixxx_et.qm b/res/translations/mixxx_et.qm index 9ced3740fda02694b1d3789a02fc56002853ffc0..250455900029824433011bd9a2ed96b451c2ebd3 100644 GIT binary patch delta 4582 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 OdbZx{)aYFiqyGyPcn`+_ delta 4096 zcmXZfd0b6-9|!Pn_nve2g<=|8#!~7cp@gi@C5 zJ!+a^#>^zkL|z!i80N9gct+zH%NSAfd~UzzuXpEkmf!FD{rR^y@l;Sq=z zb0=X5JOdv}ft?Z1eKt3e#W=mkM5SOMPTBRqheh1NpTg>Wg;u?{DuLs06 zBigA>%#AL@wR1%477=#~0~v9bY0e<-XGAU%*F8h6tuqt%{6`$)I*T!F%#9a``%93C zhZzmGiFd;rb59aK8^iDOAEw=6=9+cP&2_~4))I{_VirZfS47U%%%WoA7hb!7H>@ax^ z?mN32p}tD|yKIavl{x4aX2Kq3%HJeuyhoHSkaXk?*do|-&c^t3Qu+iEB^8jPD zKZ}_ZM&6eE3XJtr;u3W zGy4RE#$r4>)=_8+O1{J>bnte@sP`16L_8DXm?<+UJR8H^_>#g+r||ZFXn9>Gn&fCo z-1-gCXRj!u3-M0xqRfK#L|fV@x1Whpu1^*#UgCJAUaTtQ(Quo@x?eGK zr|aUGzbwbj(j@jy<`MeE_k~?jyKyla#fB&}(vb(m8$R5ON8zF8&)X|2XoNbb~8AhR(G(i7Q|D7!Bofu42w<%<2PX z<}M*ZW@pU(m^)zpj%aTOS6_UeX!||*fT+ATdWc1$-5u=7S->=PyeqTo5mX6=Q@Izd7JlNXN9VX;e)OW!S-+BBcfc%hsN3R2~90n zZMXT9l7A7|sQJ9(xY5SUtj*vHXPqNbon?M}hv`3-8E#aiPJw=)N>Vj5=im7PfDhzfq!3|v?9hTo&dxYxQeO?CXC3twXw?ay3l%QWfvQ}=M) zxK?IKJ>U2e$8OX3bC&Mo;oRdeT0fti$bGD8;nQ2 zUs|!Xg_ctG&(fYmXH1kfo_m9)YNqww${`qn3Zvcn)ERl(ls<5XCE*iKk?j#W;4cWfr}cJsE&mjoK#{ zM+o@fR5EiK1hvLNx9Wv_*q>cQ)%WGYv)`gsisZvfk)2`1a;G_%oc|GKY^D&Q8N9?^ zzV!FU=mA;G!XM=;9!|vv;2mb#IC(OP{r=s#(4nH00 zm@04PzMG2bPFs9ccPI{fxS`Iw700h2kLiJm=4;=e4renr{KKq1B6Ml(LU&gvTHLXh zr6?5_%8`#1Qxt7)O-O5(a+s~Znk{1_YpG( zr7}~plzAh^p~^-GhF*5YOYQd)hSRvk+&Zenl#AdJ@{m8kJ{vUu<<>tMsL>@Y+MnxnDA)@2k8+voX9yD(@X$ z*u_#*^K&?~kF2YzG)Fw>)4{6r1eC3Rk}B`;A6TAunf7H zbMGqs_#tI$cmY?lR_7nOanQ3Lh(l>On_G)wJy8? zY5m}!+WFW+qR{thuMoVT!V|uRd9WK^hW}uOzo@-JMc6N`A@W-pte)eK+LER*4eOZI zI`up|%y82)b#%y3>|3?!jB-53xkH^Ffc&Q&R2Q8N!B=;udh2vGLd><|54hV_u(x&y zU6`l&$i^Cd=iizMk2Hu>e~pJ9BD~|U#=|nPGSYa(q5y1XYJ!XBV!sO0gdM@S`@hoU zx?@~XiJIJi8lqnL%-P#C`E@9a%66gF+QGP&*Ssvv!ms2tT16w;LvEHX^qt#u2sl<5=gq!D(AUtew9u|Sk>KjyAG+S)7l>8 AutoDJFeature - + Crates Plaadikastid - + Remove Crate as Track Source - + Auto DJ Automaatne DJ - + Add Crate as Track Source @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Ei suuda lugu laadida. @@ -640,12 +640,12 @@ Kaust loodud - + Mixxx Library Mixxx raamatukogu - + Could not load the following file because it is in use by Mixxx or another application. Ei suutnud laadida seda faili, kuna see on kasutuses Mixxxi või mõne muu programmi poolt. @@ -3361,37 +3361,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers Eelmised arendajad - + Past Contributors - + Official Website - + Donate @@ -4852,7 +4852,7 @@ Apply settings and continue? Color scheme - + Värviskeem @@ -4867,7 +4867,7 @@ Apply settings and continue? Interface Preferences - + Liidese eelistused @@ -6598,7 +6598,7 @@ The loudness target is approximate and assumes track pregain and master output l Audio Buffer - + Audiopuhver @@ -7116,7 +7116,7 @@ Select from different types of displays for the waveform, which differ primarily LV2 Plugins - + LV2 pluginad @@ -7131,7 +7131,7 @@ Select from different types of displays for the waveform, which differ primarily Key Detection - + Helistiku tuvastamine @@ -7284,123 +7284,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Aasta - + Title Pealkiri - - + + Artist Esitaja - - + + Album Album - + Album Artist Albumi esitaja - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous &Eelmine - + &Next &Järgmine - + &Apply &Rakenda - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. Mixxx ei suuda ühenduda %1. - + Original tags - + Suggested tags @@ -7895,51 +7895,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8098,27 +8088,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel Katkesta - + Scanning: Skaneerin: - + Scanning cover art (safe to cancel) @@ -8384,39 +8374,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Kinnita väljumine - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8531,58 +8521,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Skänni - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -12514,7 +12504,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Displays the current time. - + Jooksva aja kuvamine. @@ -13550,20 +13540,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_eu.ts b/res/translations/mixxx_eu.ts index a905a97b677..5b4bb5aa600 100644 --- a/res/translations/mixxx_eu.ts +++ b/res/translations/mixxx_eu.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Kaxak - + Remove Crate as Track Source Kendu kaxa pistaren iturri bezala - + Auto DJ Auto DJ - + Add Crate as Track Source Gehitu kaxa pistaren iturri bezala @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Ezin izan da pista kargatu @@ -640,12 +640,12 @@ - + Mixxx Library Mixxx liburutegia - + Could not load the following file because it is in use by Mixxx or another application. Ezin izan da hurrengo fitxategi hau kargatu Mixxx edo beste aplikazioren bat bera erabiltzen ari delako @@ -3361,37 +3361,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: Ondorengoen laguntzarekin: - + And special thanks to: Eta Eskerrik Asko hauei: - + Past Developers Lehengo Garatzaileak - + Past Contributors Lehengo - + Official Website - + Donate @@ -7284,123 +7284,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Urtea - + Title Titulua - - + + Artist Artista - - + + Album Albuma - + Album Artist Albumaren artista - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous &Aurrekoa - + &Next &Hurrengoa - + &Apply &Aplikatu - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7895,51 +7895,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8098,27 +8088,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Liburutegi eskaneatzailea - + It's taking Mixxx a minute to scan your music library, please wait... Mixxx-ek une bat behar du zure musika liburutegia eskaneatzeko, mesedez itxaron... - + Cancel Ezeztatu - + Scanning: - + Scanning cover art (safe to cancel) @@ -8384,39 +8374,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Irtetzea konfirmatu - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8532,58 +8522,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13551,20 +13541,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_fa.ts b/res/translations/mixxx_fa.ts index a6e9fd05a8d..8e496a924bb 100644 --- a/res/translations/mixxx_fa.ts +++ b/res/translations/mixxx_fa.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates کلکسیون - + Remove Crate as Track Source پاک کردن کلکسیون - + Auto DJ دی‌جی خودکار - + Add Crate as Track Source افزودن کلکسیون @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. بارگزاری قطعه امکان‌پذیر نیست. @@ -640,12 +640,12 @@ - + Mixxx Library کتابخانه میکــــس - + Could not load the following file because it is in use by Mixxx or another application. امکان بارگزاری فایل به دلیل استفاده توسط میکــــس یا برنامه دیگر وجود ندارد. @@ -3361,37 +3361,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers سازندگان قديم - + Past Contributors - + Official Website - + Donate @@ -7284,123 +7284,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year سال - + Title سمت - - + + Artist کل %n هنرمند - - + + Album کل %n آلبوم - + Album Artist هنرمند آلبوم - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous &قبلی‌ - + &Next &بعدی‌ - + &Apply &اعمال‌ - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7895,51 +7895,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8098,27 +8088,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel انصراف - + Scanning: - + Scanning cover art (safe to cancel) @@ -8384,39 +8374,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8531,58 +8521,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13550,20 +13540,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_fi.qm b/res/translations/mixxx_fi.qm index 17b2753ee4df8cbd9ec14921a870f340b7f7cf4c..c79336220779901e6808fa701cb95a9e5c551615 100644 GIT binary patch delta 3826 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 AbN~PV delta 3963 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 diff --git a/res/translations/mixxx_fi.ts b/res/translations/mixxx_fi.ts index f4c11e086a0..e599197e8d1 100644 --- a/res/translations/mixxx_fi.ts +++ b/res/translations/mixxx_fi.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Levylaukut - + Remove Crate as Track Source - + Auto DJ Auto-DJ - + Add Crate as Track Source @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Kappaletta ei voitu ladata. @@ -640,12 +640,12 @@ Tiedosto luotiin - + Mixxx Library Mixxx-kirjasto - + Could not load the following file because it is in use by Mixxx or another application. Seuraavaa tiedostoa ei voitu ladata, koska se on Mixxx:n tai jonkin muun sovelluksen käytössä. @@ -3361,37 +3361,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: Avustajina ovat toimineet: - + And special thanks to: Lisäkiitokset seuraaville henkilöille: - + Past Developers Aikaisemmat kehittäjät - + Past Contributors Aikaisemmat avustajat - + Official Website - + Donate @@ -7285,123 +7285,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Vuosi - + Title Kappale - - + + Artist Esittäjä - - + + Album Levy - + Album Artist Albumin esittäjä - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous &Edellinen - + &Next &Seuraava - + &Apply &Käytä - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7896,51 +7896,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - Yleinen HID hiiri - - - Generic HID Joystick Yleinen HID ohjaussauva - + Generic HID Gamepad Yleinen HID peliohjain - - Generic HID Keyboard - Yleinen HID näppäimistö - - - + Generic HID Multiaxis Controller Yleinen HID moniakselinen-ohjain - + Unknown HID Desktop Device Tuntematon HID laite - + HID Infrared Control HID Infrapunaohjain - + Unknown Apple HID Device Tuntematon Apple HID laite - + HID Unknown Device HID Tuntematon laite - + HID Interface Number HID Interface Number @@ -8099,27 +8089,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Kokoelman läpikäynti - + It's taking Mixxx a minute to scan your music library, please wait... Kokoelman läpikäynti kestää hetken. Ole hyvä ja odota... - + Cancel Keskeytä - + Scanning: - + Scanning cover art (safe to cancel) @@ -8388,39 +8378,39 @@ Do you want to select an input device? Valittua teemaa ei voi ladata. - + OpenGL Direct Rendering OpenGL -suorapiirto - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Varmista lopetus - + A deck is currently playing. Exit Mixxx? Dekki soittaa kappaletta. Suljetaanko Mixxx? - + A sampler is currently playing. Exit Mixxx? Näytesoitin on käynnissä. Suljetaanko mixxx? - + The preferences window is still open. Määritys-ikkuna on vielä auki. - + Discard any changes and exit Mixxx? Hylkää kaikki muutokset ja sulje Mixxx @@ -8537,58 +8527,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13556,20 +13546,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Läpisyöttö - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_fr.qm b/res/translations/mixxx_fr.qm index 43be6baac9a9a2e659f6b583957d717d66f1dbe2..192f75cc0b715167b8dd5234dc73487308ac1cb4 100644 GIT binary patch delta 14235 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 WU%^~~DrrJEhyTdo3E}kWiT?w)z_y71 delta 14338 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 diff --git a/res/translations/mixxx_fr.ts b/res/translations/mixxx_fr.ts index 446a7f4894a..235bcf8f334 100644 --- a/res/translations/mixxx_fr.ts +++ b/res/translations/mixxx_fr.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Bacs - + Remove Crate as Track Source Supprimer le bac comme source de piste - + Auto DJ Auto DJ - + Add Crate as Track Source Ajouter le bac comme source de pistes @@ -263,7 +263,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Impossible de charger la piste. @@ -643,12 +643,12 @@ Fichier créé - + Mixxx Library Bibliothèque Mixxx - + Could not load the following file because it is in use by Mixxx or another application. Impossible de charger le fichier suivant car il est utilisé par Mixxx ou une autre application. @@ -3365,37 +3365,37 @@ Ajouter la piste à la file Auto DJ (fin) DlgAbout - + Mixxx %1.%2 Development Team Équipe de développement Mixxx %1.%2 - + With contributions from: Avec les contributions de: - + And special thanks to: Et remerciements particuliers à: - + Past Developers Anciens développeurs - + Past Contributors Anciens contributeurs - + Official Website Site Internet officiel - + Donate Donation @@ -7359,123 +7359,123 @@ Sélectionner depuis les différents types d'affichage de la forme d'o Sélectionne la meilleure correspondance - - + + Track Piste - - + + Year Année - + Title Titre - - + + Artist Artiste - - + + Album Album - + Album Artist Artiste de l'album - + Fetching track data from the MusicBrainz database Récupère les données de pistes à partir de la base de données de MusicBrainz - + Mixxx could not find this track in the MusicBrainz database. Mixxx n'a pas pu trouver cette piste dans la base de données de MusicBrainz. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. Obtenir une clé-API - + Submit Submits audio fingerprints to the MusicBrainz database. Soumettre - + New Column Nouvelle colone - + New Item Nouvel élément - + &Previous &Précédent - + &Next Suiva&nte - + &Apply &Appliquer - + &Close &Fermer - + Status: %1 État: %1 - + HTTP Status: %1 État HTTP: %1 - + Code: %1 Code: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx ne peut se connecter à %1 pour une raison inconnue. - + Mixxx can't connect to %1. Mixxx ne peut se connecter à %1. - + Original tags Tags initiaux - + Suggested tags Tags suggérés @@ -7972,51 +7972,41 @@ Résulte souvent en de meilleures grilles rythmiques, mais ne marchera pas bien HidController - Generic HID Mouse - Souris générique HID - - - Generic HID Joystick Joystick HID Générique - + Generic HID Gamepad Gamepad HID Générique - - Generic HID Keyboard - Clavier générique HID - - - + Generic HID Multiaxis Controller Controlleur HID Multiaxis Générique - + Unknown HID Desktop Device Périphérique HID de bureau inconnu - + HID Infrared Control Contrôleur infrarouge HID - + Unknown Apple HID Device Périphérique HID Apple inconnu - + HID Unknown Device Périphérique HID inconnu - + HID Interface Number Numéro d'interface HID @@ -8179,27 +8169,27 @@ Voulez-vous vraiment l'écraser ? LibraryScannerDlg - + Library Scanner Analyseur de bibliothèque - + It's taking Mixxx a minute to scan your music library, please wait... Veuillez patienter quelques instants le temps que Mixxx analyse votre bibliothèque musicale... - + Cancel Annuler - + Scanning: Analyse : - + Scanning cover art (safe to cancel) Scanne la pochette d'album (peut être annulé) @@ -8472,39 +8462,39 @@ Voulez-vous sélectionner un périphérique d'entrée ? L'habillage sélectionné ne peut pas être chargé. - + OpenGL Direct Rendering Rendu Direct OpenGL - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. Le rendu direct n'est pas activé sur votre machine.<br><br> Cela signifie que l'affichage de la forme d'onde sera très<br><b>lent et risque de surcharger votre processeur</b>. Mettez à jour votre<br>configuration pour activer le rendu direct ou désactivez<br>les affichages de forme d'onde dans les préférences de Mixxx en sélectionnant<br>"Vide" comme affichage de forme d'onde dans la section "Interface". - - - + + + Confirm Exit Confirmer la fermeture - + A deck is currently playing. Exit Mixxx? Une platine est actuellement en cours de lecture. Quitter Mixxx ? - + A sampler is currently playing. Exit Mixxx? Un échantillonneur est actuellement en cours de lecture. Quitter Mixxx ? - + The preferences window is still open. La fenêtre de Préférences est déjà ouverte. - + Discard any changes and exit Mixxx? Abandonner toutes les modifications et quitter Mixxx ? @@ -8621,59 +8611,59 @@ Voulez-vous sélectionner un périphérique d'entrée ? QMessageBox - + Upgrading Mixxx Mise à jour de Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? Mixxx permet maintenant d'afficher la pochette d'album. Désirez-vous rechercher maintenant les pochettes dans votre bibliothèque? - + Scan Analyse - + Later Plus tard - + Upgrading Mixxx from v1.9.x/1.10.x. Mise à jour de Mixxx de la v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. Mixxx a un nouveau détecteur de tempo amélioré. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. Quand vous chargez des pistes, Mixxx peut les ré-analyser et générer de nouvelles grilles rythmiques, plus précises. Ceci rendra la synchronisation automatique et les boucles plus fiables. - + This does not affect saved cues, hotcues, playlists, or crates. Cela n'affecte pas les repères, repères rapides, listes de lecture, ou bacs sauvegardés - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. Si vous ne voulez pas que Mixxx ré-analyse vos pistes, choisissez "Garder les Grilles Rythmiques actuelles". Vous pouvez changer ce réglages n'importe quand depuis la section "Détection Rythmique" des Préférences. - + Keep Current Beatgrids Garder les Grilles Rythmiques actuelles - + Generate New Beatgrids Générer de nouvelle Grilles Rythmiques @@ -13678,20 +13668,20 @@ Utiliser ceci pour modifier uniquement le signal affecté (traité) avec EQ et l Contrôle intermédiaire - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible Prêt à lire, analyse en cours ... - - + + Loading track... Text on waveform overview when file is cached from source Chargement piste ... - + Finalizing... Text on waveform overview during finalizing of waveform analysis Finalisation ... diff --git a/res/translations/mixxx_fr_FR.ts b/res/translations/mixxx_fr_FR.ts index fb42a2ee390..0d4e17f2752 100644 --- a/res/translations/mixxx_fr_FR.ts +++ b/res/translations/mixxx_fr_FR.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Caisses - + Remove Crate as Track Source - + Auto DJ Auto DJ - + Add Crate as Track Source @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Impossible de charger la piste. @@ -641,12 +641,12 @@ - + Mixxx Library - + Could not load the following file because it is in use by Mixxx or another application. @@ -3362,37 +3362,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: Avec des contributions de : - + And special thanks to: Et des remerciements spéciaux à : - + Past Developers Anciens développeurs - + Past Contributors Anciens contributeurs - + Official Website - + Donate @@ -7285,123 +7285,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Année - + Title Titre - - + + Artist Artiste - - + + Album Album - + Album Artist Artiste de l'album - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7896,51 +7896,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8099,27 +8089,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8385,39 +8375,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8532,58 +8522,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13551,20 +13541,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_ga.ts b/res/translations/mixxx_ga.ts index 0d25b6db365..7b19da5dafa 100644 --- a/res/translations/mixxx_ga.ts +++ b/res/translations/mixxx_ga.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates - + Remove Crate as Track Source - + Auto DJ DJ Uathoibríoch - + Add Crate as Track Source @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. @@ -640,12 +640,12 @@ - + Mixxx Library Leabharlann Mixxx - + Could not load the following file because it is in use by Mixxx or another application. @@ -3361,37 +3361,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -7284,123 +7284,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Bliain - + Title Teideal - - + + Artist Ceolteoir - - + + Album Albam - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7895,51 +7895,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8098,27 +8088,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8384,39 +8374,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8531,58 +8521,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13550,20 +13540,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_gl.qm b/res/translations/mixxx_gl.qm index 84d472985bbf22d75c59e00cebef1e4044eb0842..b0a0bce37dc7ffcfe4492ae8fb7a887c346927ff 100644 GIT binary patch delta 5750 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 AutoDJFeature - + Crates Caixóns - + Remove Crate as Track Source Retirar caixa como orixe da pista - + Auto DJ DJ automático - + Add Crate as Track Source Engadir caixa como orixe da pista @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Non foi posíbel cargar a pista. @@ -642,12 +642,12 @@ Ficheiro creado - + Mixxx Library Fonoteca do Mixxx - + Could not load the following file because it is in use by Mixxx or another application. Non foi posíbel cargar o seguinte ficheiro xa que está a ser empregado por Mixxx ou por outro aplicativo. @@ -3363,37 +3363,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: Coa colaboración de: - + And special thanks to: Grazas, especialmente a: - + Past Developers Desenvolvedores anteriores - + Past Contributors Colaboradores anteriores - + Official Website - + Donate @@ -7290,123 +7290,123 @@ Select from different types of displays for the waveform, which differ primarily Selecciona a mellor coincidencia posíbel - - + + Track Pista - - + + Year Ano - + Title Título - - + + Artist Interprete - - + + Album Álbum - + Album Artist Interprete do álbum - + Fetching track data from the MusicBrainz database Obtendo datos da pista desde a base de datos MusicBrainz - + Mixxx could not find this track in the MusicBrainz database. Mixxx non foi quen de atopar esta pista na base de datos de MusicBrainz. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. Obter a chave da API - + Submit Submits audio fingerprints to the MusicBrainz database. Enviar - + New Column Nova columna - + New Item Novo elemento - + &Previous &Anterior - + &Next &Seguinte - + &Apply A&plicar - + &Close &Pechar - + Status: %1 Estado: %1 - + HTTP Status: %1 Estado HTTP: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. Por algunha razón descoñecida, non é posíbel conectar Mixxx a %1. - + Mixxx can't connect to %1. Non é posíbel conectar Mixxx a %1. - + Original tags Etiquetas oriinais - + Suggested tags Etiquetas suxeridas @@ -7901,51 +7901,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - Rato HID xenérico - - - Generic HID Joystick Joystick HID xenérico - + Generic HID Gamepad Gamepad HID xenérico - - Generic HID Keyboard - Teclado HID xenérico - - - + Generic HID Multiaxis Controller Controlador xenérico HID multieixo - + Unknown HID Desktop Device Dispositivo HID de escritorio descoñecido - + HID Infrared Control Control de infravermellos HID - + Unknown Apple HID Device Dispositivo HID Apple descoñecido - + HID Unknown Device Dispositivo HID descoñecido - + HID Interface Number Número de interface HID @@ -8105,27 +8095,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Examinar a fonoteca - + It's taking Mixxx a minute to scan your music library, please wait... Ao Mixxx levaralle uns segundos examinar a súa fonoteca, agarde... - + Cancel Cancelar - + Scanning: Escaneando: - + Scanning cover art (safe to cancel) Escaneando as portadas (pode cancelalo sen problemas) @@ -8392,39 +8382,39 @@ Do you want to select an input device? Non foi posíbel cargar o tema seleccionado. - + OpenGL Direct Rendering Debuxado directo OpenGL - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Confirmar a saída - + A deck is currently playing. Exit Mixxx? O prato está reproducindo. Saír do Mixxx? - + A sampler is currently playing. Exit Mixxx? Un mostreador está reproducindo actualmente. Saír dp Mixxx? - + The preferences window is still open. A xanela de preferencias segue aberta. - + Discard any changes and exit Mixxx? Desbotar calquera cambio e saír do Mixxx? @@ -8541,58 +8531,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Examinar - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. Anovando o Mixxx desde v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. Mixxx ten un detector de ritmo novo e mellorado. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. Ao cargar as pistas, Mixxx pode volver a analizalas e xerar novas e máis precisas grellas de ritmo. Isto fará que sexan máis fiábeis a sincronización dos ritmos e dos blucles. - + This does not affect saved cues, hotcues, playlists, or crates. Isto non afecta ás referencias gardadas, referencias activas, listas de reprodución ou caixóns. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. Se non quere que o Mixxx analice de novo as pistas, seleccione «Manter a actual grella de ritmo». Pode cambiar este axuste en calquera momento desde a sección «Detección de ritmo» das Preferencias. - + Keep Current Beatgrids Manter a actual grella de ritmo - + Generate New Beatgrids Xerar novas grellas de ritmo @@ -13560,20 +13550,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Pasante - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_he.ts b/res/translations/mixxx_he.ts index c0da3ea29e2..91006c6c0bf 100644 --- a/res/translations/mixxx_he.ts +++ b/res/translations/mixxx_he.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates ארגזים - + Remove Crate as Track Source הסר תיבת מעקב - + Auto DJ תקליטן אוטומטי - + Add Crate as Track Source הוסף תיבה כמקור מעקב @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. לא ניתן לטעון את הרצועה. @@ -640,12 +640,12 @@ קובץ נוצר - + Mixxx Library ספריית Mixxx - + Could not load the following file because it is in use by Mixxx or another application. לא ניתן לטעון את הקובץ כיוון שהוא נמצא בשימוש על די Mixxx או תוכנה אחרת. @@ -3362,37 +3362,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -7285,123 +7285,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track רצועה - - + + Year שנה - + Title שם תואר - - + + Artist אמן - - + + Album אלבום - + Album Artist אמן אלבום - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. הרשם - + New Column טור חדש - + New Item ארגז חדש - + &Previous הקודם - + &Next הבא - + &Apply - + &Close סגור - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7896,51 +7896,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8099,27 +8089,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8385,39 +8375,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8532,58 +8522,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan לסרוק - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13551,20 +13541,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_he_IL.ts b/res/translations/mixxx_he_IL.ts index b8b0f9b6ddf..7e6ff4ee46b 100644 --- a/res/translations/mixxx_he_IL.ts +++ b/res/translations/mixxx_he_IL.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates ארגזים - + Remove Crate as Track Source הסירו ארגז כמקור רצועת השמעה - + Auto DJ תקליטן אוטומטי - + Add Crate as Track Source הוסיפו ארגז כמקור רצועת השמעה @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. לא הצליח לטעון רצועה @@ -642,12 +642,12 @@ - + Mixxx Library - + Could not load the following file because it is in use by Mixxx or another application. @@ -3363,37 +3363,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -7286,123 +7286,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year שנה - + Title כותר - - + + Artist אמן - - + + Album אלבום - + Album Artist אמן האלבום - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7897,51 +7897,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8100,27 +8090,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8386,39 +8376,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8533,58 +8523,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13552,20 +13542,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_hi_IN.ts b/res/translations/mixxx_hi_IN.ts index a458ecb9491..962ae4fcdcf 100644 --- a/res/translations/mixxx_hi_IN.ts +++ b/res/translations/mixxx_hi_IN.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates संदूक - + Remove Crate as Track Source - + Auto DJ स्वत: डीजे - + Add Crate as Track Source @@ -261,7 +261,7 @@ BaseTrackPlayerImpl - + Couldn't load track. ट्रैक लोड नहीं हो सका @@ -641,12 +641,12 @@ - + Mixxx Library - + Could not load the following file because it is in use by Mixxx or another application. @@ -3362,37 +3362,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -7285,123 +7285,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year साल - + Title शीर्षक - - + + Artist कलाकार - - + + Album एल्बम - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7896,51 +7896,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8099,27 +8089,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8385,39 +8375,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8532,58 +8522,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13551,20 +13541,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_hr.ts b/res/translations/mixxx_hr.ts index f023186f25b..2d892989d92 100644 --- a/res/translations/mixxx_hr.ts +++ b/res/translations/mixxx_hr.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Spremnik - + Remove Crate as Track Source Ukloni spremnik kao izvor pjesama - + Auto DJ Automatski DJ - + Add Crate as Track Source Dodaj spremnik kao izvor pjesama @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Ne može učitati pjesmu @@ -642,12 +642,12 @@ Datoteka stvorena - + Mixxx Library Mixxx Biblioteka - + Could not load the following file because it is in use by Mixxx or another application. Nemože učitati navedenu datoteku jer je koristi Mixxx ili neka druga aplikacija. @@ -3363,37 +3363,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -7286,123 +7286,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Godina - + Title Naslov - - + + Artist Izvođač - - + + Album Album - + Album Artist Izvođač albuma - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7897,51 +7897,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8100,27 +8090,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8386,39 +8376,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8533,58 +8523,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Skeniraj - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13552,20 +13542,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_hu.ts b/res/translations/mixxx_hu.ts index c735958197c..c0053cdfb7c 100644 --- a/res/translations/mixxx_hu.ts +++ b/res/translations/mixxx_hu.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Rekeszek - + Remove Crate as Track Source Rekesz, mint zene forrás eltávoltása - + Auto DJ Auto DJ - + Add Crate as Track Source Rekesz, mint zene forrás hozzáadása @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Nem lehet a számot betölteni. @@ -642,12 +642,12 @@ A fájl készítve - + Mixxx Library Mixxx Könyvtár - + Could not load the following file because it is in use by Mixxx or another application. A fájlt nem lehet betölteni, mert a Mixxx, vagy egy másik program használja. @@ -3363,37 +3363,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -7305,123 +7305,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Év - + Title Cím - - + + Artist Előadó - - + + Album Album - + Album Artist Album Előadó - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply &Alkalmaz - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags Eredeti előadó - + Suggested tags Javasolt címkék @@ -7916,51 +7916,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8119,27 +8109,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... A Mixxx-nek egy időbe telik amíg ellenőrzi a zene könyvtárat, várjon... - + Cancel Mégsem - + Scanning: - + Scanning cover art (safe to cancel) @@ -8405,39 +8395,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8552,58 +8542,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Beolvasás - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13571,20 +13561,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_hy.ts b/res/translations/mixxx_hy.ts index 87c392d3329..8266628af90 100644 --- a/res/translations/mixxx_hy.ts +++ b/res/translations/mixxx_hy.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates - + Remove Crate as Track Source - + Auto DJ Ավտո DJ - + Add Crate as Track Source @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Չկարողացա բացել երգը @@ -640,12 +640,12 @@ - + Mixxx Library - + Could not load the following file because it is in use by Mixxx or another application. @@ -3361,37 +3361,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -7284,123 +7284,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Տարի - + Title Անուն - - + + Artist Արտիստ - - + + Album Ալբոմ - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7895,51 +7895,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8098,27 +8088,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8384,39 +8374,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8531,58 +8521,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13550,20 +13540,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_id.ts b/res/translations/mixxx_id.ts index f0ef2b68f5d..4faed23e533 100644 --- a/res/translations/mixxx_id.ts +++ b/res/translations/mixxx_id.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Peti - + Remove Crate as Track Source - + Auto DJ Auto DJ - + Add Crate as Track Source @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Tidak dapat memuat lagu @@ -640,12 +640,12 @@ File Dibuat - + Mixxx Library Library Mixxx - + Could not load the following file because it is in use by Mixxx or another application. Tidak dapat memuat file karena sedang digunakan oleh Mixxx atau aplikasi lain. @@ -3361,37 +3361,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -7284,123 +7284,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Tahun - + Title Judul - - + + Artist Artis - - + + Album Album - + Album Artist Artis dari Album - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7895,51 +7895,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8098,27 +8088,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8384,39 +8374,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8531,58 +8521,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Pindai - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13550,20 +13540,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_is.ts b/res/translations/mixxx_is.ts index fa8c43f779b..5254664beca 100644 --- a/res/translations/mixxx_is.ts +++ b/res/translations/mixxx_is.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Kassar - + Remove Crate as Track Source - + Auto DJ Sjálfvirk hljóðblöndun - + Add Crate as Track Source @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Gat ekki opnað lag. @@ -640,12 +640,12 @@ - + Mixxx Library - + Could not load the following file because it is in use by Mixxx or another application. @@ -3361,37 +3361,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -7284,123 +7284,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Ár - + Title Heiti - - + + Artist Flytjandi - - + + Album Plata - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply &Virkja - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7895,51 +7895,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8098,27 +8088,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8384,39 +8374,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8531,58 +8521,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13550,20 +13540,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_it.qm b/res/translations/mixxx_it.qm index c8188888ad2a387e64559b8bcaafd0ccb80dc07a..61e57a9583c49e63269dc1f66d7fe6d4da663777 100644 GIT binary patch delta 9199 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 F{txBQI0^s& delta 9190 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 Ee-*zSSO5S3 diff --git a/res/translations/mixxx_it.ts b/res/translations/mixxx_it.ts index aba07df3c9c..b2063afb0df 100644 --- a/res/translations/mixxx_it.ts +++ b/res/translations/mixxx_it.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Ceste - + Remove Crate as Track Source Rimuovi Cesto come sorgente tracce - + Auto DJ Auto DJ - + Add Crate as Track Source Aggiungi Cesto come sorgente tracce @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Impossibile caricare la traccia @@ -642,12 +642,12 @@ File Creato - + Mixxx Library Libreria Mixxx - + Could not load the following file because it is in use by Mixxx or another application. Non è possibile caricare il seguente file perchè è in uso da parte di Mixxx o altra applicazione. @@ -3363,37 +3363,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: Con contributi da: - + And special thanks to: E ringraziamenti speciali a: - + Past Developers Sviluppatori passati - + Past Contributors Collaboratori passati - + Official Website - + Donate @@ -7288,123 +7288,123 @@ Select from different types of displays for the waveform, which differ primarily Seleziona la migliore corrispondenza possibile - - + + Track Traccia - - + + Year Anno - + Title Titolo - - + + Artist Artista - - + + Album Album - + Album Artist Artista Album - + Fetching track data from the MusicBrainz database Prendendo i dati delle tracce dal database MusicBrainz - + Mixxx could not find this track in the MusicBrainz database. Mixxx non è riuscito a trovare questa traccia nel database MusicBrainz. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. Ottieni chiave API - + Submit Submits audio fingerprints to the MusicBrainz database. Invia - + New Column Nuova Colonna - + New Item Nuovo Oggetto - + &Previous &Precedente - + &Next &Successivo - + &Apply &Applica - + &Close &Chiudi - + Status: %1 Stato: %1 - + HTTP Status: %1 Stato HTTP: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx non riesce a connettersi a %1 per un motivo sconosciuto. - + Mixxx can't connect to %1. Mixxx non riesce a connettersi a %1. - + Original tags Tag Originali - + Suggested tags Tag Suggeriti @@ -7899,51 +7899,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - Mouse HID generico - - - Generic HID Joystick Joystick HID generico - + Generic HID Gamepad Gamepad HID Generico - - Generic HID Keyboard - Tastiera HID Generica - - - + Generic HID Multiaxis Controller Controller Multiasse HID Generico - + Unknown HID Desktop Device Dispositivo HID Desktop Sconosciuto - + HID Infrared Control Controllo HID Infrarossi - + Unknown Apple HID Device Dispositivo Apple HID Sconosciuto - + HID Unknown Device Dispositivo HID Sconosciuto - + HID Interface Number Numero Interfaccia Hid @@ -8103,27 +8093,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Analizza libreria - + It's taking Mixxx a minute to scan your music library, please wait... Mixxx necessita di un po' di tempo per scansionare la tua libreria musicale. Attendi, per cortesia... - + Cancel Annulla - + Scanning: Scansione: - + Scanning cover art (safe to cancel) Scansione cover art (è possibile interrompere) @@ -8395,39 +8385,39 @@ Do you want to select an input device? La seguente Skin non può essere caricata. - + OpenGL Direct Rendering Rendering Diretto OpenGL - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Conferma uscita - + A deck is currently playing. Exit Mixxx? Un deck è in riproduzione. Uscire da Mixxx? - + A sampler is currently playing. Exit Mixxx? Un campionamento è attualmente in riproduzione. Uscire da Mixxx? - + The preferences window is still open. La finestra delle Preferenze è ancora aperta. - + Discard any changes and exit Mixxx? Annullare ogni modifica e uscire da Mixxx? @@ -8544,59 +8534,59 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx Aggiornando Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? Mixxx adesso supporta la visualizzazione delle cover art. Vuoi scansionare la tua libreria alla ricerca di file di cover adesso? - + Scan Scansiona - + Later Successivamente - + Upgrading Mixxx from v1.9.x/1.10.x. Aggiornare Mixxx da v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. Mixxx ha un nuovo e migliorato Rilevatore di Battiti. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. Quando carichi le tracce, Mixxx può ri-analizzarle e generare nuove e più accurate beatgrids. Questo renderà il beatsync automatico e il looping più affidabile - + This does not affect saved cues, hotcues, playlists, or crates. Questo non coinvolge le cues salvate, le hotcues, le playlist o le ceste. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. Se non vuoi che Mixxx ri-analizzi le tue tracce, scegli "Mantieni il beatgrid corrente". Puoi cambiare questa impostazione in ogni momento dalla sezione "Riconoscimento Beat" delle Preferenze - + Keep Current Beatgrids Mantieni il Beatgrid Corrente - + Generate New Beatgrids Genera Nuovi Beatgrids @@ -13570,20 +13560,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Passthrough - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_it_IT.qm b/res/translations/mixxx_it_IT.qm index a2c1ce518be64b2761daa20108ff165bb7e3de8b..7a6bb7f9a9e2179a74e1e11ca34d3d5e17bc3d26 100644 GIT binary patch literal 371258 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

NliOua9;=SUX825K= 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 D+HnYI delta 18134 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 AutoDJFeature - + Crates Caixas - + Remove Crate as Track Source Remover Caixa como Fonte de Faixas - + Auto DJ Auto DJ - + Add Crate as Track Source Adicionar Caixa como Fonte de Faixas @@ -83,7 +83,7 @@ Add to Auto DJ Queue (replace) - + Add to Auto DJ Queue (replace) @@ -185,7 +185,7 @@ Add to Auto DJ Queue (replace) - + Add to Auto DJ Queue (replace) @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Não foi possível carregar a faixa. @@ -302,7 +302,7 @@ Color - + Color @@ -372,7 +372,7 @@ Samplerate - + Samplerate @@ -642,12 +642,12 @@ Arquivo Criado - + Mixxx Library Biblioteca do Mixxx - + Could not load the following file because it is in use by Mixxx or another application. Não foi possível carregar o seguinte arquivo porque ele está em uso pelo Mixxx ou por outro programa. @@ -665,17 +665,17 @@ The file '%1' could not be found. - + The file '%1' could not be found. The file '%1' could not be loaded. - + The file '%1' could not be loaded. The file '%1' is empty and could not be loaded. - + The file '%1' is empty and could not be loaded. @@ -683,12 +683,12 @@ Remove Color - + Remove Color Add Color - + Add Color @@ -699,27 +699,27 @@ Remove Palette - + Remove Palette Color - + Color Assign to Hotcue Number - + Assign to Hotcue Number Edited - + Edited Do you really want to remove the palette permanently? - + Do you really want to remove the palette permanently? @@ -732,7 +732,7 @@ %1 %2 - + %1 %2 @@ -2029,27 +2029,27 @@ Microphone & Auxiliary Show/Hide - + Microphone & Auxiliary Show/Hide Show/hide the microphone & auxiliary section - + Show/hide the microphone & auxiliary section 4 Effect Units Show/Hide - + 4 Effect Units Show/Hide Switches between showing 2 and 4 effect units - + Switches between showing 2 and 4 effect units Mixer Show/Hide - + Mixer Show/Hide @@ -2059,12 +2059,12 @@ Cover Art Show/Hide (Library) - + Cover Art Show/Hide (Library) Show/hide cover art in the library - + Show/hide cover art in the library @@ -2211,47 +2211,47 @@ Effect Unit %1 - + Effect Unit %1 Crossfader / Orientation - + Crossfader / Orientation Main Output - + Main Output Main Output Gain - + Main Output Gain Main Output gain - + Main Output gain Main Output Balance - + Main Output Balance Main Output balance - + Main Output balance Main Output Delay - + Main Output Delay Main Output delay - + Main Output delay @@ -2267,62 +2267,62 @@ BPM / Beatgrid - + BPM / Beatgrid Sync / Sync Lock - + Sync / Sync Lock Speed - + Speed Pitch (Musical Key) - + Pitch (Musical Key) Increase Pitch - + Increase Pitch Increases the pitch by one semitone - + Increases the pitch by one semitone Increase Pitch (Fine) - + Increase Pitch (Fine) Increases the pitch by 10 cents - + Increases the pitch by 10 cents Decrease Pitch - + Decrease Pitch Decreases the pitch by one semitone - + Decreases the pitch by one semitone Decrease Pitch (Fine) - + Decrease Pitch (Fine) Decreases the pitch by 10 cents - + Decreases the pitch by 10 cents @@ -2337,128 +2337,128 @@ Shift cue points earlier - + Shift cue points earlier Shift cue points 10 milliseconds earlier - + Shift cue points 10 milliseconds earlier Shift cue points earlier (fine) - + Shift cue points earlier (fine) Shift cue points 1 millisecond earlier - + Shift cue points 1 millisecond earlier Shift cue points later - + Shift cue points later Shift cue points 10 milliseconds later - + Shift cue points 10 milliseconds later Shift cue points later (fine) - + Shift cue points later (fine) Shift cue points 1 millisecond later - + Shift cue points 1 millisecond later Hotcues %1-%2 - + Hotcues %1-%2 Intro / Outro Markers - + Intro / Outro Markers Intro Start Marker - + Intro Start Marker Intro End Marker - + Intro End Marker Outro Start Marker - + Outro Start Marker Outro End Marker - + Outro End Marker intro start marker - + intro start marker intro end marker - + intro end marker outro start marker - + outro start marker outro end marker - + outro end marker Activate %1 [intro/outro marker - + Activate %1 Jump to or set the %1 [intro/outro marker - + Jump to or set the %1 Set %1 [intro/outro marker - + Set %1 Set or jump to the %1 [intro/outro marker - + Set or jump to the %1 Clear %1 [intro/outro marker - + Clear %1 Clear the %1 [intro/outro marker - + Clear the %1 @@ -2483,12 +2483,12 @@ Loop Beats - + Loop Beats Loop Roll Beats - + Loop Roll Beats @@ -2533,52 +2533,52 @@ Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats Beat Jump / Loop Move Forward Selected Beats - + Beat Jump / Loop Move Forward Selected Beats Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats Beat Jump / Loop Move Backward Selected Beats - + Beat Jump / Loop Move Backward Selected Beats Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Forward Beat Jump / Loop Move Backward - + Beat Jump / Loop Move Backward Loop Move Forward - + Loop Move Forward Loop Move Backward - + Loop Move Backward @@ -2708,37 +2708,37 @@ Go to the currently selected item - + Go to the currently selected item Choose the currently selected item and advance forward one pane if appropriate - + Choose the currently selected item and advance forward one pane if appropriate Load Track and Play - + Load Track and Play Add to Auto DJ Queue (replace) - + Add to Auto DJ Queue (replace) Replace Auto DJ Queue with selected tracks - + Replace Auto DJ Queue with selected tracks Deck %1 Quick Effect Enable Button - + Deck %1 Quick Effect Enable Button Quick Effect Enable Button - + Quick Effect Enable Button @@ -2748,17 +2748,17 @@ Super Knob (control effects' Meta Knobs) - + Super Knob (control effects' Meta Knobs) Mix Mode Toggle - + Mix Mode Toggle Toggle effect unit between D/W and D+W modes - + Toggle effect unit between D/W and D+W modes @@ -2794,7 +2794,7 @@ Effect Unit Assignment - + Effect Unit Assignment @@ -2804,33 +2804,33 @@ Effect Meta Knob (control linked effect parameters) - + Effect Meta Knob (control linked effect parameters) Meta Knob Mode - + Meta Knob Mode Set how linked effect parameters change when turning the Meta Knob. - + Set how linked effect parameters change when turning the Meta Knob. Meta Knob Mode Invert - + Meta Knob Mode Invert Invert how linked effect parameters change when turning the Meta Knob. - + Invert how linked effect parameters change when turning the Meta Knob. Button Parameter Value - + Button Parameter Value @@ -2935,12 +2935,12 @@ Cover Art Show/Hide (Decks) - + Cover Art Show/Hide (Decks) Show/hide cover art in the main decks - + Show/hide cover art in the main decks @@ -2955,22 +2955,22 @@ Vinyl Spinners Show/Hide (All Decks) - + Vinyl Spinners Show/Hide (All Decks) Show/Hide all spinnies - + Show/Hide all spinnies Toggle Waveforms - + Toggle Waveforms Show/hide the scrolling waveforms. - + Show/hide the scrolling waveforms. @@ -3000,27 +3000,27 @@ Star Rating Up - + Star Rating Up Increase the track rating by one star - + Increase the track rating by one star Star Rating Down - + Star Rating Down Decrease the track rating by one star - + Decrease the track rating by one star Start/Stop Live Broadcasting - + Start/Stop Live Broadcasting @@ -3030,13 +3030,13 @@ Start/stop recording your mix. - + Start/stop recording your mix. Samplers - + Samplers @@ -3045,22 +3045,22 @@ The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. You can ignore this error for this session but you may experience erratic behavior. - + You can ignore this error for this session but you may experience erratic behavior. Controller Mapping Error - + Controller Mapping Error The mapping for your controller "%1" is not working properly. - + The mapping for your controller "%1" is not working properly. @@ -3070,22 +3070,22 @@ Controller Mapping File Problem - + Controller Mapping File Problem The mapping for controller "%1" cannot be opened. - + The mapping for controller "%1" cannot be opened. File: - + File: Error: - + Error: @@ -3363,39 +3363,39 @@ DlgAbout - + Mixxx %1.%2 Development Team - + Mixxx %1.%2 Development Team - + With contributions from: Com contribuições de: - + And special thanks to: E agradecimentos especiais a: - + Past Developers Desenvolvedores Anteriores - + Past Contributors Contribuidores Anteriores - + Official Website - + Official Website - + Donate - + Donate @@ -3420,12 +3420,12 @@ Git Version: - + Git Version: Platform: - + Platform: @@ -3435,7 +3435,7 @@ License - + License @@ -3495,12 +3495,12 @@ Analyzing %1% %2/%3 - + Analyzing %1% %2/%3 Analyzing %1/%2 - + Analyzing %1/%2 @@ -3513,57 +3513,67 @@ Random - + Random Fade - + Fade Enable Auto DJ Shortcut: Shift+F12 - + Enable Auto DJ + +Shortcut: Shift+F12 Disable Auto DJ Shortcut: Shift+F12 - + Disable Auto DJ + +Shortcut: Shift+F12 Trigger the transition to the next track Shortcut: Shift+F11 - + Trigger the transition to the next track + +Shortcut: Shift+F11 Skip the next track in the Auto DJ queue Shortcut: Shift+F10 - + Skip the next track in the Auto DJ queue + +Shortcut: Shift+F10 Shuffle the content of the Auto DJ queue Shortcut: Shift+F9 - + Shuffle the content of the Auto DJ queue + +Shortcut: Shift+F9 Repeat the playlist - + Repeat the playlist Determines the duration of the transition - + Determines the duration of the transition @@ -3573,22 +3583,22 @@ Shortcut: Shift+F9 Full Intro + Outro - + Full Intro + Outro Fade At Outro Start - + Fade At Outro Start Full Track - + Full Track Skip Silence - + Skip Silence @@ -3614,7 +3624,28 @@ Skip Silence: Play the whole track except for silence at the beginning and end. Begin crossfading from the selected number of seconds before the last sound. - + Auto DJ Fade Modes + +Full Intro + Outro: +Play the full intro and outro. Use the intro or outro length as the +crossfade time, whichever is shorter. If no intro or outro are marked, +use the selected crossfade time. + +Fade At Outro Start: +Start crossfading at the outro start. If the outro is longer than the +intro, cut off the end of the outro. Use the intro or outro length as +the crossfade time, whichever is shorter. If no intro or outro are +marked, use the selected crossfade time. + +Full Track: +Play the whole track. Begin crossfading from the selected number of +seconds before the end of the track. A negative crossfade time adds +silence between tracks. + +Skip Silence: +Play the whole track except for silence at the beginning and end. +Begin crossfading from the selected number of seconds before the +last sound. @@ -3634,17 +3665,17 @@ last sound. Enable - + Enable Disable - + Disable Displays the duration and number of selected tracks. - + Displays the duration and number of selected tracks. @@ -3662,7 +3693,8 @@ last sound. Adds a random track from track sources (crates) to the Auto DJ queue. If no track sources are configured, the track is added from the library instead. - + Adds a random track from track sources (crates) to the Auto DJ queue. +If no track sources are configured, the track is added from the library instead. @@ -3691,26 +3723,31 @@ If no track sources are configured, the track is added from the library instead. When beat detection is enabled, Mixxx detects the beats per minute and beats of your tracks, automatically shows a beat-grid for them, and allows you to synchronize tracks using their beat information. - + When beat detection is enabled, Mixxx detects the beats per minute and beats of your tracks, +automatically shows a beat-grid for them, and allows you to synchronize tracks using their beat information. Enable fast beat detection. If activated Mixxx only analyzes the first minute of a track for beat information. This can speed up beat detection on slower computers but may result in lower quality beatgrids. - + Enable fast beat detection. +If activated Mixxx only analyzes the first minute of a track for beat information. +This can speed up beat detection on slower computers but may result in lower quality beatgrids. Converts beats detected by the analyzer into a fixed-tempo beatgrid. Use this setting if your tracks have a constant tempo (e.g. most electronic music). Often results in higher quality beatgrids, but will not do well on tracks that have tempo shifts. - + Converts beats detected by the analyzer into a fixed-tempo beatgrid. +Use this setting if your tracks have a constant tempo (e.g. most electronic music). +Often results in higher quality beatgrids, but will not do well on tracks that have tempo shifts. Re-analyze beatgrids imported from other DJ software - + Re-analyze beatgrids imported from other DJ software @@ -4035,7 +4072,7 @@ You tried to learn: %1,%2 Re-queue Tracks - + Re-queue Tracks @@ -4066,7 +4103,7 @@ You tried to learn: %1,%2 Add Random Tracks - + Add Random Tracks @@ -4119,7 +4156,7 @@ You tried to learn: %1,%2 Opus - + Opus @@ -4129,12 +4166,12 @@ You tried to learn: %1,%2 HE-AAC - + HE-AAC HE-AACv2 - + HE-AACv2 @@ -4163,38 +4200,39 @@ You tried to learn: %1,%2 '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server can't have the same mountpoint. - + '%1' has the same Icecast mountpoint as '%2'. +Two source connections to the same server can't have the same mountpoint. You can't create more than %1 source connections. - + You can't create more than %1 source connections. Source connection %1 - + Source connection %1 At least one source connection is required. - + At least one source connection is required. Are you sure you want to disconnect every active source connection? - + Are you sure you want to disconnect every active source connection? Confirmation required - + Confirmation required Are you sure you want to delete '%1'? - + Are you sure you want to delete '%1'? @@ -4204,12 +4242,12 @@ Two source connections to the same server can't have the same mountpoint. New name for '%1': - + New name for '%1': Can't rename '%1' to '%2': name already in use - + Can't rename '%1' to '%2': name already in use @@ -4247,37 +4285,37 @@ Two source connections to the same server can't have the same mountpoint. Live Broadcasting source connections - + Live Broadcasting source connections Delete selected - + Delete selected Create new connection - + Create new connection Rename selected - + Rename selected Disconnect all - + Disconnect all Turn on Live Broadcasting when applying these settings - + Turn on Live Broadcasting when applying these settings Settings for %1 - + Settings for %1 @@ -4287,12 +4325,12 @@ Two source connections to the same server can't have the same mountpoint. ICQ - + ICQ AIM - + AIM @@ -4312,12 +4350,12 @@ Two source connections to the same server can't have the same mountpoint. Select a source connection above to edit its settings here - + Select a source connection above to edit its settings here Password storage - + Password storage @@ -4327,7 +4365,7 @@ Two source connections to the same server can't have the same mountpoint. Secure storage (OS keychain) - + Secure storage (OS keychain) @@ -4482,12 +4520,12 @@ Two source connections to the same server can't have the same mountpoint. By hotcue number - + By hotcue number Color - + Color @@ -4495,38 +4533,38 @@ Two source connections to the same server can't have the same mountpoint. Color Preferences - + Color Preferences Colors - + Colors Edit… - + Edit… Track palette - + Track palette Hotcue palette - + Hotcue palette Hotcue default color - + Hotcue default color Replace… - + Replace… @@ -4576,72 +4614,72 @@ Aplicar as configurações e continuar? Mapping has been edited - + Mapping has been edited Always overwrite during this session - + Always overwrite during this session Save As - + Save As Overwrite - + Overwrite Save user mapping - + Save user mapping Enter the name for saving the mapping to the user folder. - + Enter the name for saving the mapping to the user folder. Saving mapping failed - + Saving mapping failed A mapping cannot have a blank name and may not contain special characters. - + A mapping cannot have a blank name and may not contain special characters. A mapping file with that name already exists. - + A mapping file with that name already exists. missing - + missing built-in - + built-in Do you want to save the changes? - + Do you want to save the changes? Mapping already exists. - + Mapping already exists. <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? @@ -4731,12 +4769,12 @@ Aplicar as configurações e continuar? Load Mapping: - + Load Mapping: Mapping Info - + Mapping Info @@ -4756,7 +4794,7 @@ Aplicar as configurações e continuar? Mapping Files: - + Mapping Files: @@ -4775,22 +4813,22 @@ Aplicar as configurações e continuar? Mixxx uses "mappings" to connect messages from your controller to controls in Mixxx. If you do not see a mapping for your controller in the "Load Mapping" menu when you click on your controller on the left sidebar, you may be able to download one online from the %1. Place the XML (.xml) and Javascript (.js) file(s) in the "User Mapping Folder" then restart Mixxx. If you download a mapping in a ZIP file, extract the XML and Javascript file(s) from the ZIP file to your "User Mapping Folder" then restart Mixxx. - + Mixxx uses "mappings" to connect messages from your controller to controls in Mixxx. If you do not see a mapping for your controller in the "Load Mapping" menu when you click on your controller on the left sidebar, you may be able to download one online from the %1. Place the XML (.xml) and Javascript (.js) file(s) in the "User Mapping Folder" then restart Mixxx. If you download a mapping in a ZIP file, extract the XML and Javascript file(s) from the ZIP file to your "User Mapping Folder" then restart Mixxx. Mixxx DJ Hardware Guide - + Mixxx DJ Hardware Guide MIDI Mapping File Format - + MIDI Mapping File Format MIDI Scripting with Javascript - + MIDI Scripting with Javascript @@ -4823,12 +4861,12 @@ Aplicar as configurações e continuar? Mappings - + Mappings Open User Mapping Folder - + Open User Mapping Folder @@ -5007,47 +5045,47 @@ Aplicar as configurações e continuar? mm:ss%1zz - Traditional - + mm:ss%1zz - Traditional mm:ss - Traditional (Coarse) - + mm:ss - Traditional (Coarse) s%1zz - Seconds - + s%1zz - Seconds sss%1zz - Seconds (Long) - + sss%1zz - Seconds (Long) s%1sss%2zz - Kiloseconds - + s%1sss%2zz - Kiloseconds Intro start - + Intro start Main cue - + Main cue First sound (skip silence) - + First sound (skip silence) Beginning of track - + Beginning of track @@ -5095,7 +5133,7 @@ Aplicar as configurações e continuar? Deck Preferences - + Deck Preferences @@ -5182,12 +5220,12 @@ Modo CUP: Time Format - + Time Format Intro start - + Intro start @@ -5196,33 +5234,38 @@ it will place it at the main cue point if the main cue point has been set previo This may be helpful for upgrading to Mixxx 2.3 from earlier versions. If this option is disabled, the intro start point is automatically placed at the first sound. - + When the analyzer places the intro start point automatically, +it will place it at the main cue point if the main cue point has been set previously. +This may be helpful for upgrading to Mixxx 2.3 from earlier versions. + +If this option is disabled, the intro start point is automatically placed at the first sound. Set intro start to main cue when analyzing tracks - + Set intro start to main cue when analyzing tracks Track load point - + Track load point Clone deck - + Clone deck Create a playing clone of the first playing deck by double-tapping a Load button on a controller or keyboard. You can always drag-and-drop tracks on screen to clone a deck. - + Create a playing clone of the first playing deck by double-tapping a Load button on a controller or keyboard. +You can always drag-and-drop tracks on screen to clone a deck. Double-press Load button to clone playing track - + Double-press Load button to clone playing track @@ -5464,7 +5507,7 @@ You can always drag-and-drop tracks on screen to clone a deck. Reset gain on track load - + Reset gain on track load @@ -5503,12 +5546,12 @@ You can always drag-and-drop tracks on screen to clone a deck. Keep metaknob position - + Keep metaknob position Reset metaknob to effect default - + Reset metaknob to effect default @@ -5595,7 +5638,8 @@ You can always drag-and-drop tracks on screen to clone a deck. When key detection is enabled, Mixxx detects the musical key of your tracks and allows you to pitch adjust them for harmonic mixing. - + When key detection is enabled, Mixxx detects the musical key of your tracks +and allows you to pitch adjust them for harmonic mixing. @@ -5640,7 +5684,7 @@ and allows you to pitch adjust them for harmonic mixing. Lancelot/Traditional - + Lancelot/Traditional @@ -5650,7 +5694,7 @@ and allows you to pitch adjust them for harmonic mixing. OpenKey/Traditional - + OpenKey/Traditional @@ -5793,7 +5837,7 @@ and allows you to pitch adjust them for harmonic mixing. Discovered LV2 effects - + Discovered LV2 effects @@ -5930,7 +5974,7 @@ and allows you to pitch adjust them for harmonic mixing. Settings Folder - + Settings Folder @@ -5940,12 +5984,12 @@ and allows you to pitch adjust them for harmonic mixing. Edit those files only if you know what you are doing and only while Mixxx is not running. - + Edit those files only if you know what you are doing and only while Mixxx is not running. Open Mixxx Settings Folder - + Open Mixxx Settings Folder @@ -5975,12 +6019,12 @@ and allows you to pitch adjust them for harmonic mixing. Edit metadata after clicking selected track - + Edit metadata after clicking selected track Search-as-you-type timeout: - + Search-as-you-type timeout: @@ -6016,22 +6060,22 @@ and allows you to pitch adjust them for harmonic mixing. Track Double-Click Action Sets default action when double-clicking a track in the library. - + Track Double-Click Action Add track to Auto DJ queue (bottom) - + Add track to Auto DJ queue (bottom) Add track to Auto DJ queue (top) - + Add track to Auto DJ queue (top) Ignore - + Ignore @@ -6051,12 +6095,12 @@ and allows you to pitch adjust them for harmonic mixing. Show Rekordbox Library - + Show Rekordbox Library Show Serato Library - + Show Serato Library @@ -6243,7 +6287,7 @@ and allows you to pitch adjust them for harmonic mixing. All settings take effect on next track load. Currently loaded tracks are not affected. For an explanation of these settings, see the %1 - + All settings take effect on next track load. Currently loaded tracks are not affected. For an explanation of these settings, see the %1 @@ -6257,7 +6301,7 @@ and allows you to pitch adjust them for harmonic mixing. Recordings directory invalid - + Recordings directory invalid @@ -6267,12 +6311,12 @@ and allows you to pitch adjust them for harmonic mixing. Recordings directory must be set to a directory. - + Recordings directory must be set to a directory. Recordings directory not writable - + Recordings directory not writable @@ -6341,7 +6385,7 @@ and allows you to pitch adjust them for harmonic mixing. Directory: - + Directory: @@ -6509,7 +6553,7 @@ O volume-alvo é aproximado e assume que o pré-ganho da faixa e o nível da sa Network Clock - + Network Clock @@ -6524,7 +6568,7 @@ O volume-alvo é aproximado e assume que o pré-ganho da faixa e o nível da sa Direct monitor (recording and broadcasting only) - + Direct monitor (recording and broadcasting only) @@ -6554,12 +6598,12 @@ O volume-alvo é aproximado e assume que o pré-ganho da faixa e o nível da sa The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. Mixxx DJ Hardware Guide - + Mixxx DJ Hardware Guide @@ -6569,23 +6613,23 @@ O volume-alvo é aproximado e assume que o pré-ganho da faixa e o nível da sa Measure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Measure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. Refer to the Mixxx User Manual for details. - + Refer to the Mixxx User Manual for details. Configured latency has changed. - + Configured latency has changed. Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. @@ -6628,12 +6672,12 @@ O volume-alvo é aproximado e assume que o pré-ganho da faixa e o nível da sa Engine Clock - + Engine Clock Use soundcard clock for live audience setups and lowest latency.<br>Use network clock for broadcasting without a live audience. - + Use soundcard clock for live audience setups and lowest latency.<br>Use network clock for broadcasting without a live audience. @@ -6643,7 +6687,7 @@ O volume-alvo é aproximado e assume que o pré-ganho da faixa e o nível da sa Microphone Latency Compensation - + Microphone Latency Compensation @@ -6804,12 +6848,12 @@ O volume-alvo é aproximado e assume que o pré-ganho da faixa e o nível da sa Vinyl Type - + Vinyl Type Lead-In - + Lead-In @@ -6824,7 +6868,7 @@ O volume-alvo é aproximado e assume que o pré-ganho da faixa e o nível da sa Deck 3 - + Deck 3 @@ -6991,7 +7035,7 @@ O volume-alvo é aproximado e assume que o pré-ganho da faixa e o nível da sa Waveform type - + Waveform type @@ -7002,7 +7046,8 @@ O volume-alvo é aproximado e assume que o pré-ganho da faixa e o nível da sa The waveform overview shows the waveform envelope of the entire track. Select from different types of displays for the waveform overview, which differ primarily in the level of detail shown in the waveform. - + The waveform overview shows the waveform envelope of the entire track. +Select from different types of displays for the waveform overview, which differ primarily in the level of detail shown in the waveform. @@ -7013,12 +7058,12 @@ Select from different types of displays for the waveform, which differ primarily Waveform overview type - + Waveform overview type fps - + fps @@ -7053,7 +7098,7 @@ Select from different types of displays for the waveform, which differ primarily Beat grid opacity - + Beat grid opacity @@ -7068,12 +7113,12 @@ Select from different types of displays for the waveform, which differ primarily Play marker position - + Play marker position Moves the play marker position on the waveforms to the left, right or center (default). - + Moves the play marker position on the waveforms to the left, right or center (default). @@ -7121,12 +7166,12 @@ Select from different types of displays for the waveform, which differ primarily Decks - + Decks Colors - + Colors @@ -7208,7 +7253,7 @@ Select from different types of displays for the waveform, which differ primarily Recording to file: - + Recording to file: @@ -7226,69 +7271,69 @@ Select from different types of displays for the waveform, which differ primarily Replace Hotcue Color - + Replace Hotcue Color Replace cue color if … - + Replace cue color if … Hotcue index - + Hotcue index is - + is is not - + is not Current cue color - + Current cue color If you don't specify any conditions, the colors of all cues in the library will be replaced. - + If you don't specify any conditions, the colors of all cues in the library will be replaced. … by: - + … by: New cue color - + New cue color Selecting database rows... - + Selecting database rows... No colors changed! - + No colors changed! No cues matched the specified criteria. - + No cues matched the specified criteria. Confirm Color Replacement - + Confirm Color Replacement @@ -7309,123 +7354,123 @@ Select from different types of displays for the waveform, which differ primarily Selecione a melhor combinação - - + + Track Faixa - - + + Year Ano - + Title Título - - + + Artist Artista - - + + Album Álbum - + Album Artist Artista do Álbum - + Fetching track data from the MusicBrainz database Buscando dados sobre a faixa no banco de dados do MusicBrainz - + Mixxx could not find this track in the MusicBrainz database. O Mixxx não conseguiu encontrar esta faixa no banco de dados do MusicBrainz. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. Obter chave da API - + Submit Submits audio fingerprints to the MusicBrainz database. Enviar - + New Column Nova Coluna - + New Item Novo Item - + &Previous &Anterior - + &Next &Próximo - + &Apply &Aplicar - + &Close &Fechar - + Status: %1 Status: %1 - + HTTP Status: %1 Status do HTTP: %1 - + Code: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx não conseguiu conectar a %1 por uma razão desconhecida. - + Mixxx can't connect to %1. Mixxx não conseguiu conectar a %1. - + Original tags Etiquetas originais - + Suggested tags Etiquetas sugeridas @@ -7620,7 +7665,7 @@ Select from different types of displays for the waveform, which differ primarily Import Metadata from MusicBrainz - + Import Metadata from MusicBrainz @@ -7630,7 +7675,7 @@ Select from different types of displays for the waveform, which differ primarily Date added: - + Date added: @@ -7647,7 +7692,9 @@ Select from different types of displays for the waveform, which differ primarily Converts beats detected by the analyzer into a fixed-tempo beatgrid. Use this setting if your tracks have a constant tempo (e.g. most electronic music). Often results in higher quality beatgrids, but will not do well on tracks that have tempo shifts. - + Converts beats detected by the analyzer into a fixed-tempo beatgrid. +Use this setting if your tracks have a constant tempo (e.g. most electronic music). +Often results in higher quality beatgrids, but will not do well on tracks that have tempo shifts. @@ -7755,7 +7802,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Visible - + Visible @@ -7803,7 +7850,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Tremolo - + Tremolo @@ -7920,51 +7967,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - Mouse HID Genérico - - - Generic HID Joystick Joystick HID Genérico - + Generic HID Gamepad Gamepad HID Genérico - - Generic HID Keyboard - Teclado HID Genérico - - - + Generic HID Multiaxis Controller Controlador HID Multieixos Genérico - + Unknown HID Desktop Device Dispositivo HID Desconhecido de Mesa - + HID Infrared Control Controlador Infravermelho HID - + Unknown Apple HID Device Dispositivo HID Apple Desconhecido - + HID Unknown Device Dispositivo HID Desconhecido - + HID Interface Number Número da Interface HID @@ -8110,7 +8147,7 @@ OpenGL. Overwrite File? - + Overwrite File? @@ -8118,33 +8155,36 @@ OpenGL. The default "m3u" extension was added because none was specified. Do you really want to overwrite it? - + A playlist file with the name "%1" already exists. +The default "m3u" extension was added because none was specified. + +Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Examinador de Bibliotecas - + It's taking Mixxx a minute to scan your music library, please wait... Mixxx está levando um minuto para examinar a sua biblioteca de músicas, por favor aguarde... - + Cancel Cancelar - + Scanning: Examinando: - + Scanning cover art (safe to cancel) Examinando artes de capa (seguro para cancelar) @@ -8172,7 +8212,7 @@ Do you really want to overwrite it? One or more MixxxControls specified in the outputs section of the loaded mapping were invalid. - + One or more MixxxControls specified in the outputs section of the loaded mapping were invalid. @@ -8188,7 +8228,7 @@ Do you really want to overwrite it? * Make sure the MixxxControls in question actually exist. Visit the manual for a complete list: - + * Make sure the MixxxControls in question actually exist. Visit the manual for a complete list: @@ -8396,13 +8436,15 @@ Por favor selecione um dispositivo de entrada nas preferências do hardware de s There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this microphone. +Do you want to select an input device? There is no input device selected for this auxiliary. Do you want to select an input device? - + There is no input device selected for this auxiliary. +Do you want to select an input device? @@ -8415,39 +8457,39 @@ Do you want to select an input device? A skin selecionada não pôde ser carregada. - + OpenGL Direct Rendering Renderização Direta OpenGL - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Confirmar a Saída - + A deck is currently playing. Exit Mixxx? Um deck está tocando neste momento. Sair do Mixxx? - + A sampler is currently playing. Exit Mixxx? Um sampler está tocando neste momento. Sair do Mixxx? - + The preferences window is still open. A janela de preferências ainda está aberta. - + Discard any changes and exit Mixxx? Descartar quaisquer mudanças e sair do Mixxx? @@ -8564,59 +8606,59 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx Atualizando o Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? O Mixxx agora suporta mostrar a arte da capa. Você quer examinar a sua biblioteca procurando por arquivos de capa agora? - + Scan Examinar - + Later Depois - + Upgrading Mixxx from v1.9.x/1.10.x. Atualizando o Mixxx a partir de v1.9.x/1.10.x - + Mixxx has a new and improved beat detector. O Mixxx tem um novo e melhorado detector de batidas. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. Quando você carrega músicas, o Mixxx pode as re-analisar e gerar novas, mais precisas, grades de batidas. Isto vai tornar a sincronização automática e loops mais confiáveis. - + This does not affect saved cues, hotcues, playlists, or crates. Isto não afeta os pontos cue salvos, hotcues, listas de reprodução ou caixas. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. Se você não quiser que o Mixxx re-analise suas músicas, selecione "Manter as Grades de Batidas Atuais". Você pode modificar esta configuração a qualquer momento na seção "Detecção de de Batidas" das preferências. - + Keep Current Beatgrids Manter as Grades de Batidas Atuais - + Generate New Beatgrids Gerar Novas Grades de Batidas @@ -8738,7 +8780,7 @@ Você quer examinar a sua biblioteca procurando por arquivos de capa agora? Booth - + Booth @@ -8798,7 +8840,7 @@ Você quer examinar a sua biblioteca procurando por arquivos de capa agora? Using Opus at samplerates other than 48 kHz is not supported by the Opus encoder. Please use 48000 Hz in "Sound Hardware" preferences or switch to a different encoding. - + Using Opus at samplerates other than 48 kHz is not supported by the Opus encoder. Please use 48000 Hz in "Sound Hardware" preferences or switch to a different encoding. @@ -8844,7 +8886,11 @@ Para abortar esta ação, pressione Cancelar no diálogo de arquivos. - + Due to macOS sandboxing, Mixxx needs your permission to access your music library and settings from Mixxx versions before 2.3.0. After clicking OK, you will see a file selection dialog. + +To allow Mixxx to use your old library and settings, click the Open button in the file selection dialog. Mixxx will then move your old settings into the sandbox. This only needs to be done once. + +If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx will create a new music library and use default settings. @@ -8856,7 +8902,7 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx Bitcrusher - + Bitcrusher @@ -8866,7 +8912,7 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx The bit depth of the samples - + The bit depth of the samples @@ -8881,7 +8927,7 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx The sample rate to which the signal is downsampled - + The sample rate to which the signal is downsampled @@ -8893,13 +8939,13 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx Time - + Time Ping Pong - + Ping Pong @@ -8925,14 +8971,16 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx Stores the input signal in a temporary buffer and outputs it after a short time - + Stores the input signal in a temporary buffer and outputs it after a short time Delay time 1/8 - 2 beats if tempo is detected 1/8 - 2 seconds if no tempo is detected - + Delay time +1/8 - 2 beats if tempo is detected +1/8 - 2 seconds if no tempo is detected @@ -8942,7 +8990,7 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx How much the echoed sound bounces between the left and right sides of the stereo field - + How much the echoed sound bounces between the left and right sides of the stereo field @@ -8966,12 +9014,12 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx Triplets - + Triplets When the Quantize parameter is enabled, divide rounded 1/4 beats of Time parameter by 3. - + When the Quantize parameter is enabled, divide rounded 1/4 beats of Time parameter by 3. @@ -8982,12 +9030,12 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx Allows only high or low frequencies to play. - + Allows only high or low frequencies to play. Low Pass Filter Cutoff - + Low Pass Filter Cutoff @@ -9015,7 +9063,7 @@ Default: flat top High Pass Filter Cutoff - + High Pass Filter Cutoff @@ -9047,7 +9095,7 @@ Default: flat top Speed - + Speed @@ -9065,33 +9113,36 @@ Default: flat top Speed of the LFO (low frequency oscillator) 32 - 1/4 beats rounded to 1/2 beat per LFO cycle if tempo is detected 1/32 - 4 Hz if no tempo is detected - + Speed of the LFO (low frequency oscillator) +32 - 1/4 beats rounded to 1/2 beat per LFO cycle if tempo is detected +1/32 - 4 Hz if no tempo is detected Delay amplitude of the LFO (low frequency oscillator) - + Delay amplitude of the LFO (low frequency oscillator) Delay offset of the LFO (low frequency oscillator). With width at zero, this allows for manually sweeping over the entire delay range. - + Delay offset of the LFO (low frequency oscillator). +With width at zero, this allows for manually sweeping over the entire delay range. Regeneration - + Regeneration Regen - + Regen How much of the delay output is feed back into the input - + How much of the delay output is feed back into the input @@ -9103,13 +9154,13 @@ With width at zero, this allows for manually sweeping over the entire delay rang Divide rounded 1/2 beats of the Period parameter by 3. - + Divide rounded 1/2 beats of the Period parameter by 3. Mix - + Mix @@ -9129,7 +9180,7 @@ With width at zero, this allows for manually sweeping over the entire delay rang Adds a metronome click sound to the stream - + Adds a metronome click sound to the stream @@ -9149,7 +9200,7 @@ With width at zero, this allows for manually sweeping over the entire delay rang Synchronizes the BPM with the track if it can be retrieved - + Synchronizes the BPM with the track if it can be retrieved @@ -9163,19 +9214,21 @@ With width at zero, this allows for manually sweeping over the entire delay rang Autopan - + Autopan Bounce the sound left and right across the stereo field - + Bounce the sound left and right across the stereo field How fast the sound goes from one side to another 1/4 - 4 beats rounded to 1/2 beat if tempo is detected 1/4 - 4 seconds if no tempo is detected - + How fast the sound goes from one side to another +1/4 - 4 beats rounded to 1/2 beat if tempo is detected +1/4 - 4 seconds if no tempo is detected @@ -9190,12 +9243,12 @@ With width at zero, this allows for manually sweeping over the entire delay rang How smoothly the signal goes from one side to the other - + How smoothly the signal goes from one side to the other How far the signal goes to each side - + How far the signal goes to each side @@ -9205,7 +9258,7 @@ With width at zero, this allows for manually sweeping over the entire delay rang Emulates the sound of the signal bouncing off the walls of a room - + Emulates the sound of the signal bouncing off the walls of a room @@ -9216,7 +9269,7 @@ With width at zero, this allows for manually sweeping over the entire delay rang Lower decay values cause reverberations to fade out more quickly. - + Lower decay values cause reverberations to fade out more quickly. @@ -9227,7 +9280,7 @@ Higher values result in less attenuation of high frequencies. How much of the signal to send in to the effect - + How much of the signal to send in to the effect @@ -9424,7 +9477,9 @@ Higher values result in less attenuation of high frequencies. Period of the LFO (low frequency oscillator) 1/4 - 4 beats rounded to 1/2 beat if tempo is detected 1/4 - 4 seconds if no tempo is detected - + Period of the LFO (low frequency oscillator) +1/4 - 4 beats rounded to 1/2 beat if tempo is detected +1/4 - 4 seconds if no tempo is detected @@ -9450,7 +9505,7 @@ Higher values result in less attenuation of high frequencies. Sets the LFOs (low frequency oscillators) for the left and right channels out of phase with each others - + Sets the LFOs (low frequency oscillators) for the left and right channels out of phase with each others @@ -9654,18 +9709,18 @@ Higher values result in less attenuation of high frequencies. Adjust balance between left and right channels - + Adjust balance between left and right channels Mid/Side - + Mid/Side Bypass Fr. - + Bypass Fr. @@ -9683,12 +9738,15 @@ Higher values result in less attenuation of high frequencies. Fully left: mono Fully right: only side ambiance Center: does not change the original signal. - + Adjust stereo width by changing balance between middle and side of the signal. +Fully left: mono +Fully right: only side ambiance +Center: does not change the original signal. Frequencies below this cutoff are not adjusted in the stereo field - + Frequencies below this cutoff are not adjusted in the stereo field @@ -9698,24 +9756,25 @@ Center: does not change the original signal. Param EQ - + Param EQ An gentle 2-band parametric equalizer based on biquad filters. It is designed as a complement to the steep mixing equalizers. - + An gentle 2-band parametric equalizer based on biquad filters. +It is designed as a complement to the steep mixing equalizers. Gain 1 - + Gain 1 Gain for Filter 1 - + Gain for Filter 1 @@ -9728,24 +9787,26 @@ It is designed as a complement to the steep mixing equalizers. Controls the bandwidth of Filter 1. A lower Q affects a wider band of frequencies, a higher Q affects a narrower band of frequencies. - + Controls the bandwidth of Filter 1. +A lower Q affects a wider band of frequencies, +a higher Q affects a narrower band of frequencies. Center 1 - + Center 1 Center frequency for Filter 1, from 100 Hz to 14 kHz - + Center frequency for Filter 1, from 100 Hz to 14 kHz Gain 2 - + Gain 2 @@ -9756,36 +9817,38 @@ a higher Q affects a narrower band of frequencies. Q 2 - + Q 2 Controls the bandwidth of Filter 2. A lower Q affects a wider band of frequencies, a higher Q affects a narrower band of frequencies. - + Controls the bandwidth of Filter 2. +A lower Q affects a wider band of frequencies, +a higher Q affects a narrower band of frequencies. Center 2 - + Center 2 Center frequency for Filter 2, from 100 Hz to 14 kHz - + Center frequency for Filter 2, from 100 Hz to 14 kHz Tremolo - + Tremolo Cycles the volume up and down - + Cycles the volume up and down @@ -9809,38 +9872,43 @@ a higher Q affects a narrower band of frequencies. Width of the volume peak 10% - 90% of the effect period - + Width of the volume peak +10% - 90% of the effect period Shape of the volume modulation wave Fully left: Square wave Fully right: Sine wave - + Shape of the volume modulation wave +Fully left: Square wave +Fully right: Sine wave When the Quantize parameter is enabled, divide the effect period by 3. - + When the Quantize parameter is enabled, divide the effect period by 3. Waveform - + Waveform Phase - + Phase Shifts the position of the volume peak within the period Fully left: beginning of the effect period Fully right: end of the effect period - + Shifts the position of the volume peak within the period +Fully left: beginning of the effect period +Fully right: end of the effect period @@ -9850,7 +9918,7 @@ Fully right: end of the effect period Triplet - + Triplet @@ -9861,78 +9929,78 @@ Fully right: end of the effect period This plugin does not support stereo samples as input/output - + This plugin does not support stereo samples as input/output This plugin has features which are not yet supported - + This plugin has features which are not yet supported Unknown status - + Unknown status Parameters of %1 - + Parameters of %1 Queen Mary University London - + Queen Mary University London Queen Mary Tempo and Beat Tracker - + Queen Mary Tempo and Beat Tracker Queen Mary Key Detector - + Queen Mary Key Detector SoundTouch BPM Detector (Legacy) - + SoundTouch BPM Detector (Legacy) Constrained VBR - + Constrained VBR CBR - + CBR Full VBR (bitrate ignored) - + Full VBR (bitrate ignored) <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. MP3 encoding is not supported. Lame could not be initialized - + MP3 encoding is not supported. Lame could not be initialized OGG recording is not supported. OGG/Vorbis library could not be initialized. - + OGG recording is not supported. OGG/Vorbis library could not be initialized. @@ -10018,12 +10086,12 @@ Fully right: end of the effect period Low Disk Space Warning - + Low Disk Space Warning There is less than 1 GiB of useable space in the recording folder - + There is less than 1 GiB of useable space in the recording folder @@ -10043,7 +10111,7 @@ Fully right: end of the effect period You can change the location of the Recordings folder in Preferences -> Recording. - + You can change the location of the Recordings folder in Preferences -> Recording. @@ -10062,7 +10130,7 @@ Fully right: end of the effect period Rekordbox - + Rekordbox @@ -10072,12 +10140,12 @@ Fully right: end of the effect period Folders - + Folders Hot cues - + Hot cues @@ -10087,27 +10155,27 @@ Fully right: end of the effect period Check for attached Rekordbox USB / SD devices (refresh) - + Check for attached Rekordbox USB / SD devices (refresh) Beatgrids - + Beatgrids Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: Memory cues - + Memory cues (loading) Rekordbox - + (loading) Rekordbox @@ -10139,7 +10207,7 @@ Fully right: end of the effect period Mixxx Sampler Banks (*%1) - + Mixxx Sampler Banks (*%1) @@ -10174,7 +10242,7 @@ Fully right: end of the effect period Reads the following from the Serato Music directory and removable devices: - + Reads the following from the Serato Music directory and removable devices: @@ -10189,12 +10257,12 @@ Fully right: end of the effect period Check for Serato databases (refresh) - + Check for Serato databases (refresh) (loading) Serato - + (loading) Serato @@ -10272,7 +10340,7 @@ Fully right: end of the effect period Error setting tls mode: - + Error setting tls mode: @@ -10322,17 +10390,17 @@ Fully right: end of the effect period Error setting stream IRC! - + Error setting stream IRC! Error setting stream AIM! - + Error setting stream AIM! Error setting stream ICQ! - + Error setting stream ICQ! @@ -10357,7 +10425,7 @@ Fully right: end of the effect period Broadcasting at 96 kHz with Ogg Vorbis is not currently supported. Please try a different sample rate or switch to a different encoding. - + Broadcasting at 96 kHz with Ogg Vorbis is not currently supported. Please try a different sample rate or switch to a different encoding. @@ -10382,7 +10450,7 @@ Fully right: end of the effect period Error: Shoutcast only supports MP3 and AAC encoders - + Error: Shoutcast only supports MP3 and AAC encoders @@ -10397,17 +10465,17 @@ Fully right: end of the effect period Connection error - + Connection error One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> - + One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> Connection message - + Connection message @@ -10535,12 +10603,12 @@ Fully right: end of the effect period Identifying track through Acoustid - + Identifying track through Acoustid Retrieving metadata from MusicBrainz - + Retrieving metadata from MusicBrainz @@ -10563,7 +10631,7 @@ Fully right: end of the effect period Double-click - + Double-click @@ -10573,7 +10641,7 @@ Fully right: end of the effect period Shift-key - + Shift-key @@ -10588,7 +10656,7 @@ Fully right: end of the effect period Effects within the chain must be enabled to hear them. - + Effects within the chain must be enabled to hear them. @@ -10654,12 +10722,12 @@ Fully right: end of the effect period Big Spinny/Cover Art - + Big Spinny/Cover Art Show a big version of the Spinny or track cover art if enabled. - + Show a big version of the Spinny or track cover art if enabled. @@ -10724,12 +10792,12 @@ Fully right: end of the effect period Auxiliary Peak Indicator - + Auxiliary Peak Indicator Indicates when the signal on the auxiliary is clipping, - + Indicates when the signal on the auxiliary is clipping, @@ -10774,12 +10842,12 @@ Fully right: end of the effect period Booth Gain - + Booth Gain Adjusts the booth output gain. - + Adjusts the booth output gain. @@ -10896,7 +10964,7 @@ Fully right: end of the effect period Show/hide Cover Art of the selected track in the library. - + Show/hide Cover Art of the selected track in the library. @@ -10911,12 +10979,12 @@ Fully right: end of the effect period Show/hide the scrolling waveforms - + Show/hide the scrolling waveforms Show/hide the beatgrid controls section - + Show/hide the beatgrid controls section @@ -10941,7 +11009,7 @@ Fully right: end of the effect period Hide all skin sections except the decks to have more screen space for the track library. - + Hide all skin sections except the decks to have more screen space for the track library. @@ -10956,12 +11024,12 @@ Fully right: end of the effect period Volume Meters - + Volume Meters Show/hide volume meters for channels and master output. - + Show/hide volume meters for channels and master output. @@ -10986,12 +11054,12 @@ Fully right: end of the effect period Auxiliary Gain - + Auxiliary Gain Adjusts the pre-fader auxiliary gain. - + Adjusts the pre-fader auxiliary gain. @@ -11011,7 +11079,7 @@ Fully right: end of the effect period Microphone Talkover Mode - + Microphone Talkover Mode @@ -11021,12 +11089,12 @@ Fully right: end of the effect period Manual: Reduce music volume by a fixed amount set by the Strength knob. - + Manual: Reduce music volume by a fixed amount set by the Strength knob. Behavior depends on Microphone Talkover Mode: - + Behavior depends on Microphone Talkover Mode: @@ -11248,12 +11316,12 @@ Fully right: end of the effect period Toggle visibility of Rate Control - + Toggle visibility of Rate Control (while previewing) - + (while previewing) @@ -11273,7 +11341,7 @@ Fully right: end of the effect period Is latching the playing state. - + Is latching the playing state. @@ -11288,12 +11356,12 @@ Fully right: end of the effect period Plays track from the cue point. - + Plays track from the cue point. Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. - + Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. @@ -11313,27 +11381,27 @@ Fully right: end of the effect period Tempo Range Display - + Tempo Range Display Displays the current range of the tempo slider. - + Displays the current range of the tempo slider. Delete selected hotcue. - + Delete selected hotcue. Opens separate artwork viewer. - + Opens separate artwork viewer. Select and configure a hardware device for this input - + Select and configure a hardware device for this input @@ -11343,59 +11411,59 @@ Fully right: end of the effect period Auto: Automatically reduce music volume when microphone volume rises above threshold. - + Auto: Automatically reduce music volume when microphone volume rises above threshold. Adjust the amount the music volume is reduced with the Strength knob. - + Adjust the amount the music volume is reduced with the Strength knob. Auto: Sets how much to reduce the music volume when the volume of active microphones rises above threshold. - + Auto: Sets how much to reduce the music volume when the volume of active microphones rises above threshold. Manual: Sets how much to reduce the music volume, when talkover is activated regardless of volume of microphone inputs. - + Manual: Sets how much to reduce the music volume, when talkover is activated regardless of volume of microphone inputs. Shift cues earlier - + Shift cues earlier Shift cues imported from Serato or Rekordbox if they are slightly off time. - + Shift cues imported from Serato or Rekordbox if they are slightly off time. Left click: shift 10 milliseconds earlier - + Left click: shift 10 milliseconds earlier Right click: shift 1 millisecond earlier - + Right click: shift 1 millisecond earlier Shift cues later - + Shift cues later Left click: shift 10 milliseconds later - + Left click: shift 10 milliseconds later Right click: shift 1 millisecond later - + Right click: shift 1 millisecond later @@ -11405,42 +11473,42 @@ Fully right: end of the effect period Auto DJ is active - + Auto DJ is active Hot Cue - Track will seek to nearest previous hotcue point. - + Hot Cue - Track will seek to nearest previous hotcue point. Sets the track Loop-In Marker to the current play position. - + Sets the track Loop-In Marker to the current play position. Press and hold to move Loop-In Marker. - + Press and hold to move Loop-In Marker. Jump to Loop-In Marker. - + Jump to Loop-In Marker. Sets the track Loop-Out Marker to the current play position. - + Sets the track Loop-Out Marker to the current play position. Press and hold to move Loop-Out Marker. - + Press and hold to move Loop-Out Marker. Jump to Loop-Out Marker. - + Jump to Loop-Out Marker. @@ -11450,22 +11518,22 @@ Fully right: end of the effect period Select the size of the loop in beats to set with the Beatloop button. - + Select the size of the loop in beats to set with the Beatloop button. Changing this resizes the loop if the loop already matches this size. - + Changing this resizes the loop if the loop already matches this size. Halve the size of an existing beatloop, or halve the size of the next beatloop set with the Beatloop button. - + Halve the size of an existing beatloop, or halve the size of the next beatloop set with the Beatloop button. Double the size of an existing beatloop, or double the size of the next beatloop set with the Beatloop button. - + Double the size of an existing beatloop, or double the size of the next beatloop set with the Beatloop button. @@ -11480,82 +11548,82 @@ Fully right: end of the effect period Beatjump/Loop Move Size - + Beatjump/Loop Move Size Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. Beatjump Forward - + Beatjump Forward Jump forward by the set number of beats. - + Jump forward by the set number of beats. Move the loop forward by the set number of beats. - + Move the loop forward by the set number of beats. Jump forward by 1 beat. - + Jump forward by 1 beat. Move the loop forward by 1 beat. - + Move the loop forward by 1 beat. Beatjump Backward - + Beatjump Backward Jump backward by the set number of beats. - + Jump backward by the set number of beats. Move the loop backward by the set number of beats. - + Move the loop backward by the set number of beats. Jump backward by 1 beat. - + Jump backward by 1 beat. Move the loop backward by 1 beat. - + Move the loop backward by 1 beat. Reloop - + Reloop If the loop is ahead of the current position, looping will start when the loop is reached. - + If the loop is ahead of the current position, looping will start when the loop is reached. Works only if Loop-In and Loop-Out Marker are set. - + Works only if Loop-In and Loop-Out Marker are set. Enable loop, jump to Loop-In Marker, and stop playback. - + Enable loop, jump to Loop-In Marker, and stop playback. @@ -11570,17 +11638,17 @@ Fully right: end of the effect period Hint: Change the time format in Preferences -> Decks. - + Hint: Change the time format in Preferences -> Decks. Show/hide intro & outro markers and associated buttons. - + Show/hide intro & outro markers and associated buttons. Intro Start Marker - + Intro Start Marker @@ -11588,7 +11656,7 @@ Fully right: end of the effect period If marker is set, jumps to the marker. - + If marker is set, jumps to the marker. @@ -11596,7 +11664,7 @@ Fully right: end of the effect period If marker is not set, sets the marker to the current play position. - + If marker is not set, sets the marker to the current play position. @@ -11604,89 +11672,91 @@ Fully right: end of the effect period If marker is set, clears the marker. - + If marker is set, clears the marker. Intro End Marker - + Intro End Marker Outro Start Marker - + Outro Start Marker Outro End Marker - + Outro End Marker Mix - + Mix Adjust the mixing of the dry (input) signal with the wet (output) signal of the effect unit - + Adjust the mixing of the dry (input) signal with the wet (output) signal of the effect unit D/W mode: Crossfade between dry and wet - + D/W mode: Crossfade between dry and wet D+W mode: Add wet to dry - + D+W mode: Add wet to dry Mix Mode - + Mix Mode Adjust how the dry (input) signal is mixed with the wet (output) signal of the effect unit - + Adjust how the dry (input) signal is mixed with the wet (output) signal of the effect unit Dry/Wet mode (crossed lines): Mix knob crossfades between dry and wet Use this to change the sound of the track with EQ and filter effects. - + Dry/Wet mode (crossed lines): Mix knob crossfades between dry and wet +Use this to change the sound of the track with EQ and filter effects. Dry+Wet mode (flat dry line): Mix knob adds wet to dry Use this to change only the effected (wet) signal with EQ and filter effects. - + Dry+Wet mode (flat dry line): Mix knob adds wet to dry +Use this to change only the effected (wet) signal with EQ and filter effects. Route the left crossfader bus through this effect unit. - + Route the left crossfader bus through this effect unit. Route the right crossfader bus through this effect unit. - + Route the right crossfader bus through this effect unit. Right side active: parameter moves with right half of Meta Knob turn - + Right side active: parameter moves with right half of Meta Knob turn Skin Settings Menu - + Skin Settings Menu Show/hide skin settings menu - + Show/hide skin settings menu @@ -11696,7 +11766,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Save the collection of samples loaded in the samplers. - + Save the collection of samples loaded in the samplers. @@ -11706,7 +11776,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Load a previously saved collection of samples into the samplers. - + Load a previously saved collection of samples into the samplers. @@ -11796,7 +11866,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Show/hide parameters for effects in this unit. - + Show/hide parameters for effects in this unit. @@ -11806,27 +11876,27 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Enable or disable this whole effect unit. - + Enable or disable this whole effect unit. Controls the Meta Knob of all effects in this unit together. - + Controls the Meta Knob of all effects in this unit together. Load next effect chain preset into this effect unit. - + Load next effect chain preset into this effect unit. Load previous effect chain preset into this effect unit. - + Load previous effect chain preset into this effect unit. Load next or previous effect chain preset into this effect unit. - + Load next or previous effect chain preset into this effect unit. @@ -11839,17 +11909,17 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Assign Effect Unit - + Assign Effect Unit Assign this effect unit to the channel output. - + Assign this effect unit to the channel output. Route the headphone channel through this effect unit. - + Route the headphone channel through this effect unit. @@ -11859,27 +11929,27 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Route this deck through the indicated effect unit. - + Route this deck through the indicated effect unit. Route this sampler through the indicated effect unit. - + Route this sampler through the indicated effect unit. Route this microphone through the indicated effect unit. - + Route this microphone through the indicated effect unit. Route this auxiliary input through the indicated effect unit. - + Route this auxiliary input through the indicated effect unit. The effect unit must also be assigned to a deck or other sound source to hear the effect. - + The effect unit must also be assigned to a deck or other sound source to hear the effect. @@ -11949,22 +12019,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Inactive: parameter not linked - + Inactive: parameter not linked Active: parameter moves with Meta Knob - + Active: parameter moves with Meta Knob Left side active: parameter moves with left half of Meta Knob turn - + Left side active: parameter moves with left half of Meta Knob turn Left and right side active: parameter moves across range with half of Meta Knob turn and back with the other half - + Left and right side active: parameter moves across range with half of Meta Knob turn and back with the other half @@ -12155,27 +12225,27 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Drag this item to other decks/samplers, to crates and playlist or to external file manager. - + Drag this item to other decks/samplers, to crates and playlist or to external file manager. Shows information about the track currently loaded in this deck. - + Shows information about the track currently loaded in this deck. Left click to jump around in the track. - + Left click to jump around in the track. Right click hotcues to edit their labels and colors. - + Right click hotcues to edit their labels and colors. Right click anywhere else to show the time at that point. - + Right click anywhere else to show the time at that point. @@ -12300,7 +12370,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Microphone Talkover Ducking Strength - + Microphone Talkover Ducking Strength @@ -12310,7 +12380,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Changes the number of hotcue buttons displayed in the deck - + Changes the number of hotcue buttons displayed in the deck @@ -12336,12 +12406,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Opens the track properties editor - + Opens the track properties editor Opens the track context menu. - + Opens the track context menu. @@ -12463,7 +12533,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Opens a menu to clear hotcues or edit their labels and colors. - + Opens a menu to clear hotcues or edit their labels and colors. @@ -12609,17 +12679,17 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Crossfader Orientation - + Crossfader Orientation Set the channel's crossfader orientation. - + Set the channel's crossfader orientation. Either to the left side of crossfader, to the right side or to the center (unaffected by crossfader) - + Either to the left side of crossfader, to the right side or to the center (unaffected by crossfader) @@ -13062,12 +13132,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. No color - + No color Custom color - + Custom color @@ -13082,7 +13152,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Clear cover clears the set cover art -- does not touch files on disk - + Clear cover @@ -13106,32 +13176,32 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Cue number - + Cue number Cue position - + Cue position Edit cue label - + Edit cue label Label... - + Label... Delete this cue - + Delete this cue Hotcue #%1 - + Hotcue #%1 @@ -13268,12 +13338,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Show Skin Settings Menu - + Show Skin Settings Menu Show the Skin Settings Menu of the currently selected Skin - + Show the Skin Settings Menu of the currently selected Skin @@ -13590,23 +13660,23 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Transpassar - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - + Ready to play, analyzing... - - + + Loading track... Text on waveform overview when file is cached from source - + Loading track... - + Finalizing... Text on waveform overview during finalizing of waveform analysis - + Finalizing... @@ -13643,7 +13713,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Clear the search bar input field - + Clear the search bar input field @@ -13653,12 +13723,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Use operators like bpm:115-128, artist:BooFar, -year:1990 - + Use operators like bpm:115-128, artist:BooFar, -year:1990 For more information see User Manual > Mixxx Library - + For more information see User Manual > Mixxx Library @@ -13700,7 +13770,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Load to - + Load to @@ -13730,7 +13800,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Update external collections - + Update external collections @@ -13740,12 +13810,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Adjust BPM - + Adjust BPM Select Color - + Select Color @@ -13766,7 +13836,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Add to Auto DJ Queue (replace) - + Add to Auto DJ Queue (replace) @@ -13781,12 +13851,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Remove from Playlist - + Remove from Playlist Remove from Crate - + Remove from Crate @@ -13826,17 +13896,17 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Export To File Tags - + Export To File Tags BPM and Beatgrid - + BPM and Beatgrid Play Count - + Play Count @@ -13846,7 +13916,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Cue Point - + Cue Point @@ -13856,17 +13926,17 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Intro - + Intro Outro - + Outro Loop - + Loop @@ -13881,7 +13951,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Waveform - + Waveform @@ -13931,7 +14001,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Reset BPM - + Reset BPM @@ -13994,7 +14064,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Add to New Crate - + Add to New Crate @@ -14119,12 +14189,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. (GLSL ES) - + (GLSL ES) (GL ES) - + (GL ES) @@ -14132,12 +14202,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Export Modified Track Metadata - + Export Modified Track Metadata Mixxx may wait to modify files until they are not loaded to any decks or samplers. If you do not see changed metadata in other programs immediately, eject the track from all decks and samplers or shutdown Mixxx. - + Mixxx may wait to modify files until they are not loaded to any decks or samplers. If you do not see changed metadata in other programs immediately, eject the track from all decks and samplers or shutdown Mixxx. @@ -14145,7 +14215,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Abort - + Abort @@ -14153,7 +14223,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. No network access - + No network access \ No newline at end of file diff --git a/res/translations/mixxx_pt_PT.qm b/res/translations/mixxx_pt_PT.qm index 94e8e0279379f5a50be869a701464b8c80dacf7c..daaaf0b79d77930d72525cdfb9ca64d4c1a3cd6b 100644 GIT binary patch delta 12269 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 delta 12231 zcmXY%d0Y+O8^@nH=gi#wUP>a|6x|kFN`)wCrOhrvh(waF$X?N67a5TdA+lALY!S*X zS(3G~??m=BzsL3aqu2XRcV_OH=bY#BEN8^|#y1xjuV}3aH=CSmWe6UC!ur#uwCnbMYlwj;^@}`%RdX`yf3hW z-oQyckTpOqbOmF=}ogC6x!nK&CTWIs0Vgop8izmg1WeP>stM^}=8YC2!=dGdFd!p*!LnWn z%y|@8;dgK-#6Tv~iQa;F(=xC_+cM8fV0RVm<@por(1y%wmKZ0P_I(0vHsgwQ91m@- zoCD@N6WV$`1+d);?JhU~H=zya2jNg2n1Oz!I$u4lj#PMIk#a*#3~>kUqMJjI4;jQWVazu|`XR;D$w zP(eidwLq8%6Vpxs8}L|cA=mi@`@qa4zks!@gPFUo135V!X5DCo$2(zeVi~U1I7l3W z51nxXQko_KSEYfJ8C}raWw3C5J&?s&ukz0=F+_`Xc++!g2^Py-r-r)6iIMv<_xTZJZ zTySR~kJgCk3OD(_D7aBr2h44SSgmN^_bt4LI1S{-YIxmm2SEBkcs;8g*x(R&eask0 z+A4Un?IMsP+u_6Hp+IDw@M&rgz&C&RyfPc8U2pjOxD2@58}L{2>J+CaWB{3+45U}>Idz** zVD?=(^#fcO<*zuCfu+EWjpiEXUjQz#mTO{~i7`aNnJuhEy{+RcwqR81bDC>)MGIYN za6Q+0T|CeRah&cbp0HBj+MK!#Z1hU5eefv&pAB65=}7OkTnA}6uFz`E{^e9)%}0se zDxJ&N4qUg~_NZ7nT(_zkTq;YsZjZD;T03&C!?pkmzs0$pKw?kg*J+7gx_FP!%MS!|< z+~|`2z*TPG!q=n%qpP@az8`^fu;RvTnhMm@Pi&#qhIJXiO}@whxwevvvFQce?+|XL zZ3VF2%ek2;XywRiZnnA@Xp2a0_NJF8nzR2=`r{w%yBo+NW4JlG0l<2-<>JGC0bDrC z#gD~EIHOeDpmuiY)`&}!Uj#a#C71TT7|2!!F5Bb@u+De6>>W6&?OnMoXG=70%hB6WpOTQh@tQkr;IDzu^wy(jt8~ih-IzcKhdW zSG($gEB?S;9aRdn*>3I{X$>r>Gk0C$3CuN*yAg&f%6W=-S)(UkBgEetbBi*9Kbhp{qE&fptO=(dFaG6)B`mU_XHRw+3?A z{-n(n3`b2PNn2$l5C|grA5YK>u?Dgx{-pg!OQ1%Hq(cz{ZfzCm_}mfG31{NA)Ek)e z3h5D437mCX;(0#_*nb;{cf&0hik_05iIu>HE++m1F?!46k_;bcQIM!=s7rXzj*R(( z)8jvmgqM{Ay*`wT3n>P;x0j4xz5qxA8xr~CE6~ebko7>vbtDr^(OKMQkpIFefcx{3 z#O}d|_IpES*}nlYxC2S(h~FPMY9Ld-AoIHa0=nY_NqYAIL*_=3Oz=LTT9RCn2oqS3 z<|L)w3EeFO^(<1kCgom6w+QE&4{~ zw~T=sJcPWS?Rh|cAU^A-DiU-D?QlqRORPYznGzU|TnUBQZ#-_46 zw5>O$vyU5!EgI=O2JNL?98h5AJ)m8}X99QkIdzRx1M5>syVt}57e0das6B+4Wn=2e zg#yXeBjbT=E})(g4dPc8?pYXPmo6UlyO`mkjp z(0M$4^q2=OawvWI&JF0#C~;3?Z9-jJ#@nL9ZOLUq#9*Mu?=eZQ{Xo{OWYYUupfX=3 z^RESZzZsJ)e27tK7L&(j0qc8^DKV{~XVuI&N(*qe7c4#(b6gY)>R1rgMNAgS2F9Z> zo!H6-F2cv0beIh?iU(TPK&&)1wpzuf z(nK%cDPgm68vzO2Cwe#0ll9ZZ*d}g%wH?`-K~I6qNn;tkjseFvGLQ_fVe3cq1M+eL zTVI4zbZ8>Wo`Js8eml!PiAjuG4cj~oeTVxW9VE42#9DTaIq%x^ssUDodk@-Z-ff_#E>LOw%|Lw>=9nT^EM(0?7< zwH)wz2PDDcawNt4H3iuKSl~uvQ|L%eZNd*){Ks{qIbQJhL<@8T9@!d?e<7`al-MCr zcuEF~l}+1^f5-Np91N^~7(1+tKx>$>qkC!q5_=fP2JU6Y_uBy3+l`$L&H{SmDLbm1bTNc`@L@{3d#o_l*U+r zE#tfI!WCdVlXpLc`TX^#y!(4!;G(Me9u2MliH_rYRAXv#axCvTrZrF&&HJR-fidY? z!uy;Z2&8u*?_c4L}e=+{L%ewZwP3sA^#HM~#_+Q)OvJ!G+(2fj;%B!Q2;#*Sc1mWYWgGm!M`@Q)v3`Q>~2 z0vUUbUtZZ1Xt6CXN^!E=?&Zb6dLWnsfmFSm-}<*c|J94nsq6yWf0g{sIQ-Q=)5Lb>+Jry3{H|3D3#lMJPo4pk zv*+`?4xoHD;}2w<18#jDUsz)WaPGB%%yb5S@FO1ICH&!8tuPJO7)YBu<`0YIK->4_ ziw|IfDR?@6!nzjVV>N$rP-}ppSq9RDKl#(|a)7hg%AdiuKr477H+&$=2OCJuyYpv1 z6ax*?@fX`Q13GA#_|{z4Pp;rAZi>J;rtmjA2LVVr8_338;%|0y0=QMd-@Rc8Cd$e>4`aD-JP`X-10SE%jl;R`Ji*;)0*3=U*r={fVsL zU!`H@)pIca#=RJb=LWu3o(J5a-~9VPbd)o@_%F%*f!pQ8e_gQ;;Oc0;o+bkwrQz!> zvH&tX1z0f#Ao_zqE}?b@$BUm^np+$f6t|OcPCg5&7L5QJo)J{r<^trz2o1{IfUJ!b zoh;lEX5IUGE9mVW1DU;Fun$2w+-)IrTG|y`E44zmU@gY2LxSrtYaq{h3T_#j zp&9MdUGNNC32bar!SfUr#GSSXKC4y&iJKv+EOiNm8X>?*0^HI)LclIHwq6<=NH6&d zfsWBYmcA4EoySORvsM_;4kN*ymO{ugHPDUogrS@XkjXB>(3Loc&1VUr`(6Xg`Ynve zMXb)PZ9G8fECmplIBsVZUla!*Jgwqpz* zsAjex?!;9Wuvu8OpaxSMt&r}E25M6wWEklI{Ei73Z=HZlsueaDh5{T|BW$jY2D*Np zu)WV}l)`8s*Q_3x`nizX8rd#X*lCM~y**#pS(=88=nulq?;OB*b79wkAfUcoh20l& zuvBmg7WSACpl@dgd+-UFcd4+?Ne}efVPU`fb(HB~VgGXsu6E6ZBT;IgJ>!I;hIj+- zbwW`u5!))&Vqoh|vWr65%`I5rcM+Gh)|%;B3D@V>VyRaxR0MX!CelaY=CwpT*;zc( z+B~5~c$OazY`Bf^BJ>*2)+NG=`d-+4F&AF?VTiotCA^%7Y3kb;;dL^Gw3;m8^)U-{ zBPVMA;)AxOyLns&hQh(kT+P8|IzHD<$d! z7z4YwOEin6K&#hD8oav?+@duSBN7TErk%LQ%Cy&cN%PeMfpz#UXaEior7M47YVPc@poGTP3>P%%-lHkUe?@hcZF4LJdJt!G9dq1#F zrIJzKR{7bxWNA;OJcCk_QylAxP|aOVP>NeEb8+@@W`TE{v2c|9Tp06s=_Csqa7~@sfF4tN%lb;W!p$e_NhDovn`UGE5$gcE|Tr}wb)(p z7LQwN?abpO`Lq83b7(L58O#C z{&7*Il;5)jU|CzK?7v!omyuGHiyP2;wo-M>5a3F`NljMc{GZE}Hny(?P7)(E#puqu zcNYiRn)f{@ZCUpYnA0<<)wZobHy@Vj+Ts$GCQ5bf$^n`dNp-K$(+;Fbt=-UGA04GO zv1S18c1YWG-iNcQmg*az{d%pF>VM_|>#Cw&SOXnrx6f;+8Vsa%`1quUcpO@0a zJXD_Rd&ReQ)+8? z49A^3rD-#;q}g^(y0W+yl{iVd@~#{D@^k6RZ>@lHvy-OxF2v^FB5`6HtxKv>n&o;2 zz(Oz0x*i0~wn&=&7MH-GwbIRws5zrQN^?rff%6HGZu=OI>vy^|cj`;bT4#!9+UOjF zX3_$g9Jm<0be|#+v*=Li;SMi>yE9dKRGg(g z8^ywQ=CTK}4pU}f1KUBYZf9W@+nwHh_a9Y_OE+0UB5l^v##e ze2-a#s*!BgliS!=m&pu>;*ncA)VifQ36{g=s&54Yd*Z4*GuDaM@W~8Mb>a%g*+a z0XH9y{hk8sIwm{c0$nDfiR@w=vT~8EtO}oQ>RZ_r>s0I_yUVUN!M0V4c-gf{sQ}l{ z$gWM!2f7M3i#u31{4TqniUyu&Eql6bEYSVM;_(hzQrcRq?x3~2l`DG_fxF35UdZYw z*3Fj}$-Y$70v$15_Tyjz<|!Ux3;W(ppUXLA5Rl_iIVr-F{NOP;IflnYt;7_2=YA0z z<;_$$uz|*ZbbrFsE}Ltu)@N`Lf&RjG%)VGyqz!3-ov|c{o#6SsFldu z_e=mTBSGFiPmTSne)0}c<8iZ-i7E$E+gEbuuxq$Uw_V;XEePo77`fY%&p@jC%iS-b zbsbU-q^<>GAf8<&_vaqtRF9SW@3lwwD3=G0K~3vZDi4ZBw|aD0-lsj<-ld1Q%)uw& z1IWXVG{=Oo(?8bK%EwKQ0(yLneB3MKIZi(A+gD6jFB?dWyyWBW)dA-eDv!E`vNXb7 zKFJR4q>PnMD+mTI30aDro#*-TnMY1wlzlIsmG>3*G=9kwv!j7*d@D~Zp9+w4Po7xa z6g)YyNuK;4F3pnP^5k`>V=evU3src-ua5F11s}1;8zEnoQ3yoYNxuB!0U*Cy$ura* z*h3kJ48sIDM@;W%ZGTt3b_mKHsgtiQVF1GMe{68eKsF^#zV=Qu)@XI|%m$7?=?3v_ zN1e-neezAUF+c~@$+MvjC7L2XAVcKYW6q$cR?9d4Fa<84T%I!w=ehe-`SuX(lI+G- zxTDTtP(%6N0t_>fd-4PM=*!D9yHkJczx?16Jb2N4V3JoOVBNaZM(0N9iD0(iK0#Ik7@C(O0FZi3ne<%*<>2pP( z*$wn$y&_2V3G3THMPDm5ig~r7-vDnQx6%{?_2>}eJ1YiusKL6nP%(VfY=Hg7iV;6% zLIUknt{B-A^WVWWiZE=2vDU*Bqt^xj=l5MPx&$M${Ts!Y)s3))pQDJd#sR*WrI>JK zKafgK#U!h~024UHBpn)hLWN>-VklM~Jr$Fmm1CkRQB1ps1D7vSOz*)1HziAv)a?h* zJ4uRUwGum1gA^%y^o@Yd%~zxxOu-#s69ehJUt(Y<^S)JzB@PdO_Onzh^+84IIoUue zyihFNpapJqoMKr3Rvn!|u_6ZJsidi5ABvlp zxX^qn#of$u;D-ECRN10HS%)dAR;B^92~bq+uEXP7iW)u?JDl4U_vN?{pXDj;W3@!> zE-Rj%y#Y`=OYvri9>99B;@$gLAlrs0-WN0ij+>*X`_U0g*iniP7u+x=g>O}S=lTIX z>8K( z2SdeZsC0gZqCI|_vRnHgpxMKf-CN);*^O384}8xBEQ`(>J}}h+rDwef?jCBD-X^%3 zKEG0WPenL%1OaJeU80TWz@R2g)WHw5SFA~$X!?VR47hS*hZpyGvp}_Qgm7_OQVe*}( z4A!gZdv&Dn7fLkVhC(;N=0@K!mY-|Di)2uj!P z#wyX(RcjWtP1SJ3c!1weR3<_grca$zChu#o*Y76Ax;i^FZ>2JyjX%F~i>hTY&d!iA zDl1cLTBJ2lSqI>(c8gQl1SVnx{q~Pn_KVf7rU^e(&Py8sWPek2!Tg!7<5b-`kH&_- zy~_0%>UdQrmDdp5g%045*xC*7L4HOqLDnO$BL4t6HB#jjf+i0%K{8~B$~!k6nCi63 zC&dj&!{aKS&udT(D^uxW*~`N+{N&LO`N9cHEJx%X^kqt6GJ+75dxK&0MEiy zfe*}qOq;9pSghi^L1sK=D&#U?@NdjV#qUx)~22jWMssWer@wbGLW=&Tx+5e@X>P_f!go6xqoYP^pN0QXoGxycBn?1^fEZ8>g+bE@dr=eW7)po;n1 zxGL+enz5!HV0~BB?1R4nB0H-RwyJ?O`JoF$4$$!_XKK4EZ)V4yL=x!?erux#bBan~z;xc!=(VlVYmd0pgzoF`uMLX~f!rkI! zcb!A1ncDdY+S2!jy6dzBz$Ld-y9VOajto(|mSE1|JxAT$sR*FrklNi(57cj}Xw^d( z;?z?eFv|_-yNT-F?ic~4H&XXLat4TvOx?fYBhX(3>fltI`RUc_!K*WI8+Dy}NO^PI zFFmOqYF>#`ZmS-;2UWo4w|dy^8hi$h&erU30{%vxCUr~CNb)HTrrS@ zChEizHP9vg>ZAl5O<|QfdFCQuT@I;JI-}IzZLCh|gAI^IKMdqL<*OHM!?sn>QuUJb zVxUMg$GfqU0gz4hAwECox|xyERw9%}XOZMXt_)~X9c+$OdSQtx#>0I++c`q1rY z+!mj#KEk6eaU0b|j`2X6^;I7~nFnM|mb&-}CML-~>Jy)FO)LlXNsT8;Z zqgW8{oQyAHdIB+9q#;hmz)iiZAq7K#coekL@SREl<{E1xe%Mo=-Af}qrv`58TaEnS z9emShvPMB2u$|giqmW}rtZ1rH1P9^Ej|Vi$CzwVBH4ra*nscwkx1Qz+4>hJ<_%J3r zHBFmio5bHt({$5Q>;hP5n!T*Y7m(~V7SmIKc0I4L3Ym=Fp03dyMNWv&*qG*F+4El0 zb~-MZ(JeIkkEy^++%)ZTFzQ4^YdYBCyNAO&YwVLSM_h7W`v5U0_EmvqPa^tfhx{s8>w?W390Dgfx!|1?uG(=pF`sF}SUV}4M$ zX7+(-?2uP!<_Wk8nq1T@8KJ-p|9+aKEFS2S&6>0&FQFs%_J?LQdKu#aHET_d0C+lU zHpJy&3x1j=>nuk7tV^1W@#sAzZ#CKDW&k~7C#HBilP&GUWjcNPS>1`L<>xg(p+ek3dBcYAnW1xj~>?lXPV~Hh(5p#^3aqSl>^yXq`5vE-ych^ z&|Dv#2lPXLINV1Uk=|ZY)rX&&$Y2prp` zdE$Wer|Bro>l1JA|3;cG+Xe!RUS%LnU8VUp!V$<-7tOB;wHRaHXzC-dO6tB2>+Ly} zNw0hsyz=1=z49Rk12r}<0K#E3MBy7TV_?#nzN<(Fseky)ut}q0#;nn#6H}Qb^usTw r{`<0(QA6MG= AutoDJFeature - + Crates Caixas - + Remove Crate as Track Source Remover Caixa como Fonte de Faixas - + Auto DJ Auto DJ - + Add Crate as Track Source Adicionar Caixa como Fonte de Faixas @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Não conseguiu carregar a faixa. @@ -642,12 +642,12 @@ Ficheiro Criado - + Mixxx Library Biblioteca Mixxx - + Could not load the following file because it is in use by Mixxx or another application. Não foi possível carregar o seguinte ficheiro porque está em uso no Mixxx ou noutra aplicação. @@ -3363,37 +3363,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: Com contribuições de: - + And special thanks to: E um agradecimento especial a: - + Past Developers Desenvolvedores antigos - + Past Contributors Colaboradores antigos - + Official Website - + Donate @@ -7310,123 +7310,123 @@ Selecione entre tipos diferentes de visualizações da forma de onda, o que dife Selecionar a melhor correspondência possível - - + + Track Faixa - - + + Year Ano - + Title Título - - + + Artist Artista - - + + Album Album - + Album Artist Artista do Album - + Fetching track data from the MusicBrainz database Trazendo dados da faixa, da base de dados MusicBrainz - + Mixxx could not find this track in the MusicBrainz database. O Mixxx não conseguiu encontrar esta faixa na base de dados MusicBrainz. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. Obter API-Key - + Submit Submits audio fingerprints to the MusicBrainz database. Submeter - + New Column Nova Coluna - + New Item Novo Item - + &Previous &Anterior - + &Next &Próximo - + &Apply &Aplicar - + &Close &Fechar - + Status: %1 Estado: %1 - + HTTP Status: %1 Estado HTTP: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. O Mixxx não se consegue ligar a %1 por uma razão desconhecida. - + Mixxx can't connect to %1. O Mixxx não se consegue ligar a %1. - + Original tags Etiquetas originais - + Suggested tags Etiquetas sugeridas @@ -7921,51 +7921,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - Rato HID Genérico - - - Generic HID Joystick Joystick HID Genérico - + Generic HID Gamepad Gamepad HID Genérico - - Generic HID Keyboard - Teclado HID Genérico - - - + Generic HID Multiaxis Controller Controlador Multieixo HID Genérico - + Unknown HID Desktop Device Dispositivo de Ambiente de Trabalho HID Desconhecido - + HID Infrared Control Controlo Infravermelhos HID - + Unknown Apple HID Device Dispositivo Apple HID Desconhecido - + HID Unknown Device Dispositivo HID Desconhecido - + HID Interface Number Interface HID Número @@ -8128,27 +8118,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Examinador de Biblioteca - + It's taking Mixxx a minute to scan your music library, please wait... O Mixxx necessitará de uns minutos para examinar a sua biblioteca de música, por favor aguarde... - + Cancel Cancelar - + Scanning: A Examinar: - + Scanning cover art (safe to cancel) Examinar capa (seguro cancelar) @@ -8420,39 +8410,39 @@ Do you want to select an input device? A Skin selecionada não pode ser carrregada. - + OpenGL Direct Rendering Interpretação Direta de OpenGL - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Confirmar Saída - + A deck is currently playing. Exit Mixxx? Um leitor está presentemente em reprodução. Sair do Mixxx? - + A sampler is currently playing. Exit Mixxx? Um sampler está presentemente em reprodução. Sair do Mixxx? - + The preferences window is still open. A janela de preferências ainda está aberta. - + Discard any changes and exit Mixxx? Rejeitar quaisquer alterações e sair do Mixxx? @@ -8569,59 +8559,59 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx Atualização Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? O Mixxx agora permite mostrar a capa do disco. Deseja examinar a sua biblioteca para encontrar ficheiros de capa de disco, agora? - + Scan Examinar - + Later Mais Tarde - + Upgrading Mixxx from v1.9.x/1.10.x. Atualização do Mixxx a partir de V1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. O Mixx possui um detetor de batidas novo e aperfeiçoado. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. Quando carrega faixas, o Mixxx pode reanalisá-las e gerar novas grelhas de batida, mais precisas. Isto tornará a sincronização automática de batidas e os loopings mais confiáveis. - + This does not affect saved cues, hotcues, playlists, or crates. Isto não afeta marcações guardadas, hot cues, playlists, ou caixas. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. Se não desejar que o Mixxx reanalise as suas faixas, escolha "Manter as Grelhas de Batida Presentes". Poderá alterar esta definição em qualquer momento a partir da seção "Deteção de Batida" nas Preferências. - + Keep Current Beatgrids Manter as Grelhas de Batida Presentes - + Generate New Beatgrids Gerar Novas Grelhas de Batidas @@ -13622,20 +13612,20 @@ Usar isto para alterar apenas o sinal com efeito (molhado) com EQ e efeitos de f - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_ro.qm b/res/translations/mixxx_ro.qm index d56adbf8b16ed4d83afeabb9276cf9bc17601ca4..cee0383dbe56e846e58416689d08f0d27826423a 100644 GIT binary patch delta 7343 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 delta 7636 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 diff --git a/res/translations/mixxx_ro.ts b/res/translations/mixxx_ro.ts index 8ee3c2f3ff4..e4df20942ed 100644 --- a/res/translations/mixxx_ro.ts +++ b/res/translations/mixxx_ro.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Colecții - + Remove Crate as Track Source Elimină colecția ca sursă pistă - + Auto DJ Auto DJ - + Add Crate as Track Source Adaugă colecția ca sursă pistă @@ -261,7 +261,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Nu se poate încărca pista. @@ -641,12 +641,12 @@ Fișier creat - + Mixxx Library Biblioteca Mixxx - + Could not load the following file because it is in use by Mixxx or another application. Nu s-a putut încărca fișierul următor deoarece este utilizat de Mixxx sau altă aplicație. @@ -3362,37 +3362,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: Cu contribuții de la: - + And special thanks to: Și mulțumiri speciale lui: - + Past Developers Foști dezvoltatori - + Past Contributors Foști contribuitori - + Official Website - + Donate @@ -7288,123 +7288,123 @@ Select from different types of displays for the waveform, which differ primarily Selectați cea mai bună potrivire - - + + Track Pistă - - + + Year An - + Title Titlu - - + + Artist Artist - - + + Album Album - + Album Artist Album artist - + Fetching track data from the MusicBrainz database Se preia datele pistei din baza de date MusicBrainz - + Mixxx could not find this track in the MusicBrainz database. Mixxx nu poate găsi această pistă în baza de date MusicBrainz. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. Obține cheia API - + Submit Submits audio fingerprints to the MusicBrainz database. Trimite - + New Column Coloană nouă - + New Item Element nou - + &Previous &Anterior - + &Next &Următor - + &Apply &Aplică - + &Close &Închide - + Status: %1 Stare: %1 - + HTTP Status: %1 Stare HTTP: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx nu se poate conecta la %1 dintr-un motiv necunoscut. - + Mixxx can't connect to %1. Mixxx nu se poate conecta la %1. - + Original tags Etichete originale - + Suggested tags Etichete sugerate @@ -7899,51 +7899,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - Maus HID generic - - - Generic HID Joystick Joystick HID generic - + Generic HID Gamepad Gamepad HID generic - - Generic HID Keyboard - Tastatură HID generică - - - + Generic HID Multiaxis Controller Controler HID multiaxe generic - + Unknown HID Desktop Device Dispozitiv HID birou necunoscut - + HID Infrared Control Control infraroșu HID - + Unknown Apple HID Device Dispozitiv HID Apple necunoscut - + HID Unknown Device Dispozitiv HID necunoscut - + HID Interface Number Număr interfață HID @@ -8103,27 +8093,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Scaner bibliotecă - + It's taking Mixxx a minute to scan your music library, please wait... Durează pentru Mixxx un minut să scaneze biblioteca muzicală, așteptați... - + Cancel Renunţă - + Scanning: Se scanează: - + Scanning cover art (safe to cancel) Se scanează coperțile (sigur de anulat) @@ -8393,39 +8383,39 @@ Do you want to select an input device? Aspectul aplicației selectat nu poate fi încărcat. - + OpenGL Direct Rendering Randare directă OpenGL - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Confirmare ieșire - + A deck is currently playing. Exit Mixxx? Un deck actualmente redă. Se oprește Mixxx? - + A sampler is currently playing. Exit Mixxx? Un sampler redă curent. Iese Mixxx? - + The preferences window is still open. Fereastra preferințe este încă deschisă. - + Discard any changes and exit Mixxx? Se descarcă orice modificări și se închide Mixxx? @@ -8540,59 +8530,59 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx Se actualizează Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? Mixxx suportă acum afișarea coperților. Doriți să scanați acum biblioteca pentru fișiere copertă? - + Scan Scanare - + Later Mai târziu - + Upgrading Mixxx from v1.9.x/1.10.x. Se actualizează Mixxx de la v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. Mixxx are un nou și îmbunătățit detector de ritm. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. Aceasta nu afectează cue salvate, hotcue, liste de redare, sau colecții. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids Păstrează grila-bătăi curentă - + Generate New Beatgrids Generează o grilă-bătăi nouă @@ -13560,20 +13550,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_ru.qm b/res/translations/mixxx_ru.qm index 98477f9a92153408028717d5fba6b141ed154652..83dbb88563f4b62dd12dd2b2b750129d136a2b7a 100644 GIT binary patch delta 9446 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 M1iDX5VEbnNAKss)Q~&?~ delta 9641 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 diff --git a/res/translations/mixxx_ru.ts b/res/translations/mixxx_ru.ts index 90a799a9f0e..c8a1b547430 100644 --- a/res/translations/mixxx_ru.ts +++ b/res/translations/mixxx_ru.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Контейнеры - + Remove Crate as Track Source Удалить контейнер как источник дорожки - + Auto DJ Авто DJ - + Add Crate as Track Source Добавить контейнер как источник дорожек @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Не удалось загрузить дорожку. @@ -642,12 +642,12 @@ Файл, созданный - + Mixxx Library Mixxx Библиотека - + Could not load the following file because it is in use by Mixxx or another application. Не удалось загрузить следующий файл, потому что он используется Mixxx или другим приложением. @@ -3363,37 +3363,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: С взносы: - + And special thanks to: И особую благодарность: - + Past Developers В прошлом разработчиков - + Past Contributors Последние участники - + Official Website - + Donate @@ -7300,123 +7300,123 @@ Select from different types of displays for the waveform, which differ primarily Выберите лучшее возможное совпадение - - + + Track Трек - - + + Year Год - + Title Название - - + + Artist Исполнитель - - + + Album Альбом - + Album Artist Исполнитель альбома - + Fetching track data from the MusicBrainz database Извлечение данных из базы данных MusicBrainz - + Mixxx could not find this track in the MusicBrainz database. Mixxx не удалось найти этот трек в базе данных MusicBrainz. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. Получить ключ API - + Submit Submits audio fingerprints to the MusicBrainz database. Отправить - + New Column Новый столбец - + New Item Новый элемент - + &Previous & Предыдущих - + &Next & Следующий - + &Apply & Применить - + &Close & Закрыть - + Status: %1 Статус: %1 - + HTTP Status: %1 Код состояния HTTP: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx не удается подключиться к %1 по неизвестной причине. - + Mixxx can't connect to %1. Mixxx не удается подключиться к %1. - + Original tags Оригинальные Теги - + Suggested tags Предлагаемые Теги @@ -7911,51 +7911,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - Общий HID мыши - - - Generic HID Joystick Универсальный СПРЯТАЛ джойстик - + Generic HID Gamepad Универсальный контроллер HID - - Generic HID Keyboard - Общий HID клавиатуры - - - + Generic HID Multiaxis Controller Универсальный контроллер HID многоосные - + Unknown HID Desktop Device Неизвестное устройство HID Обои - + HID Infrared Control HID ИК-управления - + Unknown Apple HID Device Неизвестные Apple СПРЯТАЛ устройство - + HID Unknown Device HID неизвестное устройство - + HID Interface Number HID интерфейс номер @@ -8114,27 +8104,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Библиотека сканер - + It's taking Mixxx a minute to scan your music library, please wait... Он принимает Mixxx минуту проверки вашей музыкальной библиотеки, пожалуйста, подождите... - + Cancel Отмена - + Scanning: Сканирование: - + Scanning cover art (safe to cancel) Сканирование обложки (безопасно отменить) @@ -8406,39 +8396,39 @@ Do you want to select an input device? Не удается загрузить выбранный кожи. - + OpenGL Direct Rendering OpenGL Прямой рендеринг - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Подтвердить выход - + A deck is currently playing. Exit Mixxx? Дека в настоящее время играет. Выйти Mixxx? - + A sampler is currently playing. Exit Mixxx? В настоящее время играет сэмплер. Выход Mixxx? - + The preferences window is still open. Окно настроек остается открытым. - + Discard any changes and exit Mixxx? Отменить все изменения и закрыть Mixxx? @@ -8555,59 +8545,59 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx Обновление Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? Mixxx теперь поддерживает отображение обложки. Вы хотите сканировать библиотеки для файлов обложки теперь? - + Scan Сканировать - + Later Позже - + Upgrading Mixxx from v1.9.x/1.10.x. Обновление Mixxx от v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. Mixxx имеет новый и Улучшенный удар детектор. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. При загрузке треков, Mixxx можно повторно проанализировать их и создавать новые, более точные beatgrids. Это сделает автоматическая beatsync и циклы более надежной. - + This does not affect saved cues, hotcues, playlists, or crates. Это не влияет на сохраненные сигналы, hotcues, плейлисты или обрешетки. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. Если вы не хотите Mixxx повторно анализировать ваши треки, выберите «Сохранить текущие Beatgrids». Вы этот параметр можно изменить в любое время в разделе «Бить обнаружения» предпочтений. - + Keep Current Beatgrids Сохранить текущие Beatgrids - + Generate New Beatgrids Генерировать новые Beatgrids @@ -13577,20 +13567,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Пересылка - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_ru_RU.ts b/res/translations/mixxx_ru_RU.ts index dd8ccc8f300..d97440a16fc 100644 --- a/res/translations/mixxx_ru_RU.ts +++ b/res/translations/mixxx_ru_RU.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates - + Remove Crate as Track Source - + Auto DJ Auto DJ - + Add Crate as Track Source @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Невозможно загрузить трек. @@ -642,12 +642,12 @@ Файл создан - + Mixxx Library Библиотека Mixxx - + Could not load the following file because it is in use by Mixxx or another application. @@ -3363,37 +3363,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: С помощью: - + And special thanks to: Отдельное спасибо: - + Past Developers Прошлые разработчики - + Past Contributors Прошлые помощники - + Official Website - + Donate @@ -7286,123 +7286,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track Трек - - + + Year Год - + Title Название - - + + Artist Исполнитель - - + + Album Альбом - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. Mixxx не смог найти этот трек в базе данных MusicBrainz. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. Получить API-ключ - + Submit Submits audio fingerprints to the MusicBrainz database. Отправить - + New Column Новый столбец - + New Item Новый элемент - + &Previous &Предыдущий - + &Next &Следующий - + &Apply &Применить - + &Close &Закрыть - + Status: %1 Статус: %1 - + HTTP Status: %1 HTTP-статус: %1 - + Code: %1 Код: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx не может подключиться к %1 по неизвестной причине. - + Mixxx can't connect to %1. Mixxx не может подключиться к %1. - + Original tags Оригинальные теги - + Suggested tags Предложенные теги @@ -7897,51 +7897,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8101,27 +8091,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Сканер библиотеки - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel Отмена - + Scanning: Сканирование... - + Scanning cover art (safe to cancel) @@ -8387,39 +8377,39 @@ Do you want to select an input device? Выбранный скин не может быть загружен. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Подтвердить выход - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? Отменить все изменения и выйти из Mixxx? @@ -8535,58 +8525,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Сканировать - + Later Позже - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13554,20 +13544,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_si.ts b/res/translations/mixxx_si.ts index 90982a57102..9a1bf47c978 100644 --- a/res/translations/mixxx_si.ts +++ b/res/translations/mixxx_si.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates ඇහුරුම් පෙට්ටිය - + Remove Crate as Track Source - + Auto DJ ස්වයංක්‍රීය DJ - + Add Crate as Track Source පථයක ආකාරයට අහුරුම් එකතු කරන්න @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. පථය ප්‍රවේශණය කල නොහැක. @@ -640,12 +640,12 @@ - + Mixxx Library Mixxx පුස්තකාලය - + Could not load the following file because it is in use by Mixxx or another application. පහත සඳහන් ගොනු ප්‍රවේශණය කල නොහැක.ඒ මන්දයත් එය MIxxx හෝ වෙනත් නියැලුමක භාවිතා වන හෙයිණි. @@ -3361,37 +3361,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -7284,123 +7284,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year වර්ෂය - + Title මාතෘකාව - - + + Artist ගායකයා - - + + Album ඇල්බමය - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7895,51 +7895,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8098,27 +8088,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8384,39 +8374,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8531,58 +8521,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13550,20 +13540,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_sk.ts b/res/translations/mixxx_sk.ts index cccba26b008..5a3ba1cdc99 100644 --- a/res/translations/mixxx_sk.ts +++ b/res/translations/mixxx_sk.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates DJ bagy - + Remove Crate as Track Source - + Auto DJ Auto DJ - + Add Crate as Track Source @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Chyba pri načítaní súboru @@ -640,12 +640,12 @@ - + Mixxx Library Knižnica - + Could not load the following file because it is in use by Mixxx or another application. Nieje možné loadnuť tento súbor lebo je používaný v Mixxe alebo inej aplikácii. @@ -3361,37 +3361,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -7284,123 +7284,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Rok - + Title Názov - - + + Artist Interprét - - + + Album Album - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7895,51 +7895,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8098,27 +8088,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8384,39 +8374,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8531,58 +8521,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Skenovať - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13550,20 +13540,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_sl.qm b/res/translations/mixxx_sl.qm index 94376ee439656ef566e58dc314729b20d47948b1..cb3e3b15ec5cbe62d5369658a595b02d949694e8 100644 GIT binary patch delta 26627 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 F_Fr<(H}wDj delta 23305 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 MGAEv0r}jzw2WYalTmS$7 diff --git a/res/translations/mixxx_sl.ts b/res/translations/mixxx_sl.ts index 84ee5209bea..9a6c8720be1 100644 --- a/res/translations/mixxx_sl.ts +++ b/res/translations/mixxx_sl.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Zaboji - + Remove Crate as Track Source Odstrani zaboj kot vir skladb. - + Auto DJ - Auto DJ (samodejni DJ) + Samodejni DJ - + Add Crate as Track Source Dodaj zaboj kot vir skladb. @@ -73,17 +73,17 @@ Add to Auto DJ Queue (bottom) - Dodaj v Auto DJ zaporedje (na dno) + Dodaj v zaporedje samodejnega DJ-a (na dno) Add to Auto DJ Queue (top) - Dodaj v Auto DJ zaporedje (na vrh) + Dodaj v zaporedje samodejnega DJ-a (na vrh) Add to Auto DJ Queue (replace) - Dodaj v Auto DJ zaporedje (zamenjaj) + Dodaj v zaporedje samodejnega DJ-a (zamenjaj) @@ -111,7 +111,7 @@ Add to Auto DJ Queue (bottom) - Dodaj v Auto DJ zaporedje (na dno) + Dodaj v zaporedje samodejnega DJ-a (na dno) @@ -122,7 +122,7 @@ Add to Auto DJ Queue (top) - Dodaj v Auto DJ zaporedje (na vrh) + Dodaj v zaporedje samodejnega DJ-a (na vrh) @@ -185,7 +185,7 @@ Add to Auto DJ Queue (replace) - Dodaj v Auto DJ zaporedje (zamenjaj) + Dodaj v zaporedje samodejnega DJ-a (zamenjaj) @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Ne morem naložiti skladbe. @@ -609,7 +609,7 @@ Bitrate - Birna hitrost + Bitna hitrost @@ -642,12 +642,12 @@ Ustvarjanje datoteke - + Mixxx Library Mixxx knjižnica - + Could not load the following file because it is in use by Mixxx or another application. Datoteke ni bilo mogoče naložiti, ker jo že uporablja Mixxx ali nek drug program. @@ -1022,7 +1022,7 @@ Toggle keylock mode - Preklopi zaklep + Preklopi zaklep tonalitete @@ -1810,22 +1810,22 @@ Add to Auto DJ Queue (bottom) - Dodaj v Auto DJ zaporedje (na dno) + Dodaj v zaporedje samodejnega DJ-a (na dno) Append the selected track to the Auto DJ Queue - Dodaj izbrano skaldbo k Auto DJ zaporedju + Dodaj izbrano skladbo k zaporedju samodejnega DJ-a Add to Auto DJ Queue (top) - Dodaj v Auto DJ zaporedje (na vrh) + Dodaj v zaporedje samodejnega DJ-a (na vrh) Prepend selected track to the Auto DJ Queue - Pripni izbrano skladbo na začetek Auto DJ zaporedja + Pripni izbrano skladbo na začetek zaporedja samodejnega DJ-a @@ -2009,22 +2009,22 @@ Shuffle the content of the Auto DJ queue - Premešaj skladbe v Auto DJ zaporedju + Premešaj skladbe v zaporedju samodejnega DJ-a Skip the next track in the Auto DJ queue - Preskoči naslednjo skladbo v AUTO DJ zaporedju + Preskoči naslednjo skladbo v zaporedju samodejnega DJ-a Auto DJ Toggle - Preklopi AutoDJ + Preklopi Samodejni DJ Toggle Auto DJ On/Off - Vkopi/izklopi Auto DJ + Vkopi/izklopi Samodejni DJ @@ -2089,7 +2089,7 @@ Waveform Zoom Out - Valovna oblika odzumiraj + Valovna oblika oddalji @@ -2723,12 +2723,12 @@ Add to Auto DJ Queue (replace) - Dodaj v Auto DJ zaporedje (zamenjaj) + Dodaj v zaporedje samodejnega DJ-a (zamenjaj) Replace Auto DJ Queue with selected tracks - Zamenjajo Auto DJ seznam z označenimi skaldbami + Zamenjaj seznam samodejnega DJ-a z označenimi skladbami @@ -2865,22 +2865,22 @@ Auto DJ - Avtomatski DJ (Auto DJ) + Samodejni DJ Auto DJ Shuffle - Auto DJ premešaj + Samodejni DJ - premešaj Auto DJ Skip Next - Auto DJ preskoči naslednjo + Samodejni DJ - preskoči naslednjo Auto DJ Fade To Next - Auto DJ prelji v naslednjo + Samodejni DJ - prelji v naslednjo @@ -2975,27 +2975,27 @@ Waveform zoom - Valovna oblika zumiraj + Valovna oblika povečava Waveform Zoom - Valovna oblika zumiraj + Valovna oblika povečava Zoom waveform in - Zumiraj v valovno obliko + Približaj valovno obliko Waveform Zoom In - Valovna oblika vzumiraj + Valovna oblika približaj Zoom waveform out - Odzumiraj valovno obliko + Oddalji valovno obliko @@ -3216,7 +3216,7 @@ Auto DJ Track Source - Auto DJ izvor skladbe + Samodejni DJ - izvor skladbe @@ -3280,7 +3280,7 @@ Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested songs. - Ustvarite zaboj za svoj naslednji performens, za svoje priljubljene electrohouse skaldbe ali za najbolj priljubljene komade. + Ustvarite zaboj za svoj naslednji performens, za svoje priljubljene electrohouse skladbe ali za najbolj priljubljene komade. @@ -3363,39 +3363,39 @@ DlgAbout - + Mixxx %1.%2 Development Team - + Mixxx %1.%2 razvojna skupina - + With contributions from: Prispevali so: - + And special thanks to: Posebna zahvala: - + Past Developers Biviši razvijalci: - + Past Contributors Bivši prispevki: - + Official Website Uradna spletna stran - + Donate - + Doniraj @@ -3415,17 +3415,17 @@ Date: - + Dtum: Git Version: - + Git različica: Platform: - + Platforma: @@ -3525,7 +3525,7 @@ Enable Auto DJ Shortcut: Shift+F12 - Vklopi Auto DJ + Vklopi Samodejni DJ Bližnjica: Shift+F12 @@ -3534,7 +3534,7 @@ Bližnjica: Shift+F12 Disable Auto DJ Shortcut: Shift+F12 - Izklopi Auto DJ + Izklopi Samodejni DJ Bližnjica: Shift+F12 @@ -3624,7 +3624,7 @@ Skip Silence: Play the whole track except for silence at the beginning and end. Begin crossfading from the selected number of seconds before the last sound. - Načini prehoda za Auto DJ + Načini prehodov za Samodejni DJ Cel Uvod + zaključek: Predvaja cel uvod in zaključek. Uporabite dolžino uvoda ali zaključka za @@ -3642,7 +3642,7 @@ Predvaja celotno skldabo. S prehodom začne na izbranem številu sekund pred koncem skladbe. negativni čas med skladbama doda tišino. Preskoči tišino: -Predvaja celotno skladbo, izvzemši tišino na začetku in koncu. +Predvaja celotno skladbo, razen tišine na začetku in koncu. Prehod začne na izbranem številu sekund pred zadnjim zvokom. @@ -3653,12 +3653,12 @@ Prehod začne na izbranem številu sekund pred zadnjim zvokom. One deck must be stopped to enable Auto DJ mode. - Eden od predvajalnikov mora biti zaustavljen, da bi lahko vklopili Auto DJ način. + Eden od predvajalnikov mora biti zaustavljen, da bi lahko vklopili samodejno didžejanje. Decks 3 and 4 must be stopped to enable Auto DJ mode. - Predvajalnika 3 in 4 morata biti zaustavljena, da bi lahko vklopili Auto Dj način. + Predvajalnika 3 in 4 morata biti zaustavljena, da bi lahko vklopili samodejno didžejanje. @@ -3680,7 +3680,7 @@ Prehod začne na izbranem številu sekund pred zadnjim zvokom. Auto DJ - Avtomatski DJ (Auto DJ) + Samodejni DJ @@ -3691,8 +3691,8 @@ Prehod začne na izbranem številu sekund pred zadnjim zvokom. Adds a random track from track sources (crates) to the Auto DJ queue. If no track sources are configured, the track is added from the library instead. - Doda naključno skladbo iz izvora skladb (zaboja) v Auto DJ zaporedje. -Če ni nastavljenih virov, se skladba doda iz knjižnice. + Doda naključno skladbo iz nabora skladb (zabojev) v zaporedje samodejnega DJ-a. +Če ni nastavljenih virov, se skladba doda iz zbirke. @@ -4053,7 +4053,7 @@ Skušali ste učiti: %1, %2 Duration after which a track is eligible for selection by Auto DJ again - Čas, ki mora preteči, da se lahko skladba znova uvrsti v Auto DJ zaporedje. + Čas, ki mora preteči, da se lahko skladba znova uvrsti v zaporedje samodejnega DJ-a. @@ -4068,7 +4068,7 @@ Skušali ste učiti: %1, %2 Auto DJ Preferences - Auto DJ nastavitve + Samodejni DJ - nastavitve @@ -4167,12 +4167,12 @@ Skušali ste učiti: %1, %2 HE-AAC - + HE-AAC HE-AACv2 - + HE-AACv2 @@ -5408,7 +5408,7 @@ Vedno lahko skladbe tudi povlečete in sputite, da podvojite nek predvajalnik. Keyunlock mode - Odklenjen način + Odklep tonalitete @@ -5890,7 +5890,7 @@ in vam omogoča, da prilagodite njihovo višino za harmonično miksanje. Leave Tracks Unchanged - Ohrani skaldbe nespremenjene + Ohrani skladbe nespremenjene @@ -5959,7 +5959,7 @@ in vam omogoča, da prilagodite njihovo višino za harmonično miksanje. Write Serato Metadata to files (experimental) - + Zapiši Serato metapodatke v datoteko (eksperimentalno) @@ -5974,22 +5974,22 @@ in vam omogoča, da prilagodite njihovo višino za harmonično miksanje. Settings Folder - + Mapa z nastavitvami The Mixxx settings folder contains the library database, various configuration files, log files, track analysis data, as well as custom controller mappings. - + Nastavitve Mixxx vsebujejo podatkovno bazo knjižnice, različne konfiguracijske datoteke, zabeležke, podatke o analizi skladb, kot tudi mapiranja lastnih kontrolerjev. Edit those files only if you know what you are doing and only while Mixxx is not running. - + Te datoteke spremenite le, če veste kaj počnete in če Mixxx ni zagnan. Open Mixxx Settings Folder - + Odprite Mixxx mapo z nastavitvami @@ -6065,7 +6065,7 @@ in vam omogoča, da prilagodite njihovo višino za harmonično miksanje. Add track to Auto DJ queue (bottom) - Dodaj skaldbo v Auto DJ zaporedje (na dno) + Dodaj skladbo v Samodejni DJ zaporedje (na dno) @@ -6380,12 +6380,12 @@ in vam omogoča, da prilagodite njihovo višino za harmonično miksanje. Recording Files - + Snemalne datoteke Directory: - + Mapa: @@ -6461,7 +6461,7 @@ in vam omogoča, da prilagodite njihovo višino za harmonično miksanje. For tracks with ReplayGain, adjust the target loudness to this LUFS value (Loudness Units relative to Full Scale). - Za skaldbe z ReplayGain prilagodi ciljno glasnost na LUFS vrednost (Loudness Units relative to Full Scale) + Za skladbe z ReplayGain prilagodi ciljno glasnost na LUFS vrednost (Loudness Units relative to Full Scale) @@ -6970,7 +6970,7 @@ Ciljna glasnost je približna in predpostavlja, da ostaneta predojačitev in izh Default zoom level Waveform zoom - Privzeta stopnja zuma + Privzeta stopnja povečave @@ -7069,12 +7069,12 @@ Izbirajte med različnimi vrstami prikaza valovne oblike, ki se primarno razliku Synchronize zoom level across all waveform displays. - Sinhronizacija povečave vseh prikazovalnikov zvoka. + Sinhronizacija povečave vseh prikazovalnikov valovne oblike. Synchronize zoom level across all waveforms - Sinhroniziraj povečavo vseh prikazov zvoka + Sinhroniziraj povečavo vseh prikazov valovne oblike @@ -7084,7 +7084,7 @@ Izbirajte med različnimi vrstami prikaza valovne oblike, ki se primarno razliku Mixxx caches the waveforms of your tracks on disk the first time you load a track. This reduces CPU usage when you are playing live but requires extra disk space. - Mixxx zapiše valovne oblike vaših skaldb na disk prvič, ko jih naložite. S tem se zmanjaš obremenitev procesorja, kadar predvajate v živo, a se poveča poraba prostora na disku. + Mixxx zapiše valovne oblike vaših skladb na disk prvič, ko jih naložite. S tem se zmanjaš obremenitev procesorja, kadar predvajate v živo, a se poveča poraba prostora na disku. @@ -7157,7 +7157,7 @@ Izbirajte med različnimi vrstami prikaza valovne oblike, ki se primarno razliku Auto DJ - Avtomatski DJ (Auto DJ) + Samodejni DJ @@ -7355,123 +7355,123 @@ Izbirajte med različnimi vrstami prikaza valovne oblike, ki se primarno razliku Izberi najboljše možno ujemanje - - + + Track Skladba - - + + Year Leto - + Title Naslov - - + + Artist Izvajalec - - + + Album Album - + Album Artist Izvajalec albuma - + Fetching track data from the MusicBrainz database Pridobi podatke o skladbi iz podatkovne baze MusicBrainz. - + Mixxx could not find this track in the MusicBrainz database. Mixx ni našel podatkovne baze MusicBrainz. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. Pridobi API ključ - + Submit Submits audio fingerprints to the MusicBrainz database. Posreduj - + New Column Nov stolpec - + New Item Nov element - + &Previous &Prejišnji - + &Next &Naslednji - + &Apply &Prevzemi - + &Close &Zapri - + Status: %1 Status: %1 - + HTTP Status: %1 HTTP Status: %1 - + Code: %1 Koda: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx se iz neznanega razloga ne more povezati na %1. - + Mixxx can't connect to %1. Mixxx se ne more povezati na %1. - + Original tags Originalne oznake - + Suggested tags Predlagane oznake @@ -7968,51 +7968,41 @@ Večinoma ustrvarja bolj kakovostno ritmično mrežo, vendar ne deluje dobro s s HidController - Generic HID Mouse - Generična HID miška - - - Generic HID Joystick Generična HID igralna palica - + Generic HID Gamepad Generičen HID igralni plošček - - Generic HID Keyboard - Generična HID tipkovnica - - - + Generic HID Multiaxis Controller Generični HID več-osni kontroler - + Unknown HID Desktop Device Neznana HID namizna naprava - + HID Infrared Control HID infrardeča kontrola - + Unknown Apple HID Device Neznana Apple HID naprava - + HID Unknown Device HID neznana naprava - + HID Interface Number HID številka vmesnika @@ -8175,27 +8165,27 @@ Ali bi jo res radi prepisali? LibraryScannerDlg - + Library Scanner Pregledovalnik knjižnice - + It's taking Mixxx a minute to scan your music library, please wait... Mixxx potrebuje kakšno minuto za pregledovanje vaše knjižnice. Prosimo počakajte... - + Cancel Prekliči - + Scanning: Pregledujem: - + Scanning cover art (safe to cancel) Pregledujem naslovnice (varno za prekinitev) @@ -8468,39 +8458,39 @@ Ali bi radi izbrali vhodno napravo? Izbrane preobleke ni mogoče naložiti. - + OpenGL Direct Rendering OpenGL neposredno renderiranje - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. Na vašem računalniku ni vklopljeno strojno pospešeno neposredno upodabljanje oz. direct rendering<br><br>To pomeni, da bo prikazovanje valovnih oblik počasno<br><b>in da lahko močno obremenjuje procesor</b>. Posodobite konfiguracijo i<br>n vklopite neposredno upodabljanje ali pa izklopite <br>prikaz valovnih oblik v nastavitvah Mixxx-a, tako da izberete <br>Prazno kot valovno obliko v razdelku Vmesnik. - - - + + + Confirm Exit Potrdi izhod - + A deck is currently playing. Exit Mixxx? Eden od predvajalnikov trenutno predvaja. Zaprem Mixxx? - + A sampler is currently playing. Exit Mixxx? Eden od vzorčevalnikov trenutno predvaja. Zaprem Mixxx? - + The preferences window is still open. Okno z nastavitvami je še vedno odprto. - + Discard any changes and exit Mixxx? Zavržem vse spremembe in zaprem Mixxx? @@ -8617,59 +8607,59 @@ Ali bi radi izbrali vhodno napravo? QMessageBox - + Upgrading Mixxx Posodobitev Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? Mixxx sedaj podpira naslovnice. Želite pregledati vašo knjižnico, da jih najdete? - + Scan Preglej - + Later Kasneje - + Upgrading Mixxx from v1.9.x/1.10.x. Posodobitev Mixxx iz 1.9.x/1.10.x - + Mixxx has a new and improved beat detector. Mixxx ima nov, izboljšan detektor ritma. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. Ko naložite skladbe, jih lahko MIxxx ponovno analizira in ustvari nove, boljše ritmične mreže. To bo izboljšalo zanesljivost samodejne sinhronizacije ritma in zank. - + This does not affect saved cues, hotcues, playlists, or crates. To ne vpliva na shranjene cue iztočnice, hotcue iztočnice, sezname predvajanja ali zaboje. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. Če ne želite, da Mixxx na novo analizira vaše skladbe, izberite "Obdrži trenutne ritmične mreže". To nastavitev lahko kadarkoli spremenite v razdelku "Prepoznavanje ritma" v nastavitvah. - + Keep Current Beatgrids Obdrži trenutne ritmične mreže - + Generate New Beatgrids Generiraj novo ritmične mreže @@ -9999,34 +9989,34 @@ Popolnoma na desni: konec periode efekta <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + <html>Mixxx ne more snemati ali pretakati v AAC ali HE-AAC brez FDK-AAC kodirnika. Za pretakanje ali snemanje v AAC ali AAC+ je potrebno prenesti <b>libfdk-aac</b> in ga namestiti na sistem. The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. - + Nameščena kodirna knjižnica AAC ne podpira HE-AAC, zgolj AAC. V nastavitvah izberite drugačen kodirni format. MP3 encoding is not supported. Lame could not be initialized - + MP3 kodiranje ni podprto. Lame ni bilo mogoče zagnati. OGG recording is not supported. OGG/Vorbis library could not be initialized. - + OGG snemanje ni podprto. OGG/Vorvis knjižnice ni bilo mogoče zagnati. encoder failure - + napaka kodirnika Failed to apply the selected settings. - + Ni bilo mogoče uporabiti izbranih nastavitev. @@ -10315,12 +10305,12 @@ Popolnoma na desni: konec periode efekta This is handy for remembering what worked in your DJ sets, posting set-lists, or reporting your plays to licensing organizations. - Uporabno za pomnenje delujočih skaldb v vašem Dj setu, za pošiljanje seznamov seta ali za poročanje avtorskim organizacijam. + Uporabno za pomnenje delujočih skladb v vašem Dj setu, za pošiljanje seznamov seta ali za poročanje avtorskim organizacijam. Every time you start Mixxx, a new history section is created. You can export it as a playlist in various formats or play it again with Auto DJ. - Vsakič, ko zaženete Mixxx, se ustvari nov razdelek zgodovine. Lahko ga izvozite kot seznam predvajanja v različnih formatih ali ga ponovno predvajate z Auto DJ. + Vsakič, ko zaženete Mixxx, se ustvari nov razdelek zgodovine. Lahko ga izvozite kot seznam predvajanja v različnih formatih ali ga ponovno predvajate s samodejnim DJ-em. @@ -10424,17 +10414,17 @@ Popolnoma na desni: konec periode efekta Unknown stream encoding format! - + Neznan format kodiranja pretoka! Use a libshout version with %1 enabled - + Uporabite libshout različico z vklopljenim %1 Error setting stream encoding format! - + Napaka pri nastavljanju formata kodiranja pretoka! @@ -10464,7 +10454,7 @@ Popolnoma na desni: konec periode efekta Error: Shoutcast only supports MP3 and AAC encoders - + Napaka: Shoutcast podpira le MP3 in AAC kodirnike @@ -10645,7 +10635,7 @@ Popolnoma na desni: konec periode efekta Double-click - + Dvojni klik @@ -10705,12 +10695,12 @@ Popolnoma na desni: konec periode efekta Waveform Zoom Out - Valovna oblika odzumiraj + Valovna oblika oddalji Waveform Zoom In - Valovna oblika vzumiraj + Valovna oblika približaj @@ -11395,12 +11385,12 @@ Popolnoma na desni: konec periode efekta Tempo Range Display - + Prikaz razpona tempa Displays the current range of the tempo slider. - + Prikaže trenutni razpon drsnika tempa. @@ -11410,7 +11400,7 @@ Popolnoma na desni: konec periode efekta Opens separate artwork viewer. - + Odpre ločen prikaz naslovnic. @@ -12420,12 +12410,12 @@ To se uporablja za spreminjanje zvoka zgolj z učinki obogatenega signala (wet) Opens the track properties editor - + Odpre urejevalnik lastnosti skladb Opens the track context menu. - + Odpri kontekstualni meni skladbe @@ -13674,20 +13664,20 @@ To se uporablja za spreminjanje zvoka zgolj z učinki obogatenega signala (wet) Prehod - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible Pripravljen za predvajanje, analiziram .. - - + + Loading track... Text on waveform overview when file is cached from source Nalaganje skladbe .. - + Finalizing... Text on waveform overview during finalizing of waveform analysis Zaključujem... @@ -13840,17 +13830,17 @@ To se uporablja za spreminjanje zvoka zgolj z učinki obogatenega signala (wet) Add to Auto DJ Queue (bottom) - Dodaj v Auto DJ zaporedje (na dno) + Dodaj k zaporedju samodejnega DJ-a (na dno) Add to Auto DJ Queue (top) - Dodaj v Auto DJ zaporedje (na vrh) + Dodaj k zaporedju samodejnega DJ-a (na vrh) Add to Auto DJ Queue (replace) - Dodaj v Auto DJ zaporedje (zamenjaj) + Dodaj v zaporedje samodejnega DJ-a (zamenjaj) diff --git a/res/translations/mixxx_sn.ts b/res/translations/mixxx_sn.ts index e8888b2a7d2..5e7f2161b13 100644 --- a/res/translations/mixxx_sn.ts +++ b/res/translations/mixxx_sn.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Homwe - + Remove Crate as Track Source Bvisa homwe iyi senzvimbo yemimhanzi - + Auto DJ Zviridze wega - + Add Crate as Track Source Shandisa homwe iyi senzvimbo yemimhanzi @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Tatadza kuridza rwiyo. @@ -642,12 +642,12 @@ Faira Ragadzirwa - + Mixxx Library Library reMixxx - + Could not load the following file because it is in use by Mixxx or another application. Tatadza kuridza faira iri nokuti riri kushandiswa muMixxx kana kuti imwe application. @@ -3363,37 +3363,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -7286,123 +7286,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Gore - + Title Zita - - + + Artist Muimbi - - + + Album Bhama - + Album Artist Muimbi webhama - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7897,51 +7897,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8100,27 +8090,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8388,39 +8378,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8535,58 +8525,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Wongorora - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13554,20 +13544,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_sq_AL.ts b/res/translations/mixxx_sq_AL.ts index 9d9db7b2a78..747165b1ff8 100644 --- a/res/translations/mixxx_sq_AL.ts +++ b/res/translations/mixxx_sq_AL.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Arkat - + Remove Crate as Track Source - + Auto DJ DJ Automatik - + Add Crate as Track Source @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. @@ -640,12 +640,12 @@ Skeda u Krijua - + Mixxx Library Libraria e Mixxx - + Could not load the following file because it is in use by Mixxx or another application. @@ -3361,37 +3361,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -7284,123 +7284,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Viti - + Title Titulli - - + + Artist Artisti - - + + Album Albumi - + Album Artist Artisti i Albumit - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7895,51 +7895,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8098,27 +8088,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8384,39 +8374,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8531,58 +8521,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Këqyr - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13550,20 +13540,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_sr.qm b/res/translations/mixxx_sr.qm index 1ca71e983a489a852eac4222bf817a87399bd212..fabfae8adeb4abda8c8b983541eaf2b228f262c1 100644 GIT binary patch delta 5125 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 UvFJ$f;UmG!^3UM~R^%7|56#?5KL7v# delta 5259 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 K4%6h_m;MLjG-J&G diff --git a/res/translations/mixxx_sr.ts b/res/translations/mixxx_sr.ts index 3e24fbf8d02..b6fbd32e4ba 100644 --- a/res/translations/mixxx_sr.ts +++ b/res/translations/mixxx_sr.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Гајбице - + Remove Crate as Track Source Уклони гајбицу из извора - + Auto DJ Самостални Диџеј - + Add Crate as Track Source Додај сандук у изворе @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Не могу да учитам нумеру. @@ -645,12 +645,12 @@ Креирано - + Mixxx Library Библиотека Миксикса - + Could not load the following file because it is in use by Mixxx or another application. Не могу да учитам датотеку јер је тренутно користи Миксикс или неки други програм. @@ -3395,37 +3395,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: Уз допринос: - + And special thanks to: Посебно се захваљујемо: - + Past Developers Претходни програмери - + Past Contributors Претходни доприносиоци - + Official Website - + Donate @@ -7505,123 +7505,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Година - + Title Наслов - - + + Artist Извођач - - + + Album Албум - + Album Artist Извођач - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous &Претходна - + &Next &Следећа - + &Apply &Примени - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -8116,51 +8116,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - Општи ХИД миш - - - Generic HID Joystick Општи ХИД џојстик - + Generic HID Gamepad - - Generic HID Keyboard - Општа ХИД тастатура - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device Непознати ХИД стони уређај - + HID Infrared Control ХИД Инфрацрвени управљач - + Unknown Apple HID Device Непознат Ејпол ХИД уређај - + HID Unknown Device ХИД непознат уређај - + HID Interface Number Број ХИД сучеља @@ -8319,27 +8309,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Прегледач библиотека - + It's taking Mixxx a minute to scan your music library, please wait... Миксиксу ће бити потребан минут да прегледа вашу музичку библиотеку, молим сачекајте... - + Cancel Откажи - + Scanning: Прегледам: - + Scanning cover art (safe to cancel) @@ -8608,39 +8598,39 @@ Do you want to select an input device? Изабрана маска не може бити учитана. - + OpenGL Direct Rendering Посредно исцртавање ОпенГЛ-а - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Потврди излаз - + A deck is currently playing. Exit Mixxx? Носач тренутно пушта. Да изађем из Миксикса? - + A sampler is currently playing. Exit Mixxx? Узорчник тренутно пушта. Да изађем из Миксикса? - + The preferences window is still open. Прозор поставки је још увек отворен. - + Discard any changes and exit Mixxx? Да одбацим могуће измене и да напустим Миксикс? @@ -8757,58 +8747,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Скен - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. Надограђујем МИксикс са в1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. Миксикс има нови и побољшани откривач такта. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. Ово не утиче на сачуване наговештаје, битне наговештаје, спискове нумера или гајбице. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. Ако не желите да Миксикс поново обради ваше нумере, изаберите „Задржи тренутне мреже тактова“. Ово подешавање можете да измените било када у одељку „Откривање такта“ у поставкама. - + Keep Current Beatgrids Задржи тренутне мреже тактова - + Generate New Beatgrids Створи нове мреже тактова @@ -13776,20 +13766,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Пропуштање - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_sv.qm b/res/translations/mixxx_sv.qm index b63fb536d986b131c0ecf1f810e4429883919302..23093d8cf214f114bba4186386d91c07f377dcd7 100644 GIT binary patch delta 8269 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 diff --git a/res/translations/mixxx_sv.ts b/res/translations/mixxx_sv.ts index 2c02edf1862..f5eebfdb943 100644 --- a/res/translations/mixxx_sv.ts +++ b/res/translations/mixxx_sv.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Backar - + Remove Crate as Track Source Avlägsna back som låtkälla - + Auto DJ Auto DJ - + Add Crate as Track Source Lägg till back som låtkälla @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Kunde inte ladda in låt. @@ -642,12 +642,12 @@ Fil skapad - + Mixxx Library Mixxx-bibliotek - + Could not load the following file because it is in use by Mixxx or another application. Följande fil kunde inte laddas in för att den används av Mixxx eller ett annat program. @@ -3363,37 +3363,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: Med bidrag från: - + And special thanks to: Och speciellt tack till: - + Past Developers Tidigare utvecklare - + Past Contributors Tidigare bidragsgivare - + Official Website - + Donate @@ -7288,123 +7288,123 @@ Select from different types of displays for the waveform, which differ primarily Välj den inställning som passar ihop bäst - - + + Track Låt - - + + Year År - + Title Titel - - + + Artist Artist - - + + Album Album - + Album Artist Album-artist - + Fetching track data from the MusicBrainz database Hämtar låtdata från databasen MusicBrainz - + Mixxx could not find this track in the MusicBrainz database. Mixxx kunde inte hitta denna låt i databasen MusicBrainz. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. Hämta API-nyckel - + Submit Submits audio fingerprints to the MusicBrainz database. Lämna in - + New Column Ny kolumn - + New Item Nytt objekt - + &Previous &Föregående - + &Next &Nästa - + &Apply &Verkställ - + &Close &Stäng - + Status: %1 Status: %1 - + HTTP Status: %1 HTTP-Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx kan inte ansluta till %1 av okänd anledning. - + Mixxx can't connect to %1. Mixxx kan inte ansluta till %1. - + Original tags Ursprungliga taggar - + Suggested tags Föreslagna taggar @@ -7899,51 +7899,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - Generisk HID-mus - - - Generic HID Joystick Generisk HID-joystick - + Generic HID Gamepad Generisk HID-gamepad - - Generic HID Keyboard - Generiskt HID-tangentbord - - - + Generic HID Multiaxis Controller Generisk HID Multiaxis-styrenhet - + Unknown HID Desktop Device Okänd HID-skrivbordsutrustning - + HID Infrared Control HID-infraröd-styrenhet - + Unknown Apple HID Device Okänd Apple HID-enhet - + HID Unknown Device Okänd HID-enhet - + HID Interface Number HID gränssnittsnummer @@ -8103,27 +8093,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Biblioteks-scanner - + It's taking Mixxx a minute to scan your music library, please wait... Mixxx behöver en minut för att skanna ditt musikbibliotek, vänligen vänta... - + Cancel Avbryt - + Scanning: Skanning: - + Scanning cover art (safe to cancel) @@ -8395,39 +8385,39 @@ Do you want to select an input device? Kunde inte ladda in det utvalda skinnet. - + OpenGL Direct Rendering OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Bekräfta avsluta - + A deck is currently playing. Exit Mixxx? En tallrik spelar fortfarande. Vill du avsluta Mixxx? - + A sampler is currently playing. Exit Mixxx? En samplare spelar fortfarande. Vill du avsluta Mixxx? - + The preferences window is still open. Inställningsfönstret är fortfarande öppnat. - + Discard any changes and exit Mixxx? Kassera eventuella ändringar och avsluta Mixxx? @@ -8544,58 +8534,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx Uppgraderar Miixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Skanna - + Later Senare - + Upgrading Mixxx from v1.9.x/1.10.x. Uppgradering av Mixxx från v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. Mixxx har en ny och förbättrad taktdetektor. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. När du laddar låtar, kan Mixxx analysera om dem och skapa nya, mer exakta taktmönster. Detta gör att automatisk taktsynkning och slingor fungerar bättre. - + This does not affect saved cues, hotcues, playlists, or crates. Detta påverkar varken sparade markeringar, snabbmarkeringar, spellistor eller backar. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. Om du inte vill att Mixxx ska analysera om dina låtar, välj "Behåll aktuella taktmönster". Du kan ändra inställningen när du vill i "Takthittare"-sektionen under Inställningar. - + Keep Current Beatgrids Behåll aktuella Taktmönster - + Generate New Beatgrids Generera nya taktmönster @@ -13569,20 +13559,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_te.ts b/res/translations/mixxx_te.ts index de411cdb6f1..284c1932cb1 100644 --- a/res/translations/mixxx_te.ts +++ b/res/translations/mixxx_te.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates - + Remove Crate as Track Source - + Auto DJ - + Add Crate as Track Source @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. @@ -640,12 +640,12 @@ - + Mixxx Library - + Could not load the following file because it is in use by Mixxx or another application. @@ -3361,37 +3361,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -7284,123 +7284,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year సంవత్సరం - + Title శీర్షిక - - + + Artist కళాకారి - - + + Album ఆల్బమ్ - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7895,51 +7895,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8098,27 +8088,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8384,39 +8374,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8531,58 +8521,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13550,20 +13540,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_tr.ts b/res/translations/mixxx_tr.ts index 0abac1e6a38..161bf8601b5 100644 --- a/res/translations/mixxx_tr.ts +++ b/res/translations/mixxx_tr.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Kutular - + Remove Crate as Track Source Kutuyu parça kaynağı olarak kaldır - + Auto DJ Otomatik DJ - + Add Crate as Track Source Kutuyu parça kaynağı olarak ekle @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Parça aktarılamadı. @@ -642,12 +642,12 @@ Dosya yaratıldı - + Mixxx Library Mixxx Kütüphanesi - + Could not load the following file because it is in use by Mixxx or another application. Aşağıdaki dosya silinemedi çünkü Mixxx ya da başka bir uygulama tarafından kullanımda. @@ -3366,37 +3366,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -7290,123 +7290,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track Parça - - + + Year Yıl - + Title Başlık - - + + Artist Sanatçı - - + + Album Albüm - + Album Artist Albüm Sanatçısı - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. İlet - + New Column Yeni sütun - + New Item Yeni öğe - + &Previous &önceki - + &Next &sonraki - + &Apply &uygula - + &Close &kapat - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7901,51 +7901,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8104,27 +8094,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel Vazgeç - + Scanning: - + Scanning cover art (safe to cancel) @@ -8393,39 +8383,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8540,58 +8530,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Tara - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13559,20 +13549,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_uk.qm b/res/translations/mixxx_uk.qm index ddd6afed4b71d30261453eec9c33949dddaec5d1..e604a44887486de17dba61f96aaf169c427adb13 100644 GIT binary patch delta 1990 zcmXAqdr(yO7018#-o4A+-Me>P6}D($gGQEzfRIGgam5f2K}9hkK#I8NYB7LH5E11i z4+T^n{s>*dqsE9L4>iRmQ%%!EVNg@WX~P8VV8&RJL8_B68dF-Z$KJm_^PBs7obx^3 zbMA$w{NJAN^)tCE4ekdyV?&!&mjSG1z=!7=2CO;TS`5vQ26#__=3fhlBWwd_;o4aqXY=%c_!{l4&_Z1O1ejZ- zvi`U1k91Q##NCa+@?wb1#eheb%D7sU`-a(5ZUtX;nc4ZI&>Hx?IsvSk55Mp?h^Yv8 z@$BzL5O8xI;L;=D#q+Lm1P%=XAB?gA-s)M0C50V8eyhrYo3LN4pi{YQk`Li_vmhaY zt7X|jh&c$!Uo}%Yxhiv0Sg){{W~u3%Msw1#D$LS0*)qe;qP1nR^H;427L}>e#Y5TKO)7qbJ5;& z0cQl4++6_de9Wcv?4@9zbDL^uf7rKNc4Z{cSj`nw(*0S_xsw0*0&^a6pYELkW;t8< z`SLKZK9FDE^mjUNh<84x2dc)|u*T{c#dqc}2Hv@#GWBh~cODgN`y6Hzt=wT2Bzl*) zF7gwdp1_vF{M4Bw+H4cVn|b7jEM23Y;N;c0_H~-sT($^y@Pj7S!JP-`zPBOdB z!YyHmIxAPo@^ryV4*%rVKkzjmC#XDiOcFL~$n#+;3%07<`--I7`3RVwDZTV@Jhih2 z8`b$n9z8CVRSZ+5!&Fu~rSev45wBFKvYp(69;rtEIXPogsu`l1r1?ng_FI7aKI!AKKIQ|X?{`inY#AswzU=!6Y45%;~NvUD!{vpz|es@pt% zAE>KkUWVW~W&hCaZ!!S2O}g^GD!`EoxQ{XnO3wR2zs7k6h%D2u3-Jct&u7C1-&wUk>oXo?0reJr#xKvPHjh-6j5BxHm#@CT z?6Sr4ZT*MN0dnVg{qYG4-Qlf2dv^~Fn}4%x*~*baWdDis_3e|i;5Y_{^!jOoCp zZXh+aQd#2-1Gs(QKUHT#nSilN<~36 zP2e$RG{wYbDtBHf1-NG_#eS71>Xpe8cWDMXRUQd6=|3UUl@FOLQKZiP7}M;rDd2Fn zX@Nftl_vEnxt^v#+! R)5*h+rRQ1tPVJhp;(wB&Sz!PG delta 2147 zcmXAqdsxls7RSH8+rIzy7STzg9Y$M47mqHCEhV~;OM}vcu(zX8QA&!GE>u+V8na`B z29=7LaXTD`iHtE$@*ESxGsYQ?a~{|6%+$;rmpx}Wzd!c=Jiq2z@g0$Pfh{C#zE{Bf$U6(PXmF~VQc~C#yMFoXK`NxDVX+_ErT?@7Z_fsaNA{e zf=+q?Y0VB`(gsNN8-PKF6~@&lTp!H(xT$>QaAxHbgC1k#*q6YpQ5YFInV16Kw_zP& z@V!2Q_#u4XhIc%GU-xBTx0PMu&F(*8{Q84H-fM*gfv{dF13tdN-tYn3O*UEx=bp0+ zA;6^?NmuLXI;$0~KF!*N5PpL%dnj03cHzK99iaIZN0%%IiZ8MuqPgfQe$M&;m>b6l zK?{Lp%QzwD3t;hm&adM;VBc~s=ur-^{S+6P{0$Iuo0~BD9FYDFXHEGO*nf?i;yE0! z?d6hM^MR}cZhl(=}2ezzGbtz2Zk1 zdVmB!K4Iq#dSMH1`-1{hPGdcy+5G_DoHq_gKBF*Y9^XEK3YJ;IWXa4uWuqm}qIwVh zWwSeAf66)<;+?3v0X7zDlj=*I3X8hg-_&m7ewI3aB2$m|kuJUMt^hxU>wZyK)+pV$NgX}G zN4gnCwG$c@Hm+f^#=^C-V9i9|Y=6}U+i6qSan-^vo{*{Ls8Ssis`h|tvEv6I>5yuj z<^fQj%=T!!2N(BKIiArCR(-E(yF#%ms#NW_n`!wvyQ^{I@>rk75_DGWbEgA%w_0J# zd9~jre;{XpI^c#KP?sz8d8`hNC673Ev3RYS`zOoL`j4-EU)_1>Tfi_|VKX$sBI@tF z?F#e1Qdqz=+EveiQ7bfFpVQ@btzkV{??}dLO3Heu^xG9yc4|sLq23viqA716TcJ%; zr8`Gc&Z?>EzC*qos%fy^1_rLvG>#n#tcYM%otevE3v~Xzb#pXb!Z8|G4;0pUX!#I& zxoU-0SU{SsJFc*}l%3EeYR_tyK6yyWJ!b>;{=-V&({9|U2Wo!Rmj2yH9IV|E?*WuH zD6DH_c74FOSK3E=j{tKXXa8_w&zZ+%EJ;Gu5X=RrV`moDB$`yxwp zvjRMUk8ZIpz4zeSdAj9~(}8Vyy5+zBM%8+*uy`7i4c=p_{B`vgNIYS2v-RM+L-O(S{QUlFrc7vJQ$jS{CpC)~n_*bALQXjKPw&XhqeVL+eE*PH;@XYxC@X3_L*kcS)@O;a~d_D!KY2N`7lqh#bbryMo^ z56asjPwo4dBukKEXLgb+HUH-T6ueP>I5a?>?MZo7c(FpGWwBGm?sN?w1>u!e;H|7d}*{^5U4R~jWbV^)brmpCf3XV4o4W1 zcJ89|?;2Ad#FB4ajb-_jRM1!^nWDL?EZ*c6^uqY&z>hRcZ3?Tmm~?Z%*(R^d%*kGvo^H=R=9M#M>i+ AutoDJFeature - + Crates Збірки - + Remove Crate as Track Source - + Auto DJ Авто-DJ - + Add Crate as Track Source @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Неможливо завантажити трек @@ -640,12 +640,12 @@ - + Mixxx Library Mixxx бібліотека - + Could not load the following file because it is in use by Mixxx or another application. Не вдається завантажити обраний файл, тому що він використовується в Mixxx або в іншій програмі @@ -3361,37 +3361,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: При сприянні: - + And special thanks to: І особлива подяка: - + Past Developers Попередні розробники - + Past Contributors Попередні автори - + Official Website - + Donate @@ -7284,123 +7284,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Рік - + Title Назва - - + + Artist Виконавець - - + + Album Альбом - + Album Artist Виконавець альбому - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply &Застосувати - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7895,51 +7895,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - Типова HID клавіатура - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8098,27 +8088,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Сканер бібліотеки - + It's taking Mixxx a minute to scan your music library, please wait... Mixxx просканує вашу музичну бібліотеку за хвилину, будь ласка, зачекайте ... - + Cancel Скасувати - + Scanning: - + Scanning cover art (safe to cancel) @@ -8387,39 +8377,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Підтвердити Вихід - + A deck is currently playing. Exit Mixxx? Дека в даний час грає. Вийти з Mixxx? - + A sampler is currently playing. Exit Mixxx? Семплер зараз грає. Вийти з Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8536,58 +8526,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Сканування - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13555,20 +13545,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Пересилання - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_uz.ts b/res/translations/mixxx_uz.ts index d7d8a2f645a..cb6166ec75c 100644 --- a/res/translations/mixxx_uz.ts +++ b/res/translations/mixxx_uz.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Қутилар - + Remove Crate as Track Source - + Auto DJ Авто DJ - + Add Crate as Track Source @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Қўшиқ қўшилмади @@ -640,12 +640,12 @@ - + Mixxx Library Микс кутубхонаси - + Could not load the following file because it is in use by Mixxx or another application. Қуйидаги файлни юклаб бўлмади, чунки Микс ёки бошқа дастур томонидан фойдаланилмоқда. @@ -3361,37 +3361,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -7284,123 +7284,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Йил - + Title Сарлавҳа - - + + Artist Санъаткор - - + + Album Альбом - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7895,51 +7895,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8098,27 +8088,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8384,39 +8374,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8531,58 +8521,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13550,20 +13540,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_vi.qm b/res/translations/mixxx_vi.qm index bb0700e552073db5e16f5a0ce232349bd401e728..73157c3f7385f283e90328e31a9302495536a742 100644 GIT binary patch delta 8576 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 KHl&_bd;cFiEW%m< delta 8774 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 AutoDJFeature - + Crates Thùng - + Remove Crate as Track Source Loại bỏ thùng như theo dõi nguồn - + Auto DJ Tự động DJ - + Add Crate as Track Source Thêm thùng như theo dõi nguồn @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Không thể nạp theo dõi. @@ -642,12 +642,12 @@ Tệp được tạo ra - + Mixxx Library Thư viện Mixxx - + Could not load the following file because it is in use by Mixxx or another application. Không thể nạp tệp sau vì nó đang dùng bởi Mixxx hoặc ứng dụng khác. @@ -3363,37 +3363,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: Với sự đóng góp của: - + And special thanks to: Và đặc biệt nhờ: - + Past Developers Qua nhà phát triển - + Past Contributors Trong quá khứ những người đóng góp - + Official Website - + Donate @@ -7290,123 +7290,123 @@ Select from different types of displays for the waveform, which differ primarily Chọn phù hợp nhất có thể - - + + Track Theo dõi - - + + Year Năm - + Title Tiêu đề - - + + Artist Nghệ sĩ - - + + Album Album - + Album Artist Album nghệ sĩ - + Fetching track data from the MusicBrainz database Lấy theo dõi dữ liệu từ cơ sở dữ liệu MusicBrainz - + Mixxx could not find this track in the MusicBrainz database. Mixxx không thể tìm thấy điều này theo dõi trong cơ sở dữ liệu MusicBrainz. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. Có được khóa API - + Submit Submits audio fingerprints to the MusicBrainz database. Gửi - + New Column Cột mới - + New Item Khoản mục mới - + &Previous & Trước - + &Next & Tiếp theo - + &Apply & Áp dụng - + &Close & Đóng - + Status: %1 Trạng thái: %1 - + HTTP Status: %1 Trạng thái HTTP: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx không thể kết nối tới %1 do nguyên nhân không rõ. - + Mixxx can't connect to %1. Mixxx không thể kết nối với %1. - + Original tags Ban đầu tags - + Suggested tags Đề nghị tags @@ -7901,51 +7901,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - Chung trốn chuột - - - Generic HID Joystick Cần điều khiển trốn chung - + Generic HID Gamepad Chung GIẤU tay chơi Game - - Generic HID Keyboard - Chung trốn bàn phím - - - + Generic HID Multiaxis Controller Chung GIẤU điều khiển Multiaxis - + Unknown HID Desktop Device Thiết bị máy tính để bàn trốn không biết - + HID Infrared Control TRỐN điều khiển hồng ngoại - + Unknown Apple HID Device Không biết Apple trốn thiết bị - + HID Unknown Device TRỐN thiết bị không biết - + HID Interface Number TRỐN giao diện số @@ -8104,27 +8094,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Máy quét thư viện - + It's taking Mixxx a minute to scan your music library, please wait... Nó đang Mixxx một phút để quét thư viện nhạc của bạn, xin vui lòng chờ... - + Cancel Hủy bỏ - + Scanning: Quét: - + Scanning cover art (safe to cancel) Quét bìa (an toàn để hủy bỏ) @@ -8396,39 +8386,39 @@ Do you want to select an input device? Vẻ ngoài đã chọn không thể được nạp. - + OpenGL Direct Rendering Trực tiếp OpenGL Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Xác nhận thoát - + A deck is currently playing. Exit Mixxx? Một sân hiện đang phát. Thoát khỏi Mixxx? - + A sampler is currently playing. Exit Mixxx? Một sampler hiện đang phát. Thoát khỏi Mixxx? - + The preferences window is still open. Cửa sổ tùy chọn là vẫn còn mở. - + Discard any changes and exit Mixxx? Loại bỏ bất kỳ thay đổi và thoát Mixxx? @@ -8545,59 +8535,59 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx Nâng cấp Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? Mixxx bây giờ hỗ trợ hình ảnh bìa nghệ thuật. Bạn có muốn quét thư viện của bạn cho tệp bìa bây giờ? - + Scan Quét - + Later Sau đó - + Upgrading Mixxx from v1.9.x/1.10.x. Nâng cấp Mixxx từ v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. Mixxx có một mới và cải tiến phát hiện đánh bại. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. Khi bạn tải bài hát, Mixxx có thể tái phân tích chúng và tạo mới, chính xác hơn beatgrids. Điều này sẽ làm cho tự động beatsync và looping đáng tin cậy hơn. - + This does not affect saved cues, hotcues, playlists, or crates. Điều này hiện không ảnh hưởng đến lưu tín hiệu, hotcues, danh sách phát hoặc thùng. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. Nếu bạn không muốn Mixxx để tái phân tích bài nhạc của bạn, chọn "Giữ hiện tại Beatgrids". Bạn có thể thay đổi cài đặt này bất kỳ lúc nào từ phần "Đánh bại phát hiện" của các ưu đãi. - + Keep Current Beatgrids Giữ hiện tại Beatgrids - + Generate New Beatgrids Tạo mới Beatgrids @@ -13567,20 +13557,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_zh_CN.qm b/res/translations/mixxx_zh_CN.qm index d15f8cc0113b0eecc7ea28333061d67bbf93c461..0e41780c56e6ab9dd1b3211f8054f184a53ad673 100644 GIT binary patch delta 11597 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 delta 11907 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 AutoDJFeature - + Crates 分类列表 - + Remove Crate as Track Source 移除为音轨源的分类列表 - + Auto DJ 自动 DJ - + Add Crate as Track Source 添加为音轨源的分类列表 @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. 无法加载音轨。 @@ -640,12 +640,12 @@ 文件已创建 - + Mixxx Library Mixxx 音乐库 - + Could not load the following file because it is in use by Mixxx or another application. 不能加载下列文件,因为该文件正被Mixxx或其它软件使用。 @@ -3361,37 +3361,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: 贡献人员名单: - + And special thanks to: 特别致谢: - + Past Developers 早期开发者 - + Past Contributors 早期贡献者 - + Official Website - + Donate @@ -7320,123 +7320,123 @@ Select from different types of displays for the waveform, which differ primarily 选择最佳匹配 - - + + Track 音轨 - - + + Year 年份 - + Title 标题 - - + + Artist 歌手 - - + + Album 专辑 - + Album Artist 专辑艺术家 - + Fetching track data from the MusicBrainz database 从 MusicBrainz 数据库中获取音轨数据 - + Mixxx could not find this track in the MusicBrainz database. Mixxx 无法在 MusicBrainz 数据库中找到该音轨。 - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. 获取API-Key - + Submit Submits audio fingerprints to the MusicBrainz database. 提交 - + New Column 添加一列 - + New Item 添加一项 - + &Previous 上一首(&P) - + &Next 下一首(&N) - + &Apply 应用(&A) - + &Close 关闭(&C) - + Status: %1 状态:%1 - + HTTP Status: %1 HTTP 状态:%1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx 无法连接到 %1,错误原因未知。 - + Mixxx can't connect to %1. Mixxx 无法连接到 %1。 - + Original tags 原始标签 - + Suggested tags 建议标签 @@ -7931,51 +7931,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - 通用 HID 鼠标 - - - Generic HID Joystick 通用 HID 游戏杆 - + Generic HID Gamepad 通用 HID 游戏手柄 - - Generic HID Keyboard - 通用HID键盘 - - - + Generic HID Multiaxis Controller 通用多轴控制器 - + Unknown HID Desktop Device 未知 HID 桌面设备 - + HID Infrared Control HID 红外控制 - + Unknown Apple HID Device 未知 Apple HID 设备 - + HID Unknown Device HID 未知设备 - + HID Interface Number HID 接口编号 @@ -8138,27 +8128,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner 音乐库扫描器 - + It's taking Mixxx a minute to scan your music library, please wait... Mixxx正在扫描您的音乐库,这可能需要几分钟,请耐心等待... - + Cancel 取消 - + Scanning: 正在扫描: - + Scanning cover art (safe to cancel) 扫描封面(可以取消) @@ -8430,39 +8420,39 @@ Do you want to select an input device? 无法加载所选皮肤。 - + OpenGL Direct Rendering OpenGL 直接渲染 - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit 确认退出 - + A deck is currently playing. Exit Mixxx? 有唱机正在播放。确定退出 Mixxx 吗? - + A sampler is currently playing. Exit Mixxx? 有采样器正在播放。确定退出 Mixxx 吗? - + The preferences window is still open. 首选项窗口尚未关闭。 - + Discard any changes and exit Mixxx? 取消所作更改并退出 Mixxx 吗? @@ -8579,59 +8569,59 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx 升级 Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? Mixxx现已支持显示歌曲封面。 您想要立即扫描音乐库内的封面文件吗? - + Scan 扫描 - + Later 稍后再说 - + Upgrading Mixxx from v1.9.x/1.10.x. 从 1.9.x 或 1.10.x 版本的 Mixxx 升级。 - + Mixxx has a new and improved beat detector. Mixxx 更新了节拍检测器。 - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. 当您加载音轨时,Mixxx 会重新分析它们,并生成新的、更加准确的节拍样式。这将使自动节拍同步和循环播放更加可靠。 - + This does not affect saved cues, hotcues, playlists, or crates. 此操作不影响已保存的切入点、热切点、播放列表或分类播放列表。 - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. 若您不希望 Mixxx 重新分析音轨,请选择“保留当前节拍样式”。您可以之后在首选项中的“节拍检测”选项卡中更改此设置。 - + Keep Current Beatgrids 保留当前节拍样式 - + Generate New Beatgrids 生成新节拍样式 @@ -13633,20 +13623,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_zh_HK.ts b/res/translations/mixxx_zh_HK.ts index f3be09da910..6e4a5eae99d 100644 --- a/res/translations/mixxx_zh_HK.ts +++ b/res/translations/mixxx_zh_HK.ts @@ -19,23 +19,23 @@ AutoDJFeature - + Crates 音軌資料夾 - + Remove Crate as Track Source - + Auto DJ 自動DJ - + Add Crate as Track Source @@ -272,7 +272,7 @@ BaseTrackPlayerImpl - + Couldn't load track. @@ -652,12 +652,12 @@ - + Mixxx Library - + Could not load the following file because it is in use by Mixxx or another application. @@ -3377,37 +3377,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -7302,123 +7302,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year - + Title - - + + Artist - - + + Album - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7913,51 +7913,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8117,27 +8107,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8403,39 +8393,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8551,58 +8541,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13572,20 +13562,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_zh_TW.Big5.ts b/res/translations/mixxx_zh_TW.Big5.ts index 6e87bcc83b3..9499779bcde 100644 --- a/res/translations/mixxx_zh_TW.Big5.ts +++ b/res/translations/mixxx_zh_TW.Big5.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates - + Remove Crate as Track Source - + Auto DJ 自動DJ - + Add Crate as Track Source @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. 無法載入音軌。 @@ -640,12 +640,12 @@ 檔案已建立 - + Mixxx Library Mixxx 庫 - + Could not load the following file because it is in use by Mixxx or another application. 無法載入以下檔案,因為正在被Mixxx或其他程式使用中 @@ -3361,37 +3361,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -7284,123 +7284,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year 年份 - + Title 標題 - - + + Artist - - + + Album 專輯 - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7895,51 +7895,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8098,27 +8088,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8384,39 +8374,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8531,58 +8521,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan 掃描 - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13550,20 +13540,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_zh_TW.qm b/res/translations/mixxx_zh_TW.qm index dac61b486ec292cf7cde7b11a3351e2dacd4549d..059e2186a3b5204cf6a4a9ce10fedb68e212d60e 100644 GIT binary patch delta 8954 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 F_kVpw@k{^! diff --git a/res/translations/mixxx_zh_TW.ts b/res/translations/mixxx_zh_TW.ts index d9e41486951..844d8f1ff50 100644 --- a/res/translations/mixxx_zh_TW.ts +++ b/res/translations/mixxx_zh_TW.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates 音樂箱 - + Remove Crate as Track Source 從音軌清單删除唱片箱 - + Auto DJ 自動 DJ - + Add Crate as Track Source 加入唱片箱至音軌清單 @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. 無法載入追蹤記錄。 @@ -640,12 +640,12 @@ 創建檔 - + Mixxx Library Mixxx 庫 - + Could not load the following file because it is in use by Mixxx or another application. 無法載入下面的檔,因為它是由 Mixxx 或另一個應用程式使用。 @@ -3361,37 +3361,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: 捐款︰ - + And special thanks to: 並特別感謝︰ - + Past Developers 過去的開發人員 - + Past Contributors 過去的貢獻者 - + Official Website - + Donate @@ -7289,123 +7289,123 @@ Select from different types of displays for the waveform, which differ primarily 選擇最佳匹配 - - + + Track 跟蹤 - - + + Year 一年 - + Title 標題 - - + + Artist 演出者 - - + + Album 專輯 - + Album Artist 唱片集演出者 - + Fetching track data from the MusicBrainz database 從音軌資料庫提取軌道資料 - + Mixxx could not find this track in the MusicBrainz database. Mixxx 在音軌資料庫中找不到這條賽道。 - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. 獲取 API 金鑰 - + Submit Submits audio fingerprints to the MusicBrainz database. 提交 - + New Column 新列 - + New Item 新專案 - + &Previous & 上一頁 - + &Next 與下一步 - + &Apply 與應用 - + &Close 與關閉 - + Status: %1 狀態: %1 - + HTTP Status: %1 HTTP 狀態: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx 無法連接到 %1,原因未知。 - + Mixxx can't connect to %1. Mixxx 無法連接到 %1。 - + Original tags 原始標記 - + Suggested tags 建議的標籤 @@ -7900,51 +7900,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - 通用的 HID 的滑鼠 - - - Generic HID Joystick 泛型的 HID 的操縱杆 - + Generic HID Gamepad 泛型的 HID 的手柄 - - Generic HID Keyboard - 泛型的 HID 的鍵盤 - - - + Generic HID Multiaxis Controller 通用 HID 多軸控制器 - + Unknown HID Desktop Device 未知的 HID 桌面設備 - + HID Infrared Control HID 的紅外控制 - + Unknown Apple HID Device 未知的蘋果 HID 的設備 - + HID Unknown Device HID 的未知的設備 - + HID Interface Number HID 的介面數 @@ -8103,27 +8093,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner 圖書館掃描器 - + It's taking Mixxx a minute to scan your music library, please wait... 它以 Mixxx 一分鐘掃描您的音樂庫,請稍等... - + Cancel 取消 - + Scanning: 掃描︰ - + Scanning cover art (safe to cancel) 掃描封面 (安全地取消) @@ -8394,39 +8384,39 @@ Do you want to select an input device? 無法載入所選的外觀。 - + OpenGL Direct Rendering OpenGL 直接繪製 - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit 確認退出 - + A deck is currently playing. Exit Mixxx? 當前現正播放的甲板。退出 Mixxx 嗎? - + A sampler is currently playing. Exit Mixxx? 當前現正播放採樣器。退出 Mixxx 嗎? - + The preferences window is still open. 首選項視窗是仍處於打開狀態。 - + Discard any changes and exit Mixxx? 放棄所有更改並退出 Mixxx? @@ -8541,59 +8531,59 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx 升級 Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? Mixxx 現在支援顯示封面藝術。 你想要現在掃描媒體庫中的封面檔嗎? - + Scan 掃描 - + Later 後來 - + Upgrading Mixxx from v1.9.x/1.10.x. 從 v1.9.x/1.10.x 升級 Mixxx。 - + Mixxx has a new and improved beat detector. Mixxx 具有一個新的和改進的節拍探測器。 - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. 當你載入軌道時,Mixxx 可以重新對其進行分析和產生新的、 更準確的 beatgrids。這將使自動 beatsync 和迴圈更可靠。 - + This does not affect saved cues, hotcues, playlists, or crates. 這並不影響保存提示、 hotcues、 播放清單或板條箱。 - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. 如果你不想 Mixxx 重新分析你的曲目,請選擇"保持當前的 Beatgrids"。你可以從"擊敗檢測"一節的首選項更改此設置在任何時間。 - + Keep Current Beatgrids 保持當前 Beatgrids - + Generate New Beatgrids 生成新 Beatgrids @@ -13563,20 +13553,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis From 2e6a3a143763d2aa01273b8fb10b3728650e7571 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Wed, 15 Sep 2021 09:47:01 +0200 Subject: [PATCH 46/47] Update Translation template. Found 2718 source text(s) (35 new and 2683 already existing) --- res/translations/mixxx.ts | 1794 ++++++++++++++++++------------------- 1 file changed, 892 insertions(+), 902 deletions(-) diff --git a/res/translations/mixxx.ts b/res/translations/mixxx.ts index c6eeb644a68..ee1d6e2b552 100644 --- a/res/translations/mixxx.ts +++ b/res/translations/mixxx.ts @@ -21,22 +21,22 @@ AutoDJFeature - + Crates - + Remove Crate as Track Source - + Auto DJ - + Add Crate as Track Source @@ -45,24 +45,24 @@ BansheeFeature - + Banshee - - + + Error loading Banshee database - + Banshee database file not found at - + There was an error loading your Banshee database at @@ -71,32 +71,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) - + Add to Auto DJ Queue (top) - + Add to Auto DJ Queue (replace) - + Import Playlist - + Playlist Creation Failed - + An unknown error occurred while creating playlist: @@ -104,144 +104,144 @@ BasePlaylistFeature - + New Playlist - + Add to Auto DJ Queue (bottom) - - + + Create New Playlist - + Add to Auto DJ Queue (top) - + Remove - + Rename - + Lock - + Duplicate - - + + Import Playlist - + Export Track Files - + Analyze entire Playlist - + Enter new name for playlist: - + Duplicate Playlist - - + + Enter name for new playlist: - - + + Export Playlist - + Add to Auto DJ Queue (replace) - + Rename Playlist - - + + Renaming Playlist Failed - - - + + + A playlist by that name already exists. - - - + + + A playlist cannot have a blank name. - + _copy //: Appendix to default name when duplicating a playlist - - - - - - + + + + + + Playlist Creation Failed - - + + An unknown error occurred while creating playlist: - + M3U Playlist (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. @@ -514,7 +514,7 @@ - + Computer @@ -534,7 +534,7 @@ - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -647,12 +647,12 @@ - + Mixxx Library - + Could not load the following file because it is in use by Mixxx or another application. @@ -683,6 +683,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -865,13 +943,13 @@ - + Set to full volume - + Set to zero volume @@ -896,13 +974,13 @@ - + Headphone listen button - + Mute button @@ -918,25 +996,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -980,36 +1058,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1021,7 +1069,7 @@ - + Toggle keylock mode @@ -1031,199 +1079,199 @@ - + Vinyl Control - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 - + 1 - + 2 - + 4 - + 8 - + 16 - + 32 - + 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library @@ -1334,20 +1382,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1363,7 +1411,7 @@ - + Mute @@ -1374,7 +1422,7 @@ - + Headphone Listen @@ -1395,25 +1443,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1512,52 +1560,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1574,37 +1576,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1645,466 +1647,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix - + Toggle mix recording - + Effects - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next - + Switch to next effect - + Previous - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2129,93 +2131,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2272,806 +2274,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3160,32 +3228,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3221,133 +3289,133 @@ CrateFeature - + Remove - - + + Create New Crate - + Rename - - + + Lock - + Export Crate as Playlist - + Export Track Files - + Duplicate - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates - - + + Import Crate - + Export Crate - + Unlock - + An unknown error occurred while creating crate: - + Rename Crate - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) - + Crates are a great way to help organize the music you want to DJ with. - + Crates let you organize your music however you'd like! - + A crate cannot have a blank name. - + A crate by that name already exists. @@ -3417,37 +3485,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4877,32 +4945,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin - + Tool tips - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4912,52 +4980,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off - + Library only - + Library and Skin @@ -5568,38 +5626,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5818,62 +5876,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6877,32 +6935,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7116,72 +7174,72 @@ Select from different types of displays for the waveform, which differ primarily - + Interface - + Waveforms - + Auto DJ - + Equalizers - + Decks - + Colors - + Crossfader - + Effects - + LV2 Plugins - + Recording - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7191,12 +7249,12 @@ Select from different types of displays for the waveform, which differ primarily - + Live Broadcasting - + Modplug Decoder @@ -7337,123 +7395,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year - + Title - - + + Artist - - + + Album - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7845,17 +7903,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7956,38 +8014,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7995,13 +8053,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8009,57 +8067,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8080,22 +8138,22 @@ support. LibraryFeature - + Import Playlist - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8106,27 +8164,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8242,181 +8300,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry - + skin - - + + Reconfigure - + Help - - + + Exit - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8487,43 +8545,43 @@ Do you want to select an input device? PlaylistFeature - + Lock - + Playlists - + Unlock - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist @@ -8531,58 +8589,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8766,7 +8824,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9892,12 +9950,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10035,54 +10093,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10091,7 +10149,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10142,34 +10200,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates - + Check for Serato databases (refresh) - + (loading) Serato @@ -10192,12 +10250,12 @@ Fully right: end of the effect period - + Unlock - + Lock @@ -11156,6 +11214,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12331,11 +12414,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12351,16 +12429,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12376,16 +12444,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12939,22 +12997,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13566,20 +13624,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13750,8 +13808,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - Folder + + Directory @@ -13994,17 +14052,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 - + Sampler %1 - + Importing metadata of %n track(s) from file tags @@ -14012,7 +14075,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Marking metadata of %n track(s) to be exported into file tags @@ -14020,50 +14083,50 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - + + Create New Playlist - + Enter name for new playlist: - + New Playlist - - - + + + Playlist Creation Failed - + A playlist by that name already exists. - + A playlist cannot have a blank name. - + An unknown error occurred while creating playlist: - + Add to New Crate - + Scaling BPM of %n track(s) @@ -14071,7 +14134,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Locking BPM of %n track(s) @@ -14079,7 +14142,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Unlocking BPM of %n track(s) @@ -14087,7 +14150,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Setting color of %n track(s) @@ -14095,7 +14158,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Resetting play count of %n track(s) @@ -14103,7 +14166,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Resetting beats of %n track(s) @@ -14111,7 +14174,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Clearing rating of %n track(s) @@ -14119,7 +14182,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Removing main cue from %n track(s) @@ -14127,7 +14190,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Removing outro cue from %n track(s) @@ -14135,7 +14198,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Removing intro cue from %n track(s) @@ -14143,7 +14206,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Removing loop cues from %n track(s) @@ -14151,7 +14214,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Removing hot cues from %n track(s) @@ -14159,7 +14222,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Resetting keys of %n track(s) @@ -14167,7 +14230,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Resetting replay gain of %n track(s) @@ -14175,7 +14238,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Resetting waveform of %n track(s) @@ -14183,7 +14246,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Resetting all performance metadata of %n track(s) @@ -14191,7 +14254,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Setting cover art of %n track(s) @@ -14199,7 +14262,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Reloading cover art of %n track(s) @@ -14210,7 +14273,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14247,128 +14310,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14444,7 +14434,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14501,62 +14491,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: From a24a470ad1677021effa5ffc0d771774cbdd4d1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Wed, 15 Sep 2021 09:52:54 +0200 Subject: [PATCH 47/47] Pull latest translations from https://www.transifex.com/mixxx-dj-software/mixxxdj/mixxx2-4/. Compile QM files out of TS files that are used by the localized app --- res/translations/mixxx_ar.ts | 1794 +++++---- res/translations/mixxx_ast.ts | 1794 +++++---- res/translations/mixxx_bg.ts | 1794 +++++---- res/translations/mixxx_br.ts | 1794 +++++---- res/translations/mixxx_bs.ts | 1794 +++++---- res/translations/mixxx_ca.qm | Bin 332824 -> 329447 bytes res/translations/mixxx_ca.ts | 1798 +++++---- res/translations/mixxx_ca_ES.qm | Bin 312630 -> 309239 bytes res/translations/mixxx_ca_ES.ts | 1798 +++++---- res/translations/mixxx_cs.qm | Bin 299023 -> 295674 bytes res/translations/mixxx_cs.ts | 1798 +++++---- res/translations/mixxx_da.qm | Bin 23996 -> 23356 bytes res/translations/mixxx_da.ts | 1794 +++++---- res/translations/mixxx_de.qm | Bin 400288 -> 396900 bytes res/translations/mixxx_de.ts | 1822 +++++---- res/translations/mixxx_de_DE.qm | Bin 0 -> 23319 bytes res/translations/mixxx_de_DE.ts | 1796 +++++---- res/translations/mixxx_el.qm | Bin 87637 -> 86086 bytes res/translations/mixxx_el.ts | 1794 +++++---- res/translations/mixxx_el_GR.ts | 1794 +++++---- res/translations/mixxx_en_GB.qm | Bin 306276 -> 303039 bytes res/translations/mixxx_en_GB.ts | 1796 +++++---- res/translations/mixxx_eo.ts | 1794 +++++---- res/translations/mixxx_es.qm | Bin 311736 -> 390626 bytes res/translations/mixxx_es.ts | 2773 ++++++------- res/translations/mixxx_es_ES.qm | Bin 392773 -> 388646 bytes res/translations/mixxx_es_ES.ts | 1810 +++++---- res/translations/mixxx_es_MX.qm | Bin 25395 -> 29646 bytes res/translations/mixxx_es_MX.ts | 1866 +++++---- res/translations/mixxx_et.qm | Bin 48414 -> 49072 bytes res/translations/mixxx_et.ts | 1812 +++++---- res/translations/mixxx_eu.ts | 1794 +++++---- res/translations/mixxx_fa.ts | 1794 +++++---- res/translations/mixxx_fi.ts | 1794 +++++---- res/translations/mixxx_fr.qm | Bin 386358 -> 382691 bytes res/translations/mixxx_fr.ts | 1798 +++++---- res/translations/mixxx_fr_FR.ts | 1794 +++++---- res/translations/mixxx_ga.ts | 1794 +++++---- res/translations/mixxx_gl.qm | Bin 195563 -> 193259 bytes res/translations/mixxx_gl.ts | 1794 +++++---- res/translations/mixxx_he.qm | Bin 41236 -> 40257 bytes res/translations/mixxx_he.ts | 1794 +++++---- res/translations/mixxx_he_IL.ts | 1794 +++++---- res/translations/mixxx_hi_IN.ts | 1794 +++++---- res/translations/mixxx_hr.qm | Bin 35667 -> 34504 bytes res/translations/mixxx_hr.ts | 1794 +++++---- res/translations/mixxx_hu.qm | Bin 90711 -> 89728 bytes res/translations/mixxx_hu.ts | 1794 +++++---- res/translations/mixxx_hy.ts | 1794 +++++---- res/translations/mixxx_id.qm | Bin 36946 -> 36546 bytes res/translations/mixxx_id.ts | 1794 +++++---- res/translations/mixxx_is.ts | 1794 +++++---- res/translations/mixxx_it.qm | Bin 220253 -> 217350 bytes res/translations/mixxx_it.ts | 1794 +++++---- res/translations/mixxx_it_IT.qm | Bin 98899 -> 360339 bytes res/translations/mixxx_it_IT.ts | 5408 +++++++++++++------------- res/translations/mixxx_ja.qm | Bin 53361 -> 53142 bytes res/translations/mixxx_ja.ts | 1796 +++++---- res/translations/mixxx_ko.ts | 1794 +++++---- res/translations/mixxx_lb.ts | 1794 +++++---- res/translations/mixxx_lt.ts | 1794 +++++---- res/translations/mixxx_lv.ts | 1794 +++++---- res/translations/mixxx_mi.ts | 1794 +++++---- res/translations/mixxx_mk.ts | 1794 +++++---- res/translations/mixxx_ml.ts | 1794 +++++---- res/translations/mixxx_mn.ts | 1794 +++++---- res/translations/mixxx_mr.qm | Bin 5066 -> 10178 bytes res/translations/mixxx_mr.ts | 1890 +++++---- res/translations/mixxx_ms.ts | 1794 +++++---- res/translations/mixxx_my.ts | 1794 +++++---- res/translations/mixxx_nb.ts | 1794 +++++---- res/translations/mixxx_nl.qm | Bin 330530 -> 327241 bytes res/translations/mixxx_nl.ts | 1798 +++++---- res/translations/mixxx_nl_BE.qm | Bin 363686 -> 386700 bytes res/translations/mixxx_nl_BE.ts | 2061 +++++----- res/translations/mixxx_nl_NL.qm | Bin 66780 -> 64954 bytes res/translations/mixxx_nl_NL.ts | 1794 +++++---- res/translations/mixxx_nn.ts | 1794 +++++---- res/translations/mixxx_oc.ts | 1794 +++++---- res/translations/mixxx_pl.qm | Bin 198808 -> 196307 bytes res/translations/mixxx_pl.ts | 1794 +++++---- res/translations/mixxx_pt.qm | Bin 101079 -> 100990 bytes res/translations/mixxx_pt.ts | 1794 +++++---- res/translations/mixxx_pt_BR.qm | Bin 250462 -> 378796 bytes res/translations/mixxx_pt_BR.ts | 3354 ++++++++-------- res/translations/mixxx_pt_PT.qm | Bin 302321 -> 298794 bytes res/translations/mixxx_pt_PT.ts | 1796 +++++---- res/translations/mixxx_ro.qm | Bin 177062 -> 174538 bytes res/translations/mixxx_ro.ts | 1796 +++++---- res/translations/mixxx_ru.qm | Bin 248481 -> 245491 bytes res/translations/mixxx_ru.ts | 1806 +++++---- res/translations/mixxx_ru_RU.qm | Bin 77607 -> 77285 bytes res/translations/mixxx_ru_RU.ts | 1798 +++++---- res/translations/mixxx_si.ts | 1794 +++++---- res/translations/mixxx_sk.ts | 1794 +++++---- res/translations/mixxx_sl.qm | Bin 358149 -> 383445 bytes res/translations/mixxx_sl.ts | 2091 +++++----- res/translations/mixxx_sn.qm | Bin 70289 -> 68385 bytes res/translations/mixxx_sn.ts | 1794 +++++---- res/translations/mixxx_sq_AL.ts | 1794 +++++---- res/translations/mixxx_sr.qm | Bin 187578 -> 185400 bytes res/translations/mixxx_sr.ts | 1797 +++++---- res/translations/mixxx_sv.qm | Bin 185990 -> 183311 bytes res/translations/mixxx_sv.ts | 1796 +++++---- res/translations/mixxx_te.ts | 1794 +++++---- res/translations/mixxx_tr.qm | Bin 70087 -> 69022 bytes res/translations/mixxx_tr.ts | 1796 +++++---- res/translations/mixxx_uk.ts | 1794 +++++---- res/translations/mixxx_uz.ts | 1794 +++++---- res/translations/mixxx_vi.qm | Bin 198627 -> 196002 bytes res/translations/mixxx_vi.ts | 1796 +++++---- res/translations/mixxx_zh_CN.qm | Bin 221499 -> 219236 bytes res/translations/mixxx_zh_CN.ts | 1798 +++++---- res/translations/mixxx_zh_HK.ts | 1794 +++++---- res/translations/mixxx_zh_TW.Big5.qm | Bin 27071 -> 26708 bytes res/translations/mixxx_zh_TW.Big5.ts | 1794 +++++---- res/translations/mixxx_zh_TW.qm | Bin 156104 -> 154098 bytes res/translations/mixxx_zh_TW.ts | 1794 +++++---- 118 files changed, 72308 insertions(+), 72836 deletions(-) create mode 100644 res/translations/mixxx_de_DE.qm diff --git a/res/translations/mixxx_ar.ts b/res/translations/mixxx_ar.ts index 1df78de1e7b..3d5ae52efba 100644 --- a/res/translations/mixxx_ar.ts +++ b/res/translations/mixxx_ar.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates الصناديق - + Remove Crate as Track Source نزع الصندوق كمصدر للمقاطع - + Auto DJ الدي جي الأوتوماتيكي - + Add Crate as Track Source اضافة صندوق كمصدر للمقاطع @@ -43,25 +43,25 @@ BansheeFeature - + Banshee بانشي - - + + Error loading Banshee database خطأ في تحميل قاعده بيانات مشغل وسائط البانشي - + Banshee database file not found at ملف قاعدية البيانات التابعه للبانشي غير متوفرة - + There was an error loading your Banshee database at يوجد خطأ في تحميل ملفك في البانشي في @@ -71,32 +71,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) اضافة الي اوتوماتيك دي جي (الأسفل) - + Add to Auto DJ Queue (top) أضافة إلي أوتوماتيك دي جي (الأعلي) - + Add to Auto DJ Queue (replace) - + Import Playlist استيراد قائمة تشغيل - + Playlist Creation Failed فشل إنشاء قائمة التشغيل. - + An unknown error occurred while creating playlist: حدث خطأ غير معروف أثناء إنشاء قائمة التشغيل. @@ -104,144 +104,144 @@ BasePlaylistFeature - + New Playlist قائمة تشغيل جديدة - + Add to Auto DJ Queue (bottom) اضافة الي اوتوماتيك دي جي (الأسفل) - - + + Create New Playlist أنشاء مجموعه مقاطع جديده - + Add to Auto DJ Queue (top) أضافة إلي أوتوماتيك دي جي (الأعلي) - + Remove حذف - + Rename إعادة تسمية - + Lock أقفِل - + Duplicate تكرير - - + + Import Playlist استيراد قائمة تشغيل - + Export Track Files تصدير ملفات - + Analyze entire Playlist تحليل كل المجموعة - + Enter new name for playlist: ادخال اسم جديد للمجموعة - + Duplicate Playlist تكرير قائمة التشغيل - - + + Enter name for new playlist: إدخل اسم جديد لقائمة التشغيل - - + + Export Playlist تصدير قائمة التشغيل - + Add to Auto DJ Queue (replace) - + Rename Playlist إعادة تسمية قائمة التشغيل - - + + Renaming Playlist Failed فشلت إعادة تسمية قائمة التشغيل - - - + + + A playlist by that name already exists. توجد قائمة تشغيل بهذا الاسم - - - + + + A playlist cannot have a blank name. لا يمكن لقائمة التشغيل أن تحوي اسماً فارغاً. - + _copy //: Appendix to default name when duplicating a playlist _نسخ - - - - - - + + + + + + Playlist Creation Failed فشل إنشاء قائمة التشغيل. - - + + An unknown error occurred while creating playlist: حدث خطأ غير معروف أثناء إنشاء قائمة التشغيل. - + M3U Playlist (*.m3u) قائمة تشغيل M3U (*.M3U) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U قائمة التشغيل (* .m3u ) ؛؛ M3U8 قائمة التشغيل (* .m3u8) ؛؛ PLS التشغيل (* .pls) ؛؛ CSV نص (* CSV.) ؛؛ نص مقروء (* txt) @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. لا يمكنك تحميل المقطع @@ -514,7 +514,7 @@ - + Computer @@ -534,7 +534,7 @@ - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -647,12 +647,12 @@ - + Mixxx Library مكتبة البرنامج - + Could not load the following file because it is in use by Mixxx or another application. لا تستطيع تشغيل هذا الملف لانه مستخدم من قبل البرنامج او برنامج آخر @@ -683,6 +683,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -865,13 +943,13 @@ - + Set to full volume - + Set to zero volume @@ -896,13 +974,13 @@ - + Headphone listen button - + Mute button زر كتم الصوت @@ -918,25 +996,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -980,36 +1058,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1021,7 +1069,7 @@ - + Toggle keylock mode @@ -1031,199 +1079,199 @@ - + Vinyl Control - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 ١/٢ - + 1 ١ - + 2 ٢ - + 4 ٤ - + 8 ٨ - + 16 ١٦ - + 32 ٣٢ - + 64 ٦٤ - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library مكتبة @@ -1334,20 +1382,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1363,7 +1411,7 @@ - + Mute كتم الصوت @@ -1374,7 +1422,7 @@ - + Headphone Listen @@ -1395,25 +1443,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1512,52 +1560,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1574,37 +1576,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1645,466 +1647,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 ١/٣٢ - + 1/16 ١/١٦ - + 1/8 ١/٨ - + 1/4 ١/٤ - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) اضافة الي اوتوماتيك دي جي (الأسفل) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) أضافة إلي أوتوماتيك دي جي (الأعلي) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix - + Toggle mix recording - + Effects - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear مسح - + Clear the current effect - + Toggle - + Toggle the current effect - + Next التّالي - + Switch to next effect - + Previous السابق - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2129,93 +2131,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2272,806 +2274,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ الدي جي الأوتوماتيكي - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3160,32 +3228,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3221,133 +3289,133 @@ CrateFeature - + Remove حذف - - + + Create New Crate - + Rename إعادة تسمية - - + + Lock أقفِل - + Export Crate as Playlist - + Export Track Files تصدير ملفات - + Duplicate تكرير - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates الصناديق - - + + Import Crate استيراد صندوق - + Export Crate تصدير صندوق - + Unlock فك القفل - + An unknown error occurred while creating crate: خطأ غير معلوم حدث عند انشاء الصندوق - + Rename Crate اعادة تسمية الصندوق - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed اعادة تسمية الصندوق فشلت - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U قائمة التشغيل (* .m3u ) ؛؛ M3U8 قائمة التشغيل (* .m3u8) ؛؛ PLS التشغيل (* .pls) ؛؛ CSV نص (* CSV.) ؛؛ نص مقروء (* txt) - + Crates are a great way to help organize the music you want to DJ with. - + Crates let you organize your music however you'd like! - + A crate cannot have a blank name. الصندوق لا يمكن ان يكون الاسم فارغ - + A crate by that name already exists. صندوق بهذا الاسم موجود من قبل @@ -3417,37 +3485,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4877,32 +4945,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin - + Tool tips - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4912,52 +4980,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off - + Library only - + Library and Skin @@ -5568,38 +5626,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5818,62 +5876,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6877,32 +6935,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7116,72 +7174,72 @@ Select from different types of displays for the waveform, which differ primarily مكتبة - + Interface - + Waveforms - + Auto DJ الدي جي الأوتوماتيكي - + Equalizers - + Decks - + Colors - + Crossfader - + Effects - + LV2 Plugins - + Recording - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7191,12 +7249,12 @@ Select from different types of displays for the waveform, which differ primarily - + Live Broadcasting - + Modplug Decoder @@ -7337,123 +7395,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year السنة - + Title العنوان - - + + Artist الفنان - - + + Album الألبوم - + Album Artist ألبوم الفنان - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7845,17 +7903,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7956,38 +8014,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7995,13 +8053,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8009,57 +8067,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8080,22 +8138,22 @@ support. LibraryFeature - + Import Playlist استيراد قائمة تشغيل - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) ملفات قائمة التشغيل (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8106,27 +8164,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel إلغاء - + Scanning: - + Scanning cover art (safe to cancel) @@ -8242,181 +8300,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry إعادة المحاولة - + skin - - + + Reconfigure - + Help - - + + Exit - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8487,43 +8545,43 @@ Do you want to select an input device? PlaylistFeature - + Lock أقفِل - + Playlists - + Unlock فك القفل - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist أنشاء مجموعه مقاطع جديده @@ -8531,58 +8589,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8766,7 +8824,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9892,12 +9950,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10035,54 +10093,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10091,7 +10149,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10142,34 +10200,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates الصناديق - + Check for Serato databases (refresh) - + (loading) Serato @@ -10192,12 +10250,12 @@ Fully right: end of the effect period - + Unlock فك القفل - + Lock أقفِل @@ -11156,6 +11214,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12331,11 +12414,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12351,16 +12429,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12376,16 +12444,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12939,22 +12997,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13566,20 +13624,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13750,8 +13808,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.النوع - - Folder + + Directory @@ -13994,155 +14052,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 - + Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist أنشاء مجموعه مقاطع جديده - + Enter name for new playlist: إدخل اسم جديد لقائمة التشغيل - + New Playlist قائمة تشغيل جديدة - - - + + + Playlist Creation Failed فشل إنشاء قائمة التشغيل. - + A playlist by that name already exists. توجد قائمة تشغيل بهذا الاسم - + A playlist cannot have a blank name. لا يمكن لقائمة التشغيل أن تحوي اسماً فارغاً. - + An unknown error occurred while creating playlist: حدث خطأ غير معروف أثناء إنشاء قائمة التشغيل. - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14150,7 +14213,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14187,128 +14250,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14384,7 +14374,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14441,62 +14431,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_ast.ts b/res/translations/mixxx_ast.ts index 75375632e8c..7bfeba0aad4 100644 --- a/res/translations/mixxx_ast.ts +++ b/res/translations/mixxx_ast.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Caxes - + Remove Crate as Track Source - + Auto DJ Auto-DJ - + Add Crate as Track Source @@ -43,24 +43,24 @@ BansheeFeature - + Banshee - - + + Error loading Banshee database - + Banshee database file not found at - + There was an error loading your Banshee database at @@ -69,32 +69,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Amestar a la cola del DJ Automáticu (al final) - + Add to Auto DJ Queue (top) Amestar a la cola del DJ Automáticu (al principiu) - + Add to Auto DJ Queue (replace) - + Import Playlist Importar llista de reproducción - + Playlist Creation Failed Falló crear llista de reproducción - + An unknown error occurred while creating playlist: Hebo un error desconocíu mentanto se creaba la llista de reproducción: @@ -102,144 +102,144 @@ BasePlaylistFeature - + New Playlist Llista de reproducción nueva - + Add to Auto DJ Queue (bottom) Amestar a la cola del DJ Automáticu (al final) - - + + Create New Playlist - + Add to Auto DJ Queue (top) Amestar a la cola del DJ Automáticu (al principiu) - + Remove Desaniciar - + Rename Renomar - + Lock Bloquiar - + Duplicate - - + + Import Playlist Importar llista de reproducción - + Export Track Files - + Analyze entire Playlist - + Enter new name for playlist: - + Duplicate Playlist - - + + Enter name for new playlist: - - + + Export Playlist Esportar llista de reproducción - + Add to Auto DJ Queue (replace) - + Rename Playlist Renomar llista de reproducción - - + + Renaming Playlist Failed Falló renomar la llista de reproducción - - - + + + A playlist by that name already exists. Yá esiste una llista de reproducción con esi nome. - - - + + + A playlist cannot have a blank name. Una llista de reproducción nun pue tener un nome baleru. - + _copy //: Appendix to default name when duplicating a playlist - - - - - - + + + + + + Playlist Creation Failed Falló crear llista de reproducción - - + + An unknown error occurred while creating playlist: Hebo un error desconocíu mentanto se creaba la llista de reproducción: - + M3U Playlist (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Llista M3U (*.m3u);;Llista M3U8 (*.m3u8);;Llista PLS (*.pls);;Testu CSV (*.csv);;Testu lleíble (*.txt) @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Nun se pudo cargar la pista. @@ -512,7 +512,7 @@ - + Computer @@ -532,7 +532,7 @@ - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -645,12 +645,12 @@ - + Mixxx Library Biblioteca de Mixxx - + Could not load the following file because it is in use by Mixxx or another application. Nun se pudo cargar el ficheru siguiente porque ta usandolu Mixxx o otra aplicación. @@ -681,6 +681,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -863,13 +941,13 @@ - + Set to full volume - + Set to zero volume @@ -894,13 +972,13 @@ - + Headphone listen button - + Mute button @@ -916,25 +994,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -978,36 +1056,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1019,7 +1067,7 @@ - + Toggle keylock mode @@ -1029,199 +1077,199 @@ Ecualizadores - + Vinyl Control Control de vinilu - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) Conmutar mou de control de vinilu (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping Repetición - + Loop In button Botón meter repetición - + Loop Out button Botón sacar repetición - + Loop Exit button - + 1/2 - + 1 1 - + 2 - + 4 - + 8 - + 16 - + 32 - + 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library Biblioteca @@ -1332,20 +1380,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1361,7 +1409,7 @@ - + Mute @@ -1372,7 +1420,7 @@ - + Headphone Listen @@ -1393,25 +1441,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1510,52 +1558,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1572,37 +1574,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1643,466 +1645,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) Amestar a la cola del DJ Automáticu (al final) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) Amestar a la cola del DJ Automáticu (al principiu) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix - + Toggle mix recording - + Effects Efeutos - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next - + Switch to next effect - + Previous - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2127,93 +2129,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2270,806 +2272,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off Micrófonu prendíu/apagáu - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ Auto-DJ - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface Interfaz d'usuariu - + Samplers Show/Hide - + Show/hide the sampler section Amosar/anubrir la seición del muestréu - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section Amosar/anubrir la seición del control de vinilu - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget Amosar/anubrir el widget de xiru del vinilu - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3158,32 +3226,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3219,133 +3287,133 @@ CrateFeature - + Remove Desaniciar - - + + Create New Crate - + Rename Renomar - - + + Lock Bloquiar - + Export Crate as Playlist - + Export Track Files - + Duplicate - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates Caxes - - + + Import Crate Importar caxa - + Export Crate Esportar caxa - + Unlock Desbloquiar - + An unknown error occurred while creating crate: Hebo un error desconocíu al crear la caxa: - + Rename Crate Renomar caxa - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed Falló renomar la caxa - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Llista M3U (*.m3u);;Llista M3U8 (*.m3u8);;Llista PLS (*.pls);;Testu CSV (*.csv);;Testu lleíble (*.txt) - + Crates are a great way to help organize the music you want to DJ with. Los Caxones son una bona manera d'ayudate a organizar la música cola que quies facer DJ. - + Crates let you organize your music however you'd like! ¡Los caxones te permiten organizar la to música como quieras! - + A crate cannot have a blank name. Les caxes nun puen tener un nome baleru. - + A crate by that name already exists. Yá esiste una caxa con esi nome. @@ -3415,37 +3483,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4875,32 +4943,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin - + Tool tips - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4910,52 +4978,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off - + Library only - + Library and Skin @@ -5566,38 +5624,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5816,62 +5874,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6875,32 +6933,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7114,72 +7172,72 @@ Select from different types of displays for the waveform, which differ primarily Biblioteca - + Interface Interfaz - + Waveforms - + Auto DJ Auto-DJ - + Equalizers Ecualizadores - + Decks - + Colors - + Crossfader - + Effects Efeutos - + LV2 Plugins - + Recording Grabación - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7189,12 +7247,12 @@ Select from different types of displays for the waveform, which differ primarily Control de vinilu - + Live Broadcasting Emisión en vivo - + Modplug Decoder @@ -7335,123 +7393,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Añu - + Title Títulu - - + + Artist Artista - - + + Album Álbum - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply &Aplicar - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7843,17 +7901,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7954,38 +8012,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7993,13 +8051,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8007,57 +8065,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8078,22 +8136,22 @@ support. LibraryFeature - + Import Playlist Importar llista de reproducción - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Ficheros de llista de reproducción (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8104,27 +8162,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8240,181 +8298,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry - + skin - - + + Reconfigure - + Help - - + + Exit - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8485,43 +8543,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Bloquiar - + Playlists - + Unlock Desbloquiar - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist @@ -8529,58 +8587,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8764,7 +8822,7 @@ Do you want to scan your library for cover files now? - + Encoder Codificador @@ -9890,12 +9948,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10033,54 +10091,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10089,7 +10147,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10140,34 +10198,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates Caxes - + Check for Serato databases (refresh) - + (loading) Serato @@ -10190,12 +10248,12 @@ Fully right: end of the effect period - + Unlock Desbloquiar - + Lock Bloquiar @@ -11154,6 +11212,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12329,11 +12412,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12349,16 +12427,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12374,16 +12442,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12937,22 +12995,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13564,20 +13622,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13748,8 +13806,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Xéneru - - Folder + + Directory @@ -13992,155 +14050,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 - + Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist - + Enter name for new playlist: - + New Playlist Llista de reproducción nueva - - - + + + Playlist Creation Failed Falló crear llista de reproducción - + A playlist by that name already exists. Yá esiste una llista de reproducción con esi nome. - + A playlist cannot have a blank name. Una llista de reproducción nun pue tener un nome baleru. - + An unknown error occurred while creating playlist: Hebo un error desconocíu mentanto se creaba la llista de reproducción: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14148,7 +14211,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14185,128 +14248,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory Escueyi'l direutoriu de biblioteca de música - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14382,7 +14372,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14439,62 +14429,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_bg.ts b/res/translations/mixxx_bg.ts index e9d7841912f..f912929bb1c 100644 --- a/res/translations/mixxx_bg.ts +++ b/res/translations/mixxx_bg.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Колекции - + Remove Crate as Track Source Премахни Колекция като Пистов Източник - + Auto DJ Авто-DJ (Автодиджей) - + Add Crate as Track Source Добави Колекция като Пистов Източник @@ -43,24 +43,24 @@ BansheeFeature - + Banshee Banshee - - + + Error loading Banshee database Грешка със зареждането на Banshee библиотека - + Banshee database file not found at Banshee библиотека не е намерена на - + There was an error loading your Banshee database at Грешка при зареждането на Banshee библиотека в @@ -69,32 +69,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Добавяне към Авто DJ опашка (край) - + Add to Auto DJ Queue (top) Добавяне към Авто DJ опашка (начало) - + Add to Auto DJ Queue (replace) - + Import Playlist Внасяне на списък за изпълнение - + Playlist Creation Failed Създаването на списъка за изпъленине се провали - + An unknown error occurred while creating playlist: По време на създаването на списъка за изпълнение възникна неизвестна грешка: @@ -102,144 +102,144 @@ BasePlaylistFeature - + New Playlist Нов списък с песни - + Add to Auto DJ Queue (bottom) Добавяне към Авто DJ опашка (край) - - + + Create New Playlist Създаване на нов списък с песни - + Add to Auto DJ Queue (top) Добавяне към Авто DJ опашка (начало) - + Remove Премахване - + Rename Преименуване - + Lock Заключване - + Duplicate Дубликат - - + + Import Playlist Внасяне на списък за изпълнение - + Export Track Files - + Analyze entire Playlist Анализирай целия списък с песни - + Enter new name for playlist: Въведи ново име за списък с песни: - + Duplicate Playlist Копиране на списъка с песни - - + + Enter name for new playlist: Въведете име за нов списък с песни - - + + Export Playlist Изнасяне на списъка с песни - + Add to Auto DJ Queue (replace) - + Rename Playlist Преименуване на списъка с песни - - + + Renaming Playlist Failed Преименуването на списъка с песни не бе успепно - - - + + + A playlist by that name already exists. Вече съществува списък с песни с това име - - - + + + A playlist cannot have a blank name. Списъка с песни не може да бъде без име. - + _copy //: Appendix to default name when duplicating a playlist _копие - - - - - - + + + + + + Playlist Creation Failed Създаването на списъка за изпъленине се провали - - + + An unknown error occurred while creating playlist: По време на създаването на списъка за изпълнение възникна неизвестна грешка: - + M3U Playlist (*.m3u) M3U Списък с песни (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Списък за изпълнение M3U (*.m3u);;Списък за изпълнение M3U8 (*.m3u8);;Списък за изпълнение PLS (*.pls);;Текст в CSV (*.csv);;Четим текст (*.txt) @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Песента не може да бъде заредена. @@ -512,7 +512,7 @@ - + Computer Компютър @@ -532,7 +532,7 @@ Сканиране - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -645,12 +645,12 @@ Файла е създаден - + Mixxx Library Библиотека на Mixxx - + Could not load the following file because it is in use by Mixxx or another application. Следният файл не може да бъде зареден, защото се използва отMixxx или друго приложение. @@ -681,6 +681,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -863,13 +941,13 @@ - + Set to full volume - + Set to zero volume @@ -894,13 +972,13 @@ - + Headphone listen button - + Mute button Бутон за заглушаване @@ -916,25 +994,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -978,36 +1056,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1019,7 +1067,7 @@ - + Toggle keylock mode @@ -1029,199 +1077,199 @@ Еквалайзери - + Vinyl Control Контрол с грамофони - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 - + 1 1 - + 2 - + 4 - + 8 - + 16 - + 32 - + 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library Библиотека @@ -1332,20 +1380,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1361,7 +1409,7 @@ - + Mute Заглушаване @@ -1372,7 +1420,7 @@ - + Headphone Listen @@ -1393,25 +1441,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1510,52 +1558,6 @@ Sync Синхронизация - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1572,37 +1574,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1643,466 +1645,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) Добавяне към Авто DJ опашка (край) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) Добавяне към Авто DJ опашка (начало) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix Запиши микс - + Toggle mix recording - + Effects Ефекти - + Quick Effects Бързи ефекти - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear Изчисти - + Clear the current effect Изчисти текущия ефект - + Toggle - + Toggle the current effect - + Next Следваща - + Switch to next effect - + Previous Предишна - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle Активиране на Автоматичен DJ - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2127,93 +2129,93 @@ - + Playback Speed Скорост на възпроизвеждане - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2270,806 +2272,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off Вкл./изкл. микрофон - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ Авто-DJ (Автодиджей) - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3158,32 +3226,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3219,133 +3287,133 @@ CrateFeature - + Remove Премахване - - + + Create New Crate - + Rename Преименуване - - + + Lock Заключване - + Export Crate as Playlist - + Export Track Files - + Duplicate Дубликат - + Analyze entire Crate Анализирай цялата колекция - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates Колекции - - + + Import Crate Внасяне на колекция - + Export Crate Изнасяне на колекция - + Unlock Отключване - + An unknown error occurred while creating crate: Неочаквана грешка при създаване на колекция: - + Rename Crate Преименуване на колекция - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed Колекцията не бе преименувана успешно. - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Списък за изпълнение M3U (*.m3u);;Списък за изпълнение M3U8 (*.m3u8);;Списък за изпълнение PLS (*.pls);;Текст в CSV (*.csv);;Четим текст (*.txt) - + Crates are a great way to help organize the music you want to DJ with. - + Crates let you organize your music however you'd like! - + A crate cannot have a blank name. Колекцията не може да има празно име. - + A crate by that name already exists. Съществува друга колекция с това име. @@ -3415,37 +3483,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: Със съдействието на: - + And special thanks to: Специални благодарности за: - + Past Developers Програмисти от стари версии - + Past Contributors Програмисти от стари версии - + Official Website - + Donate @@ -4875,32 +4943,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin Кожа - + Tool tips Подсказки - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4910,52 +4978,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off Изкл. - + Library only - + Library and Skin @@ -5566,38 +5624,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information Информация - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5816,62 +5874,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added Музикалната папка е добавена - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? Вие сте добавили една или повече папки с музика. Файловете в тези папки няма да са налични докато не сканирате повторно вашата библиотека. Желаете ли да сканирате повторно сега? - + Scan Сканиране - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6875,32 +6933,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7114,72 +7172,72 @@ Select from different types of displays for the waveform, which differ primarily Библиотека - + Interface Интерфейс - + Waveforms - + Auto DJ Авто-DJ (Автодиджей) - + Equalizers Еквалайзери - + Decks - + Colors - + Crossfader Кросфейдър - + Effects Ефекти - + LV2 Plugins - + Recording Записване - + Beat Detection - + Key Detection - + Normalization Нормализация - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7189,12 +7247,12 @@ Select from different types of displays for the waveform, which differ primarily Контрол с грамофони - + Live Broadcasting Живо излъчване - + Modplug Decoder @@ -7335,123 +7393,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Година - + Title Заглавие - - + + Artist Изпълнител - - + + Album Албум - + Album Artist Изпълнител - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply &Прилагане - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7843,17 +7901,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7954,38 +8012,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes iTunes - - + + Select your iTunes library Изберете вашата библиотека на iTunes - + (loading) iTunes iTunes (зареждане) - + Use Default Library Използване на стандартната библиотека - + Choose Library... Избор на библиотека... - + Error Loading iTunes Library Грешка при зареждане библиотеката на iTunes - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. Възникна грешка при зареждане на вашата библиотека на iTunes. Някой от песните и списъците с песни от iTunes може да не са се заредили. @@ -7993,13 +8051,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8007,57 +8065,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8078,22 +8136,22 @@ support. LibraryFeature - + Import Playlist Внасяне на списък за изпълнение - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Списъци за изпълнение (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8104,27 +8162,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Скенер на библиотеката - + It's taking Mixxx a minute to scan your music library, please wait... Ще отнеме минута Mixxx да сканира музикалната ви библиотека, моля изчакайте... - + Cancel Отказ - + Scanning: - + Scanning cover art (safe to cancel) @@ -8240,181 +8298,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy Аудио устройството е заето. - + <b>Retry</b> after closing the other application or reconnecting a sound device <b>Опитайте отново</b> след като затворите другото приложение и включите аудио устройството - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. <b>Повторно</b> конфигуриране на настройките на Mixxx за аудио устройството. - - + + Get <b>Help</b> from the Mixxx Wiki. Получете <b>Помощ</b> от Уики-то на Mixxx. - - - + + + <b>Exit</b> Mixxx. <b>Изход</b> от Mixxx. - + Retry Отново - + skin - - + + Reconfigure Пренастройване - + Help Помощ - - + + Exit Изход - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue Продължаване - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Потвърждане на излизането - + A deck is currently playing. Exit Mixxx? В момента свири дек. Изход от Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8487,43 +8545,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Заключване - + Playlists Списъци с песни - + Unlock Отключване - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist Създаване на нов списък с песни @@ -8531,58 +8589,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Сканиране - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8766,7 +8824,7 @@ Do you want to scan your library for cover files now? - + Encoder Кодек @@ -9892,12 +9950,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10035,54 +10093,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists Списъци с песни - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10091,7 +10149,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox Rythmbox @@ -10142,34 +10200,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates Колекции - + Check for Serato databases (refresh) - + (loading) Serato @@ -10192,12 +10250,12 @@ Fully right: end of the effect period - + Unlock Отключване - + Lock Заключване @@ -11156,6 +11214,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12331,11 +12414,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12351,16 +12429,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12376,16 +12444,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12939,22 +12997,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor Traktor - + (loading) Traktor Traktor (зареждане) - + Error Loading Traktor Library Грешка при зареждане библиотеката на Traktor - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. Грешка при зареждането на Traktor библиотеката. Някои от вашите Traktor песни или плейлисти може да не са заредени. @@ -13566,20 +13624,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Чисто преминаване на сигнала - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13750,8 +13808,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Жанр - - Folder + + Directory @@ -13994,155 +14052,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 Дек %1 - + Sampler %1 Смесител %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Създаване на нов списък с песни - + Enter name for new playlist: Въведете име за нов списък с песни - + New Playlist Нов списък с песни - - - + + + Playlist Creation Failed Създаването на списъка за изпъленине се провали - + A playlist by that name already exists. Вече съществува списък с песни с това име - + A playlist cannot have a blank name. Списъка с песни не може да бъде без име. - + An unknown error occurred while creating playlist: По време на създаването на списъка за изпълнение възникна неизвестна грешка: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14150,7 +14213,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14187,128 +14250,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory Изберете папка за музикалната библиотека - + controllers - + Cannot open database Не може да се отвори базата данни - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14387,7 +14377,7 @@ Mixxx се нуждае от QT с поддръжка за SQLite. Молже п - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14444,62 +14434,62 @@ Mixxx се нуждае от QT с поддръжка за SQLite. Молже п mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_br.ts b/res/translations/mixxx_br.ts index a10ca713b67..f2cc03a208c 100644 --- a/res/translations/mixxx_br.ts +++ b/res/translations/mixxx_br.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates - + Remove Crate as Track Source - + Auto DJ - + Add Crate as Track Source @@ -43,24 +43,24 @@ BansheeFeature - + Banshee - - + + Error loading Banshee database - + Banshee database file not found at - + There was an error loading your Banshee database at @@ -69,32 +69,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) - + Add to Auto DJ Queue (top) - + Add to Auto DJ Queue (replace) - + Import Playlist - + Playlist Creation Failed - + An unknown error occurred while creating playlist: @@ -102,144 +102,144 @@ BasePlaylistFeature - + New Playlist - + Add to Auto DJ Queue (bottom) - - + + Create New Playlist - + Add to Auto DJ Queue (top) - + Remove - + Rename - + Lock - + Duplicate - - + + Import Playlist - + Export Track Files - + Analyze entire Playlist - + Enter new name for playlist: - + Duplicate Playlist - - + + Enter name for new playlist: - - + + Export Playlist - + Add to Auto DJ Queue (replace) - + Rename Playlist - - + + Renaming Playlist Failed - - - + + + A playlist by that name already exists. - - - + + + A playlist cannot have a blank name. - + _copy //: Appendix to default name when duplicating a playlist - - - - - - + + + + + + Playlist Creation Failed - - + + An unknown error occurred while creating playlist: - + M3U Playlist (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. @@ -512,7 +512,7 @@ - + Computer @@ -532,7 +532,7 @@ - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -645,12 +645,12 @@ - + Mixxx Library - + Could not load the following file because it is in use by Mixxx or another application. @@ -681,6 +681,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -863,13 +941,13 @@ - + Set to full volume - + Set to zero volume @@ -894,13 +972,13 @@ - + Headphone listen button - + Mute button @@ -916,25 +994,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -978,36 +1056,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1019,7 +1067,7 @@ - + Toggle keylock mode @@ -1029,199 +1077,199 @@ - + Vinyl Control - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 - + 1 - + 2 - + 4 - + 8 - + 16 - + 32 - + 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library @@ -1332,20 +1380,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1361,7 +1409,7 @@ - + Mute @@ -1372,7 +1420,7 @@ - + Headphone Listen @@ -1393,25 +1441,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1510,52 +1558,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1572,37 +1574,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1643,466 +1645,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix - + Toggle mix recording - + Effects - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next - + Switch to next effect - + Previous - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2127,93 +2129,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2270,806 +2272,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3158,32 +3226,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3219,133 +3287,133 @@ CrateFeature - + Remove - - + + Create New Crate - + Rename - - + + Lock - + Export Crate as Playlist - + Export Track Files - + Duplicate - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates - - + + Import Crate - + Export Crate - + Unlock - + An unknown error occurred while creating crate: - + Rename Crate - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) - + Crates are a great way to help organize the music you want to DJ with. - + Crates let you organize your music however you'd like! - + A crate cannot have a blank name. - + A crate by that name already exists. @@ -3415,37 +3483,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4875,32 +4943,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin - + Tool tips - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4910,52 +4978,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off - + Library only - + Library and Skin @@ -5566,38 +5624,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5816,62 +5874,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6875,32 +6933,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7114,72 +7172,72 @@ Select from different types of displays for the waveform, which differ primarily - + Interface - + Waveforms - + Auto DJ - + Equalizers - + Decks - + Colors - + Crossfader - + Effects - + LV2 Plugins - + Recording - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7189,12 +7247,12 @@ Select from different types of displays for the waveform, which differ primarily - + Live Broadcasting - + Modplug Decoder @@ -7335,123 +7393,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Bloaz - + Title - - + + Artist Arzour - - + + Album Pladenn - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7843,17 +7901,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7954,38 +8012,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7993,13 +8051,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8007,57 +8065,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8078,22 +8136,22 @@ support. LibraryFeature - + Import Playlist - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8104,27 +8162,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8240,181 +8298,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry - + skin - - + + Reconfigure - + Help - - + + Exit - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8485,43 +8543,43 @@ Do you want to select an input device? PlaylistFeature - + Lock - + Playlists - + Unlock - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist @@ -8529,58 +8587,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8764,7 +8822,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9890,12 +9948,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10033,54 +10091,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10089,7 +10147,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10140,34 +10198,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates - + Check for Serato databases (refresh) - + (loading) Serato @@ -10190,12 +10248,12 @@ Fully right: end of the effect period - + Unlock - + Lock @@ -11154,6 +11212,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12329,11 +12412,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12349,16 +12427,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12374,16 +12442,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12937,22 +12995,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13564,20 +13622,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13748,8 +13806,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - Folder + + Directory @@ -13992,155 +14050,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 - + Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist - + Enter name for new playlist: - + New Playlist - - - + + + Playlist Creation Failed - + A playlist by that name already exists. - + A playlist cannot have a blank name. - + An unknown error occurred while creating playlist: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14148,7 +14211,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14185,128 +14248,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14382,7 +14372,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14439,62 +14429,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_bs.ts b/res/translations/mixxx_bs.ts index 9dc5f2608dc..60b216cd6ab 100644 --- a/res/translations/mixxx_bs.ts +++ b/res/translations/mixxx_bs.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Sanduci - + Remove Crate as Track Source - + Auto DJ - + Add Crate as Track Source @@ -43,24 +43,24 @@ BansheeFeature - + Banshee - - + + Error loading Banshee database - + Banshee database file not found at - + There was an error loading your Banshee database at @@ -69,32 +69,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) - + Add to Auto DJ Queue (top) - + Add to Auto DJ Queue (replace) - + Import Playlist Uvezi listu - + Playlist Creation Failed - + An unknown error occurred while creating playlist: @@ -102,144 +102,144 @@ BasePlaylistFeature - + New Playlist - + Add to Auto DJ Queue (bottom) - - + + Create New Playlist - + Add to Auto DJ Queue (top) - + Remove Ukloni - + Rename Preimenuj - + Lock Zaključaj - + Duplicate - - + + Import Playlist Uvezi listu - + Export Track Files - + Analyze entire Playlist - + Enter new name for playlist: - + Duplicate Playlist - - + + Enter name for new playlist: - - + + Export Playlist - + Add to Auto DJ Queue (replace) - + Rename Playlist - - + + Renaming Playlist Failed - - - + + + A playlist by that name already exists. - - - + + + A playlist cannot have a blank name. - + _copy //: Appendix to default name when duplicating a playlist - - - - - - + + + + + + Playlist Creation Failed - - + + An unknown error occurred while creating playlist: - + M3U Playlist (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Nije u mogućnosti pustiti pjesmu. @@ -512,7 +512,7 @@ - + Computer @@ -532,7 +532,7 @@ - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -645,12 +645,12 @@ - + Mixxx Library - + Could not load the following file because it is in use by Mixxx or another application. Ne može pokrenuti sljedeći fajl jer ga koristi Mixxx ili druga aplikacija. @@ -681,6 +681,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -863,13 +941,13 @@ - + Set to full volume - + Set to zero volume @@ -894,13 +972,13 @@ - + Headphone listen button - + Mute button @@ -916,25 +994,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -978,36 +1056,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1019,7 +1067,7 @@ - + Toggle keylock mode @@ -1029,199 +1077,199 @@ - + Vinyl Control - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 - + 1 - + 2 - + 4 - + 8 - + 16 - + 32 - + 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library @@ -1332,20 +1380,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1361,7 +1409,7 @@ - + Mute @@ -1372,7 +1420,7 @@ - + Headphone Listen @@ -1393,25 +1441,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1510,52 +1558,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1572,37 +1574,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1643,466 +1645,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix - + Toggle mix recording - + Effects - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next - + Switch to next effect - + Previous - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2127,93 +2129,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2270,806 +2272,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3158,32 +3226,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3219,133 +3287,133 @@ CrateFeature - + Remove Ukloni - - + + Create New Crate - + Rename Preimenuj - - + + Lock Zaključaj - + Export Crate as Playlist - + Export Track Files - + Duplicate - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates Sanduci - - + + Import Crate Uvezi sanduk - + Export Crate Izvezi sanduk - + Unlock Otključaj - + An unknown error occurred while creating crate: Došlo je do nepoznate greške prilikom pravljenja sanduka: - + Rename Crate Preimenuj sanduk - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed Preimenovanje sanduka neuspješno - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) - + Crates are a great way to help organize the music you want to DJ with. - + Crates let you organize your music however you'd like! - + A crate cannot have a blank name. Sanduk ne može imati prazno ime. - + A crate by that name already exists. Sanduk sa tim imenom već postoji. @@ -3415,37 +3483,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4875,32 +4943,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin Tema - + Tool tips Alat savjeta - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4910,52 +4978,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off - + Library only - + Library and Skin @@ -5566,38 +5624,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5816,62 +5874,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6875,32 +6933,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7114,72 +7172,72 @@ Select from different types of displays for the waveform, which differ primarily - + Interface - + Waveforms - + Auto DJ - + Equalizers - + Decks - + Colors - + Crossfader - + Effects - + LV2 Plugins - + Recording - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7189,12 +7247,12 @@ Select from different types of displays for the waveform, which differ primarily - + Live Broadcasting - + Modplug Decoder @@ -7335,123 +7393,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Godina - + Title Naslov - - + + Artist Umjetnik - - + + Album Album - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7843,17 +7901,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7954,38 +8012,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7993,13 +8051,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8007,57 +8065,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8078,22 +8136,22 @@ support. LibraryFeature - + Import Playlist Uvezi listu - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8104,27 +8162,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8240,181 +8298,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry - + skin - - + + Reconfigure - + Help - - + + Exit - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8485,43 +8543,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Zaključaj - + Playlists - + Unlock Otključaj - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist @@ -8529,58 +8587,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8764,7 +8822,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9890,12 +9948,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10033,54 +10091,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10089,7 +10147,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10140,34 +10198,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates Sanduci - + Check for Serato databases (refresh) - + (loading) Serato @@ -10190,12 +10248,12 @@ Fully right: end of the effect period - + Unlock Otključaj - + Lock Zaključaj @@ -11154,6 +11212,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12329,11 +12412,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12349,16 +12427,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12374,16 +12442,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12937,22 +12995,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13564,20 +13622,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13748,8 +13806,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Žanr - - Folder + + Directory @@ -13992,155 +14050,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 - + Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist - + Enter name for new playlist: - + New Playlist - - - + + + Playlist Creation Failed - + A playlist by that name already exists. - + A playlist cannot have a blank name. - + An unknown error occurred while creating playlist: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14148,7 +14211,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14185,128 +14248,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14382,7 +14372,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14439,62 +14429,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_ca.qm b/res/translations/mixxx_ca.qm index 1995e4f170060758a6aad6bb54bbf95b545d16fe..124d0efc17901ddbb6932b849b456efbf94d54bc 100644 GIT binary patch delta 19101 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 Z;M2|5*JpIdWY-B}d;+9s>;Wc8{{v_c{m%dZ delta 21335 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 diff --git a/res/translations/mixxx_ca.ts b/res/translations/mixxx_ca.ts index 6f626314fc5..14212859cdc 100644 --- a/res/translations/mixxx_ca.ts +++ b/res/translations/mixxx_ca.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Caixes - + Remove Crate as Track Source Esborra la caixa com a font de pistes - + Auto DJ DJ automàtic - + Add Crate as Track Source Afegeix la caixa com a font de pistes @@ -43,25 +43,25 @@ BansheeFeature - + Banshee Banshee - - + + Error loading Banshee database S'ha produït un error al carregar la base de dades del Banshee - + Banshee database file not found at No s'ha trobat la base de dades del Banshee a - + There was an error loading your Banshee database at Hi ha hagut un error al carregar la base de dades del Banshee des de @@ -71,32 +71,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Afegeix a la cua del DJ automàtic (al final) - + Add to Auto DJ Queue (top) Afegeix a la cua del DJ automàtic (al principi) - + Add to Auto DJ Queue (replace) Afegeix a la cua del DJ automàtic (reemplaça) - + Import Playlist Importa la llista de reproducció - + Playlist Creation Failed Ha fallat la creació de la llista de reproducció - + An unknown error occurred while creating playlist: S'ha produït un error desconegut en crear la llista de reproducció: @@ -104,144 +104,144 @@ BasePlaylistFeature - + New Playlist Llista de reproducció nova - + Add to Auto DJ Queue (bottom) Afegeix a la cua del DJ automàtic (al final) - - + + Create New Playlist Crea una nova llista de reproducció - + Add to Auto DJ Queue (top) Afegeix a la cua del DJ automàtic (al principi) - + Remove Suprimeix - + Rename Canvia el nom - + Lock Bloca els canvis - + Duplicate Duplica - - + + Import Playlist Importa la llista de reproducció - + Export Track Files Exporta pistes a fitxers - + Analyze entire Playlist Analitza tota la llista de reproducció - + Enter new name for playlist: Inseriu un nom nou per a la llista de reproducció: - + Duplicate Playlist Duplica la llista de reproducció - - + + Enter name for new playlist: Inseriu el nom de la llista nova de reproducció: - - + + Export Playlist Exporta la llista de reproducció - + Add to Auto DJ Queue (replace) Afegeix a la cua del DJ automàtic (reemplaça) - + Rename Playlist Canvia el nom a la llista de reproducció - - + + Renaming Playlist Failed Ha fallat el canvi de nom de la llista de reproducció - - - + + + A playlist by that name already exists. Ja existeix una llista de reproducció amb aquest nom. - - - + + + A playlist cannot have a blank name. El nom de la llista de reproducció no pot quedar en blanc - + _copy //: Appendix to default name when duplicating a playlist _copia - - - - - - + + + + + + Playlist Creation Failed Ha fallat la creació de la llista de reproducció - - + + An unknown error occurred while creating playlist: S'ha produït un error desconegut en crear la llista de reproducció: - + M3U Playlist (*.m3u) Llista de reproducció M3U (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Llista de repr. M3U (*.m3u);;Llista de repr. M3U8 (*.m3u8);;Llista de repr. PLS (*.pls);;Text CSV (*.csv);;Text llegible (*.txt) @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. No s'ha pogut carregar la pista. @@ -514,7 +514,7 @@ - + Computer Ordinador @@ -534,7 +534,7 @@ Escaneja - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. "Ordinador" et permet navegar, veure i carregar les pistes de les carpetes del disc dur, o de dispositius externs. @@ -647,12 +647,12 @@ Data de creació - + Mixxx Library Biblioteca del Mixxx - + Could not load the following file because it is in use by Mixxx or another application. No s'ha pogut carregar el següent fitxer, degut a que el Mixxx o una altra aplicació l'estan utilitzant. @@ -683,6 +683,84 @@ El fitxer '%1' està buit i no es pot carregar + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + Inicia el Mixxx el el mode de pantalla sencera + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + Directori inicial on el Mixxx cerca els fixers de recursos, com les configuracions MIDI. Permet utilitzar una ubicació diferent a la de per defecte. + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -865,13 +943,13 @@ - + Set to full volume Posa a màxim volum - + Set to zero volume Posa en silenci @@ -896,13 +974,13 @@ Botó de reprodueix cap enrere i salta endavant (Censura) - + Headphone listen button Botó per escoltar per auriculars - + Mute button Botó de mut @@ -918,25 +996,25 @@ - + Mix orientation (e.g. left, right, center) Destí de la mescla (p.ex. esquerra, dreta, mig) - + Set mix orientation to left Destí de la mescla a l'esquerra - + Set mix orientation to center Destí de la mescla al centre - + Set mix orientation to right Destí de la mescla a la dreta @@ -980,36 +1058,6 @@ Toggle quantize mode Commutador del mode quantitzat als tocs - - - Increase internal master BPM by 1 - Incrementar el BPM mestre intern en 1 - - - - Decrease internal master BPM by 1 - Reduir el BPM mestre intern en 1 - - - - Increase internal master BPM by 0.1 - Incrementar el BPM mestre intern en 0,1 - - - - Decrease internal master BPM by 0.1 - Reduir el BPM mestre intern en 0,1 - - - - Toggle sync master - Commutador de sincronització mestra - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - Commutador de mode de sincronització de 3 estats (OFF, FOLLOWER, MASTER) - One-time beat sync (tempo only) @@ -1021,7 +1069,7 @@ Sincronitzar el ritme un cop (només fase) - + Toggle keylock mode Commutador de mode de bloqueig de clau musical @@ -1031,199 +1079,199 @@ Equalitzadors - + Vinyl Control Control de Vinil - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) Commutador del mode de control dels punts cue amb Vinil (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) Commutador del mode de control de Vinil (ABS/REL/CONST) - + Pass through external audio into the internal mixer Redirecció de l'audio extern cap al mesclador intern - + Cues Punts Cue - + Cue button Botó Cue - + Set cue point Crea un punt Cue - + Go to cue point Ves a un punt Cue - + Go to cue point and play Ves a un punt Cue i reprodueix - + Go to cue point and stop Ves al punt Cue i atura't - + Preview from cue point Pre-escolta del punt Cue - + Cue button (CDJ mode) Botó Cue (mode CDJ) - + Stutter cue Reprodueix Cue (Stutter) - + Hotcues Marques directes - + Set, preview from or jump to hotcue %1 Defineix, pre-escolta des de o vés a la marca directa %1 - + Clear hotcue %1 Esborra la marca directa %1 - + Set hotcue %1 Defineix la marca directa %1 - + Jump to hotcue %1 Ves a la marca directa %1 - + Jump to hotcue %1 and stop Ves a la marca directa %1 i atura't - + Jump to hotcue %1 and play Ves a la marca directa %1 i reprodueix - + Preview from hotcue %1 Pre-escolta des de la marca directa %1 - - + + Hotcue %1 Marca directa %1 - + Looping Bucles - + Loop In button Botó de punt d'inici de bucle - + Loop Out button Botó de punt final de bucle - + Loop Exit button Botó de sortir del bucle - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 32 - + 64 64 - + Move loop forward by %1 beats Moure el bucle endavant en %1 beats - + Move loop backward by %1 beats Moure el bucle endarrere en %1 beats - + Create %1-beat loop Crea bucle de %1 tocs - + Create temporary %1-beat loop roll Crea bucle "roll" temporal de %1 tocs - + Library Biblioteca @@ -1334,20 +1382,20 @@ - - + + Volume Fader Control del volum - + Full Volume Màxim volum - + Zero Volume Volum zero @@ -1363,7 +1411,7 @@ - + Mute Posa Mut @@ -1374,7 +1422,7 @@ - + Headphone Listen Escolta pels auriculars @@ -1395,25 +1443,25 @@ - + Orientation Destí de le mescla - + Orient Left Orientació a l'esquerra - + Orient Center Orientació al Centre - + Orient Right Orientació a la dreta @@ -1512,52 +1560,6 @@ Sync Sincronitza - - - Sync Mode - Mode Sincronitzat - - - - Internal Sync Master - Sincronització interna mestra - - - - Toggle Internal Sync Master - Commutador de sincronització interna mestra - - - - - Internal Master BPM - BPM mestre intern - - - - Internal Master BPM +1 - BPM mestre intern +1 - - - - Internal Master BPM -1 - BPM mestre intern -1 - - - - Internal Master BPM +0.1 - BPM mestre intern +0.1 - - - - Internal Master BPM -0.1 - BPM mestre intern -0.1 - - - - Sync Master - Sincronització mestra - Beat Sync One-Shot @@ -1574,37 +1576,37 @@ Sincronitza les fases al prémer - + Pitch control (does not affect tempo), center is original pitch Control de to/claumusical (no afecta al tempo), el centre és la nota musical original - + Pitch Adjust Ajustament de Pitch - + Adjust pitch from speed slider pitch Ajusta el Pitch de la barra de velocitat - + Match musical key Iguala la clau musical - + Match Key Iguala la clau musical - + Reset Key Reinicia la clau musical - + Resets key to original Reinicia la clau musical per tornar a la original @@ -1645,466 +1647,466 @@ EQ de greus - + Toggle Vinyl Control Commutador de mode Vinil - + Toggle Vinyl Control (ON/OFF) Commutador de control de Vinil (On/Off) - + Vinyl Control Mode Mode de control de Vinil - + Vinyl Control Cueing Mode Mode de control dels punts cue amb Vinil - + Vinyl Control Passthrough Pas de l'audiò d'entrada del control Vinil - + Vinyl Control Next Deck Següent plat del control Vinil - + Single deck mode - Switch vinyl control to next deck Mode d'un plat - Canvia el control de vinil cap al següent plat - + Cue Punt Cue - + Set Cue Defineix el Cue - + Go-To Cue Ves al punt Cue - + Go-To Cue And Play Ves al punt Cue i reprodueix - + Go-To Cue And Stop Ves al punt Cue i atura't - + Preview Cue Pre-escolta del punt Cue - + Cue (CDJ Mode) Punt Cue (Mode CDJ) - + Stutter Cue Reprodueix Cue (Stutter) - + Go to cue point and play after release Ves a un punt Cue i reprodueix en deixar-lo - + Clear Hotcue %1 Esborra la marca directa %1 - + Set Hotcue %1 Defineix la marca directa %1 - + Jump To Hotcue %1 Ves a la marca directa %1 - + Jump To Hotcue %1 And Stop Ves a la marca directa %1 i atura't - + Jump To Hotcue %1 And Play Ves a la marca directa %1 i reprodueix - + Preview Hotcue %1 Pre-escolta la marca directa %1 - + Loop In Inici de bucle - + Loop Out Final de Bucle - + Loop Exit Surt del bucle - + Reloop/Exit Loop Repeteix/Surt del bucle - + Loop Halve Redueix el bucle a la meitat - + Loop Double Incrementa el bucle al doble - + 1/32 1/32 - + 1/16 1/16 - + 1/8 1/8 - + 1/4 1/4 - + Move Loop +%1 Beats Mou el bucle +%1 tocs - + Move Loop -%1 Beats Mou el bucle -%1 tocs - + Loop %1 Beats Bucle de %1 tocs - + Loop Roll %1 Beats Bucle "roll" de %1 tocs - + Add to Auto DJ Queue (bottom) Afegeix a la cua del DJ automàtic (al final) - + Append the selected track to the Auto DJ Queue Afegeix la pista seleccionada al final de la cua de DJ automàtic - + Add to Auto DJ Queue (top) Afegeix a la cua del DJ automàtic (al principi) - + Prepend selected track to the Auto DJ Queue Afegeix la pista seleccionada a l'inici de la cua de DJ automàtic - + Load Track Carrega la pista - + Load selected track Carrega la pista seleccionada - + Load selected track and play Carrega la pista seleccionada i la reprodueix - - + + Record Mix Gravació de la mescla - + Toggle mix recording Commutador de gravació de la mescla - + Effects Efectes - + Quick Effects Efectes ràpids - + Deck %1 Quick Effect Super Knob Súper Control d'Efecte ràpid del Plat %1 - + Quick Effect Super Knob (control linked effect parameters) Súper control de l'Efecte Ràpid (controla el paràmetre de l'efecte associat) - - + + Quick Effect Efecte ràpid - + Clear effect rack Esborrar el rack d'efectes - + Clear Effect Rack Esborrar el Rack d'efectes - + Clear Unit Esborrar la Unitat - + Clear effect unit Esborra la unitat d'efecte - + Toggle Unit Commutador d'unitat - + Dry/Wet Directe/Processat - + Adjust the balance between the original (dry) and processed (wet) signal. Ajusta l'equilibri entre la senyal original (dry) i la processada (wet). - + Super Knob Súper Control - + Next Chain Cadena següent - + Assign Assigna - + Clear Descarta - + Clear the current effect Descarta l'efecte actual - + Toggle Estat d'activació - + Toggle the current effect Commutador de l'estat d'activació de l'efecte - + Next Següent - + Switch to next effect Canvia al següent efecte - + Previous Anterior - + Switch to the previous effect Canvia a l'efecte anterior - + Next or Previous Següent o anterior - + Switch to either next or previous effect Canvia a l'efecte següent o anterior - - + + Parameter Value Valor del paràmetre - - + + Microphone Ducking Strength Nivell de reducció en parlar per micròfon - + Microphone Ducking Mode Mode de reducció en parlar per micròfon - + Gain Guany - + Gain knob Control de guany - + Shuffle the content of the Auto DJ queue Barreja el contingut de la cua de DJ automàtic - + Skip the next track in the Auto DJ queue Salta la següent pista de la cua de DJ automàtic - + Auto DJ Toggle Commutador de DJ automàtic - + Toggle Auto DJ On/Off Commutador On/Off de DJ automàtic - + Microphone & Auxiliary Show/Hide Micròfon i Línia auxiliar Mostra/Amaga - + Show/hide the microphone & auxiliary section Mostra/Amaga la secció del micròfon i la línia auxiliar - + 4 Effect Units Show/Hide 4 Unitats d'efecte Mostra/Amaga - + Switches between showing 2 and 4 effect units Canvia entre les opcions de mostrar 2 o 4 unitats d'efectes - + Mixer Show/Hide Mostra/amaga el mesclador - + Show or hide the mixer. Mostra o amaga el mesclador. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore Maximitza/Restaura la vista de Biblioteca - + Maximize the track library to take up all the available screen space. Maximitza o restaura la vista de Biblioteca per abarcar tota la pantalla - + Effect Rack Show/Hide Mostra/amaga el rack d'efectes - + Show/hide the effect rack Mostra/amaga el rack d'efectes - + Waveform Zoom Out Allunya el zoom del gràfic d'ona @@ -2129,93 +2131,93 @@ Sincronització del tempo en pulsar (i la fase si està la quantització activada) - + Playback Speed Velocitat de reproducció - + Playback speed control (Vinyl "Pitch" slider) Velocitat de reproducció ("Pitch" de Vinil) - + Pitch (Musical key) Pitch (clau musical) - + Increase Speed Accelera - + Adjust speed faster (coarse) Acceleració (valor gran) de velocitat - - + + Increase Speed (Fine) Acceleració (valor petit) - + Adjust speed faster (fine) Acceleració (valor petit) - + Decrease Speed Redueix - + Adjust speed slower (coarse) Reducció de velocitat (valor gran) - + Adjust speed slower (fine) Redueix la velocitat (valor petit) - + Temporarily Increase Speed Acceleració momentània - + Temporarily increase speed (coarse) Acceleració (valor gran) momentània - + Temporarily Increase Speed (Fine) Acceleració (valor petit) momentània - + Temporarily increase speed (fine) Acceleració (valor petit) momentània - + Temporarily Decrease Speed Reducció de velocitat momentània - + Temporarily decrease speed (coarse) Reducció de velocitat (valor gran) momentània - + Temporarily Decrease Speed (Fine) Reducció de velocitat (valor petit) momentània - + Temporarily decrease speed (fine) Reducció de velocitat (valor petit) momentània @@ -2272,806 +2274,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed LFO - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock Bloqueig de clau musical - + CUP (Cue + Play) CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats Bucle de tocs seleccionats - + Create a beat loop of selected beat size Crea un bucle de tocs de la mida seleccionada - + Loop Roll Selected Beats Bucle "roll" de tocs seleccionats - + Create a rolling beat loop of selected beat size Crea un bucle "roll" de tocs de la mida seleccionada - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position Activa o desactiva el bucle, i salta a l'inici del bucle si aquest es anterior a la posició de reproducció actual - + Reloop And Stop Repeteix i para - + Enable loop, jump to Loop In point, and stop Activa el bucle, es mou a l'inici d'aquest i es para - + Halve the loop length Redueix el bucle a la meitat - + Double the loop length Duplica la mida del bucle - + Beat Jump / Loop Move Salt en tocs / Mou el bucle - + Jump / Move Loop Forward %1 Beats Salta / Mou el bucle endavant en %1 tocs - + Jump / Move Loop Backward %1 Beats Salta / Mou el bucle enrera en %1 tocs - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats Salta endavant %1 tocs, o si el bucle està activat, mou el bucle endavant en %1 tocs - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats Salta enrera %1 tocs, o si el bucle està activat, mou el bucle enrera en %1 tocs - + Beat Jump / Loop Move Forward Selected Beats Salt en tocs / Mou el bucle endavant els tocs seleccionats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats Salta endavant en la quantitat de tocs seleccionada, o si el bucle està activat, mou el bucle endavant el nombre de tocs seleccionat. - + Beat Jump / Loop Move Backward Selected Beats Salt en tocs / Mou el bucle enrera els tocs seleccionats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats Salta enrera en la quantitat de tocs seleccionada, o si el bucle està activat, mou el bucle enrera el nombre de tocs seleccionat. - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation Navegació - + Move up Mou amunt - + Equivalent to pressing the UP key on the keyboard Equivalent a prémer la tecla Amunt del teclat - + Move down Mou avall - + Equivalent to pressing the DOWN key on the keyboard Equivalent a prémer la tecla Avall del teclat - + Move up/down Mou amunt/avall - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys Mou verticalment en ambdúes direccions utilitzant un control, com al prémer les tecles amunt/avall - + Scroll Up Pàgina amunt - + Equivalent to pressing the PAGE UP key on the keyboard Equivalment a prémer la tecla Pàgina amunt del teclat - + Scroll Down Pàgina avall - + Equivalent to pressing the PAGE DOWN key on the keyboard Equivalent a prémer la tecla Pàgina avall del teclat - + Scroll up/down Pàgina amunt/avall - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys Mou verticalment en ambdúes direccions utilitzant un control, com al prémer les tecles pàgina amunt/avall - + Move left Mou a l'esquerra - + Equivalent to pressing the LEFT key on the keyboard Equivalent a prémer la tecla Esquerra del teclat - + Move right Mou a la dreta - + Equivalent to pressing the RIGHT key on the keyboard Equivalent a prémer la tecla Dreta del teclat - + Move left/right Mou esquerra/dreta - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys Mou horitzontalment en ambúes direccions utilitzant un control, com al prémer les tecles Esquerra/Dreta del teclat - + Move focus to right pane Mou el focus al panell dret - + Equivalent to pressing the TAB key on the keyboard Equivalent a prémer la tecla tabulació del teclat - + Move focus to left pane Mou el focus al panell esquerra - + Equivalent to pressing the SHIFT+TAB key on the keyboard Equivalent a prémer les tecles Majúscules+Tabulació del teclat - + Move focus to right/left pane Mou el focus al panell esquerra/dret - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys Mou el focus al panell de la dreta o esquerra utilizant un control, com al prémer tabulació/Majúscules+tabulació - + Go to the currently selected item Vés a l'element seleccionat actualment - + Choose the currently selected item and advance forward one pane if appropriate Tria l'element seleccionat actualment i avança un panell si és apropiat - + Load Track and Play - + Add to Auto DJ Queue (replace) Afegeix a la cua del DJ automàtic (reemplaça) - + Replace Auto DJ Queue with selected tracks Reemplaça la cua de DJ automàtic amb les pistes seleccionades - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button Botó d'activació d'efecte ràpid del reproductor %1 - + Quick Effect Enable Button Botó d'efecte ràpid - + Enable or disable effect processing Commuta el processament d'efectes - + Super Knob (control effects' Meta Knobs) Control Super (controla els controls 'Meta' dels efectes) - + Mix Mode Toggle Selector del mode de mescla - + Toggle effect unit between D/W and D+W modes Canvi entre D/P i D+P a la unitat d'efectes - + Next chain preset Següent cadena preestablerta - + Previous Chain Següent cadena - + Previous chain preset Cadena anterior preestablerta - + Next/Previous Chain Següent/Anterior cadena - + Next or previous chain preset Següent o anterior cadena preestablerta - - + + Show Effect Parameters Mostra els paràmetres d'efectes - + Effect Unit Assignment - + Meta Knob Control Meta - + Effect Meta Knob (control linked effect parameters) Control Meta de l'efecte (controla els paràmetres de l'efecte enllaçats) - + Meta Knob Mode Mode de Control Meta - + Set how linked effect parameters change when turning the Meta Knob. Defineix la manera com canvien els paràmetres de l'efecte enllaçats al girar el control Meta. - + Meta Knob Mode Invert Mode d'inversió del control Meta - + Invert how linked effect parameters change when turning the Meta Knob. Inverteix el sentit en que canvien els paràmetres de l'efecte enllaçats al girar el control Meta. - - + + Button Parameter Value - + Microphone / Auxiliary Micròfon / Línia auxiliar - + Microphone On/Off Micrònfon obert/tancat - + Microphone on/off Micròfon obert/tancat - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) Commutador del mode de reducció de volum del micròfon (OFF, AUTO, MANUAL) - + Auxiliary On/Off Línia auxiliar oberta/tancada - + Auxiliary on/off Línia auxiliar oberta/tancada - + Auto DJ DJ automàtic - + Auto DJ Shuffle Barreja la cua de DJ automàtic - + Auto DJ Skip Next DJ automatic, saltar-se la següent - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next DJ automàtic, Salta a la seguent esvaint l'actual - + Trigger the transition to the next track Fer que s'iniciï la transició cap a la següent pista - + User Interface Interfície d'usuari - + Samplers Show/Hide Mostra/amaga Reprod. de mostres - + Show/hide the sampler section Mostra/amaga la secció dels reproductors de mostres - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. Emet la mescla a través d'Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide Mostra/amaga el control de vinil - + Show/hide the vinyl control section Mostra/amaga la secció del control de vinil - + Preview Deck Show/Hide Mostra/amaga la pre-escolta - + Show/hide the preview deck Mostra o amaga la secció de la pre-escolta - + Toggle 4 Decks Commuta 4 plats - + Switches between showing 2 decks and 4 decks. Canvia entre les opcions de mostrar 2 o 4 plats. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide Mostra/amaga el vinil giratori - + Show/hide spinning vinyl widget Mostra/amaga l'element de pantalla amb el vinil giratori - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom Fa zoom del gràfic d'ona - + Waveform Zoom Zoom del gràfic d'ona - + Zoom waveform in Apropa el zoom del gràfic d'ona - + Waveform Zoom In Apropa el zoom del gràfic d'ona - + Zoom waveform out Allunya el zoom del gràfic d'ona - + Star Rating Up Valoració positiva - + Increase the track rating by one star Augmenta la puntuació de la pista amb una estrella - + Star Rating Down Valoració negativa - + Decrease the track rating by one star Disminueix la puntuació de la pista amb una estrella @@ -3160,32 +3228,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. Es deshabilitaran les funcions de les assignacions de controlador fins que el problema s'hagi resolt. - + You can ignore this error for this session but you may experience erratic behavior. Podeu ignorar l'error per aquesta sessió, però podríeu experimentar comportaments erràtics. - + Try to recover by resetting your controller. Intentar que s'arregli reiniciant la controladora. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. Cal corregir el codi del script. @@ -3221,133 +3289,133 @@ CrateFeature - + Remove Suprimeix - - + + Create New Crate Crea una nova caixa - + Rename Canvia el nom - - + + Lock Bloca els canvis - + Export Crate as Playlist - + Export Track Files Exporta pistes a fitxers - + Duplicate Duplica - + Analyze entire Crate Analitza la caixa sencera - + Auto DJ Track Source Font de pistes per a DJ automàtic - + Enter new name for crate: Introdueix un nom nou per a la caixa: - - + + Crates Caixes - - + + Import Crate Importa una caixa - + Export Crate Exporta la caixa - + Unlock Permet els canvis - + An unknown error occurred while creating crate: Hi ha hagut un error desconegut a l'hora de crear la caixa: - + Rename Crate Canvia el nom a la caixa - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed El canvi de nom de la caixa ha fallat - + Crate Creation Failed No s'ha pogut crear la caixa - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Llista de repr. M3U (*.m3u);;Llista de repr. M3U8 (*.m3u8);;Llista de repr. PLS (*.pls);;Text CSV (*.csv);;Text llegible (*.txt) - + Crates are a great way to help organize the music you want to DJ with. Les caixes són una bona manera d'ajudar a organitzar la música que voleu posar a les sessions. - + Crates let you organize your music however you'd like! Les caixes us permeten organitzar la vostra música al vostre gust! - + A crate cannot have a blank name. Una caixa no pot tenir un nom en blanc. - + A crate by that name already exists. Ja existeix una caixa amb aquest nom @@ -3417,37 +3485,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: Amb les contribucions de: - + And special thanks to: Reconeixements especials a: - + Past Developers Antics desenvolupadors - + Past Contributors Antics Contribuidors - + Official Website - + Donate @@ -4914,32 +4982,32 @@ Volue aplicar la configuració i continuar? DlgPrefControlsDlg - + Skin Aparença - + Tool tips Informació sobre eines al posar el ratolí a sobre - + Select from different color schemes of a skin if available. Selecciona entre els diferents esquemes de colors de l'aparença, si en té. - + Color scheme Esquema de color - + Locales determine country and language specific settings. La configuració regional determina les opcions de país i d'idioma especifícs. - + Locale Configuració regional @@ -4949,52 +5017,42 @@ Volue aplicar la configuració i continuar? Preferències d'interfície - + HiDPI / Retina scaling HiDPI / escalat de Retina - + Change the size of text, buttons, and other items. Canvia la mida del text, botons i altres elements - - Adopt scale factor from the operating system - Utilitza l'escala definida al sistema operatiu - - - - Auto Scaling - Escalat automàtic - - - + Screen saver Estalvi de pantalla - + Start in full-screen mode Inicia en el mode de pantalla completa - + Full-screen mode Mode de pantalla completa - + Off Desactivat - + Library only Només en la biblioteca - + Library and Skin A la biblioteca i l'aparença @@ -5623,39 +5681,39 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. La mida mínima de l'aparenca és més gran que la resolució de la vostra pantalla - + Allow screensaver to run Permet que s'activi l'estalvi de pantalla - + Prevent screensaver from running Evita que s'activi l'estalvi de pantalla - + Prevent screensaver while playing Evita l'estalvi de pantalla mentre reprodueix - + This skin does not support color schemes Aquesta aparença no suporta els esquemes de colors - + Information Informació - - Mixxx must be restarted before the new locale setting will take effect. - Reinicieu el Mixxx per aplicar els canvis de llengua. + + Mixxx must be restarted before the new locale or scaling settings will take effect. + @@ -5873,62 +5931,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added S'ha afegit la carpeta de música - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? Heu afegit un o més carpetes de música. Les cançons d'aquestes carpetes no estaran disponibles fins que es faci un escaneig de nou. Voleu realitzar l'escaneig ara? - + Scan Escaneja - + Choose a music directory Selecciona una carpeta de música - + Confirm Directory Removal Confirma la supressió de la carpeta - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. El Mixxx no revisarà més la carpeta per trobar noves pistes. Que voleu fer amb les pistes d'aquesta carpeta i subcarpetes?<ul><li>Amaga totes les pistes d'aquesta carpeta i subcarpetes.</li><li>Esborra les metadades d'aquestes pistes del Mixxx de forma permanent.</li><li>Deixa les pistes sense canviar a la Biblioteca</li></ul>Si s'amaguen les pistes, les metadades seguiran disponibles en cas que les afegíssiu de nou. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. Metadades significa tots els detalls de la pista (artista, títol, comptador de reproducció, etc.) així com les graelles de rtime, les marques directes i els bucles. Aquesta acció només afecta a la biblioteca del Mixxx. Els fitxers del disc no es canviaran ni s'esborraran. - + Hide Tracks Amaga les pistes - + Delete Track Metadata Esborra les metadades de les pistes - + Leave Tracks Unchanged Deixa les pistes sense canviar - + Relink music directory to new location Corregeix la ubicació de la carpeta de música - + Select Library Font Selecciona el tipus de lletra de la Biblioteca @@ -6934,32 +6992,32 @@ El valor desitjat és aproximat i assumeix que els pre-guanys i el volum de sort DlgPrefWaveform - + Filtered Filtrat - + HSV HSV - + RGB RGB - + OpenGL not available OpenGL no està disponible - + dropped frames fotogrames descartats - + Cached waveforms occupy %1 MiB on disk. La memòria cau dels gràfics d'ona ocupa %1 MiB en disc. @@ -7175,72 +7233,72 @@ Seleccioneu entre els diferents tipus de gràfics per a la forma d'ona loca Biblioteca - + Interface Interfície - + Waveforms Gràfics d'ona - + Auto DJ DJ automàtic - + Equalizers Equalitzadors - + Decks Reproductors - + Colors Colors - + Crossfader Crossfader - + Effects Efectes - + LV2 Plugins Complements LV2 - + Recording Enregistrament - + Beat Detection Detecció de ritme - + Key Detection Detecció de clau musical - + Normalization Normalització - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7250,12 +7308,12 @@ Seleccioneu entre els diferents tipus de gràfics per a la forma d'ona loca Control de Vinil - + Live Broadcasting Retransmissió en directe - + Modplug Decoder Decodificador Modplug @@ -7396,123 +7454,123 @@ Seleccioneu entre els diferents tipus de gràfics per a la forma d'ona loca Selecciona el millor candidat - - + + Track Pista - - + + Year Any - + Title Tí­tol - - + + Artist Artista - - + + Album Àlbum - + Album Artist Artista de l'àlbum - + Fetching track data from the MusicBrainz database Recuperant informació de la pista de la base de dades de MusicBrainz - + Mixxx could not find this track in the MusicBrainz database. Mixxx no ha pogut trobar aquesta pista a la base de dades del MusicBrainz. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. Obté la API de notes - + Submit Submits audio fingerprints to the MusicBrainz database. Envia - + New Column Nova columna - + New Item Nou ítem - + &Previous A&nterior - + &Next &Següent - + &Apply &Aplica - + &Close &Tanca - + Status: %1 Estat: %1 - + HTTP Status: %1 Estat HTTP: %1 - + Code: %1 Codi: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx no pot connectar a %1 per algun motiu desconegut. - + Mixxx can't connect to %1. Mixxx no pot connectar a %1. - + Original tags Etiquetes originals - + Suggested tags Etiquetes suggerides @@ -7906,17 +7964,17 @@ Sovint ofereix una graella de pulsacions de major qualitat, però no serà prou EngineBuffer - + Soundtouch (faster) Soundtouch (ràpid) - + Rubberband (better) Rubberband (més qualitat) - + Unknown (bad value) Desconegut (valor incorrecte) @@ -8017,38 +8075,38 @@ Sovint ofereix una graella de pulsacions de major qualitat, però no serà prou ITunesFeature - + iTunes iTunes - - + + Select your iTunes library Seleccioneu la vostra biblioteca de l'iTunes - + (loading) iTunes (carregant) iTunes - + Use Default Library Utilitza la biblioteca per defecte - + Choose Library... Seleccioneu la biblioteca... - + Error Loading iTunes Library Error carregant la biblioteca d'iTunes - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. Hi ha hagut un error carregant la vostra biblioteca d'iTunes. Algunes de les vostres pistes o llistes de reproducció d'iTunes poden no haver-se carregat. @@ -8056,13 +8114,13 @@ Sovint ofereix una graella de pulsacions de major qualitat, però no serà prou LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. Mode segur activat - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8071,57 +8129,57 @@ support. OpenGL. - + activate activa - + toggle commuta - + right dreta - + left esquerra - + right small dreta petit - + left small esquerra petit - + up amunt - + down avall - + up small amunt petit - + down small avall petit - + Shortcut Drecera @@ -8142,22 +8200,22 @@ OpenGL. LibraryFeature - + Import Playlist Importa la llista de reproducció - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Llistes de reproducció (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? Voleu sobreescriure el fitxer? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8171,27 +8229,27 @@ Voleu sobreescriure aquesta llista? LibraryScannerDlg - + Library Scanner Analitzador de la biblioteca - + It's taking Mixxx a minute to scan your music library, please wait... Mixxx tardarà una estona a escanejar biblioteca de música. Espereu un moment... - + Cancel Cancel·la - + Scanning: Escanejant: - + Scanning cover art (safe to cancel) Escanejant les caràtules (es pot cancel·lar) @@ -8308,183 +8366,183 @@ Voleu sobreescriure aquesta llista? MixxxMainWindow - + Sound Device Busy El dispositiu de so està ocupat - + <b>Retry</b> after closing the other application or reconnecting a sound device <b>Torna-ho a provar</b> després de tancar l'altra aplicació o reconnectar el dispositiu d'àudio - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. <b>Reconfigura</b> les opcions del dispositiu d'àudio de Mixxx - - + + Get <b>Help</b> from the Mixxx Wiki. Obteniu <b>ajuda</b> a la Vikipèdia de Mixxx. - - - + + + <b>Exit</b> Mixxx. <b>Surt</b> del Mixxx. - + Retry Torna a provar - + skin - - + + Reconfigure Reconfigura - + Help Ajuda - - + + Exit Surt - - + + Mixxx was unable to open all the configured sound devices. El Mixxx no ha pogut obrir tots els dispositius de so configurats. - + Sound Device Error Error del dispositiu de so - + <b>Retry</b> after fixing an issue <b>Reintenta</b> després de corregir el problema - + No Output Devices No hi ha cap dispositiu de sortida - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. S'ha configurat el Mixxx sense cap dispositiu de so de sortida, per la qual cosa s'inhabilitarà el processament d'àudio. - + <b>Continue</b> without any outputs. <b>Continua</b> sense cap sortida. - + Continue Continua - + Load track to Deck %1 Carrega la pista a la platina %1 - + Deck %1 is currently playing a track. La platina %1 està reproduint una pista. - + Are you sure you want to load a new track? Esteu segur de voler carregar una nova pista? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. No hi ha cap dispositiu d'entrada seleccionat per a aquest control de vinil. Si us plau, seleccioneu primer un dispositiu d'entrada a les preferències de Maquinari de so. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. No hi ha cap dispositiu d'entrada seleccionat per a aquest control de pas d'audio. Si us plau, seleccioneu primer un dispositiu d'entrada a les preferències de Maquinari de so. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file Error en el fitxer d'aparença - + The selected skin cannot be loaded. No es pot carregar l'aparença seleccionada. - + OpenGL Direct Rendering OpenGL Renderització Directa - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. La Renderizació Directa no està activada a la vostra màquina.<br><br> Això significa que els gràfics d'ona seran molt <br><b>lent i poden fer anar molta CPU</b>. Prove de canviar la<br> configuració per activar la renderització directa, o desactiveu<br>els gràfics d'ona a les preferències del Mixxx selecionant<br>"Buit" al tipus deforma d'ona local, en la secció de "Gràfics d'ona". - - - + + + Confirm Exit Confirma la sortida - + A deck is currently playing. Exit Mixxx? Un plat està reproduint encara. Voleu sortir del Mixxx? - + A sampler is currently playing. Exit Mixxx? Hi ha un reproductor de mostres que està reproduint. Segur que voleu sortir del Mixxx? - + The preferences window is still open. La finestra de preferències està oberta encara. - + Discard any changes and exit Mixxx? Descartar els canvis i sortir del Mixxx? @@ -8557,43 +8615,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Bloca els canvis - + Playlists Llistes de reproducció - + Unlock Permet els canvis - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. Alguns DJ preparen llistes de reproducció abans d'actuar, però altres prefereixen fer-les en viu. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. Quan utilitzeu una llista de reproducció durant una sessió en viu, recordeu parar atenció a com reacciona l'audiència a la música que heu decidit reproduir. - + Create New Playlist Crea una nova llista de reproducció @@ -8601,59 +8659,59 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx Actualitzant el Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? Ara és possible que el Mixxx mostri les caràtules. Voleu escanejar ara la biblioteca cercant les caràtules? - + Scan Escaneja - + Later Més tard - + Upgrading Mixxx from v1.9.x/1.10.x. Actualitzant el Mixxx de la versió v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. El Mixxx té un nou i millorat detector de tocs. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. Quan carregueu les vostres pistes, el Mixxx pot tornar a analitzar i generar noves graelles de ritme més acurades. Això millora la sincronització automàtica de ritme i els bucles. - + This does not affect saved cues, hotcues, playlists, or crates. Això no afecta als punts Cue, marques directe, llistes de reproducció o caixes. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. Si no voleu que Mixxx torni a analitzar les vostres pistes, trieu "Mantingues les graelles actuals". Podeu canviar aquesta opció en qualsevol moment des de la secció "Detecció de ritme" de les Preferències. - + Keep Current Beatgrids Mantingues les graelles actuals - + Generate New Beatgrids Genera noves graelles de ritme @@ -8837,7 +8895,7 @@ Voleu escanejar ara la biblioteca cercant les caràtules? El còdec Opus no suporta una freqüència de mostreig superior a 48 kHz. Utilitzeu 48000 Hz a les opcions del «Maquinari de so» o trieu altre codificador diferent. - + Encoder Codificador @@ -9989,12 +10047,12 @@ Tot a la dreta: Al final del període - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10132,54 +10190,54 @@ Tot a la dreta: Al final del període RekordboxFeature - - - + + + Rekordbox Rekordbox - + Playlists Llistes de reproducció - + Folders Carpetes - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues hotcues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids Graella de ritmes - + Memory cues - + (loading) Rekordbox (carregant) Rekordbox @@ -10188,7 +10246,7 @@ Tot a la dreta: Al final del període RhythmboxFeature - + Rhythmbox Rhythmbox @@ -10239,34 +10297,34 @@ Tot a la dreta: Al final del període SeratoFeature - - - + + + Serato Serato - + Reads the following from the Serato Music directory and removable devices: Reconeix els següents paràmetres de Serato en una carpeta de música o dispositiu extern: - + Tracks Pistes - + Crates Caixes - + Check for Serato databases (refresh) - + (loading) Serato @@ -10289,12 +10347,12 @@ Tot a la dreta: Al final del període Historial - + Unlock Permet els canvis - + Lock Bloca els canvis @@ -11253,6 +11311,31 @@ Tot a la dreta: Al final del període Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12430,11 +12513,6 @@ Ho pots utilitzar per canviar només la senyal processada amb EQs i efectes de f Old Synchronize Sincronitzador Antic - - - (This skin should be updated to use Master Sync!) - (Cal actualitzar aquesta aparença per a que utilitzi la Sincronizació Mestra!) - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12450,16 +12528,6 @@ Ho pots utilitzar per canviar només la senyal processada amb EQs i efectes de f Decks can't sync to samplers and samplers can only sync to decks. Els plats no poden sincronitzar-se amb els reproductors de mostres i els reproductors de mostres només es poden sincronitzar amb els plats. - - - Enable Master Sync - Activa la Sincronització Mestra - - - - Tap to sync the tempo to other playing tracks or the master clock. - Toca/prem per sincronitzar el tempo amb les altres pistes o amb el rellotge mestre. - Hold for at least a second to enable sync lock for this deck. @@ -12475,16 +12543,6 @@ Ho pots utilitzar per canviar només la senyal processada amb EQs i efectes de f Resets the key to the original track key. Reinicia la clau musical a la clau original de la pista. - - - Enable Sync Clock Master - Activa la Sincronització de Rellotge Mestre - - - - When enabled, this device will serve as the master clock for all other decks. - Quan s'activa, aquest dispositiu fa de rellotge mestre per a la resta de plats. - Speed Control @@ -13038,22 +13096,22 @@ Ho pots utilitzar per canviar només la senyal processada amb EQs i efectes de f TraktorFeature - + Traktor Traktor - + (loading) Traktor (carregant) Traktor - + Error Loading Traktor Library S'ha produït un error al carregar la biblioteca del Traktor - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. S'ha produït un error al carregar la biblioteca del Traktor. Algunes de les vostres pistes i llistes de reproducció de Traktor podrien no haver-se carregat. @@ -13665,20 +13723,20 @@ Ho pots utilitzar per canviar només la senyal processada amb EQs i efectes de f Pas de l'àudio - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13849,8 +13907,8 @@ Ho pots utilitzar per canviar només la senyal processada amb EQs i efectes de f Gènere - - Folder + + Directory @@ -14093,155 +14151,160 @@ Ho pots utilitzar per canviar només la senyal processada amb EQs i efectes de f Reinicia els BPM - + + Update ReplayGain from Deck Gain + + + + Deck %1 Plat %1 - + Sampler %1 Reproductor de mostres %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Crea una nova llista de reproducció - + Enter name for new playlist: Inseriu el nom de la llista nova de reproducció: - + New Playlist Llista de reproducció nova - - - + + + Playlist Creation Failed Ha fallat la creació de la llista de reproducció - + A playlist by that name already exists. Ja existeix una llista de reproducció amb aquest nom. - + A playlist cannot have a blank name. El nom de la llista de reproducció no pot quedar en blanc - + An unknown error occurred while creating playlist: S'ha produït un error desconegut en crear la llista de reproducció: - + Add to New Crate Afegeix a una caixa nova - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14249,7 +14312,7 @@ Ho pots utilitzar per canviar només la senyal processada amb EQs i efectes de f WTrackTableView - + ESC Focus ESC @@ -14286,128 +14349,55 @@ Ho pots utilitzar per canviar només la senyal processada amb EQs i efectes de f (GL ES) - - main - - - Starts Mixxx in full-screen mode - Inicia el Mixxx el el mode de pantalla sencera - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - Directori inicial on el Mixxx cerca els fixers de recursos, com les configuracions MIDI. Permet utilitzar una ubicació diferent a la de per defecte. - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks reproductors - + library - + Choose music library directory Seleccioneu la carpeta de la biblioteca de música. - + controllers - + Cannot open database No es pot obrir la base de dades - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14486,7 +14476,7 @@ Feu click a Acceptar per sortir. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14543,62 +14533,62 @@ Feu click a Acceptar per sortir. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse Mouse HID Genèric - + Generic HID Joystick Comandament HID genèric - + Generic HID Game Pad - + Generic HID Keyboard Teclat HID genèric - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: @@ -14616,7 +14606,7 @@ Feu click a Acceptar per sortir. No effect loaded. - + No hi ha cap efecte carregat. \ No newline at end of file diff --git a/res/translations/mixxx_ca_ES.qm b/res/translations/mixxx_ca_ES.qm index 4ca69fb3688dd5beb64cd10265028afd20215c9e..7839c44987201fafd2c97aba9aca115451aeb8bb 100644 GIT binary patch delta 18172 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

|IM=5fm>3VHb!+M}m8qv(CDJ^C~q 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 AutoDJFeature - + Crates Caixes - + Remove Crate as Track Source Esborra la caixa com a font de pistes - + Auto DJ DJ automàtic - + Add Crate as Track Source Afegeix la caixa com a font de pistes @@ -43,25 +43,25 @@ BansheeFeature - + Banshee Banshee - - + + Error loading Banshee database S'ha produït un error al carregar la base de dades del Banshee - + Banshee database file not found at No s'ha trobat la base de dades del Banshee a - + There was an error loading your Banshee database at Hi ha hagut un error al carregar la base de dades del Banshee des de @@ -71,32 +71,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Afegeix a la cua del DJ automàtic (al final) - + Add to Auto DJ Queue (top) Afegeix a la cua del DJ automàtic (al principi) - + Add to Auto DJ Queue (replace) Afegeix a la cua del DJ automàtic (reemplaça) - + Import Playlist Importa la llista de reproducció - + Playlist Creation Failed Ha fallat la creació de la llista de reproducció - + An unknown error occurred while creating playlist: S'ha produït un error desconegut en crear la llista de reproducció: @@ -104,144 +104,144 @@ BasePlaylistFeature - + New Playlist Llista de reproducció nova - + Add to Auto DJ Queue (bottom) Afegeix a la cua del DJ automàtic (al final) - - + + Create New Playlist Crea una nova llista de reproducció - + Add to Auto DJ Queue (top) Afegeix a la cua del DJ automàtic (al principi) - + Remove Suprimeix - + Rename Canvia el nom - + Lock Bloca els canvis - + Duplicate Duplica - - + + Import Playlist Importa la llista de reproducció - + Export Track Files Exporta pistes a fitxers - + Analyze entire Playlist Analitza tota la llista de reproducció - + Enter new name for playlist: Inseriu un nom nou per a la llista de reproducció: - + Duplicate Playlist Duplica la llista de reproducció - - + + Enter name for new playlist: Inseriu el nom de la llista nova de reproducció: - - + + Export Playlist Exporta la llista de reproducció - + Add to Auto DJ Queue (replace) Afegeix a la cua del DJ automàtic (reemplaça) - + Rename Playlist Canvia el nom a la llista de reproducció - - + + Renaming Playlist Failed Ha fallat el canvi de nom de la llista de reproducció - - - + + + A playlist by that name already exists. Ja existeix una llista de reproducció amb aquest nom. - - - + + + A playlist cannot have a blank name. El nom de la llista de reproducció no pot quedar en blanc - + _copy //: Appendix to default name when duplicating a playlist _copia - - - - - - + + + + + + Playlist Creation Failed Ha fallat la creació de la llista de reproducció - - + + An unknown error occurred while creating playlist: S'ha produït un error desconegut en crear la llista de reproducció: - + M3U Playlist (*.m3u) Llista de reproducció M3U (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Llista de repr. M3U (*.m3u);;Llista de repr. M3U8 (*.m3u8);;Llista de repr. PLS (*.pls);;Text CSV (*.csv);;Text llegible (*.txt) @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. No s'ha pogut carregar la pista. @@ -514,7 +514,7 @@ - + Computer Ordinador @@ -534,7 +534,7 @@ Escaneja - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. "Ordinador" et permet navegar, veure i carregar les pistes de les carpetes del disc dur, o de dispositius externs. @@ -647,12 +647,12 @@ Data de creació - + Mixxx Library Biblioteca del Mixxx - + Could not load the following file because it is in use by Mixxx or another application. No s'ha pogut carregar el següent fitxer, degut a que el Mixxx o una altra aplicació l'estan utilitzant. @@ -683,6 +683,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -865,13 +943,13 @@ - + Set to full volume Posa a màxim volum - + Set to zero volume Posa en silenci @@ -896,13 +974,13 @@ Botó de reprodueix cap enrere i salta endavant (Censura) - + Headphone listen button Botó per escoltar per auriculars - + Mute button Botó de mut @@ -918,25 +996,25 @@ - + Mix orientation (e.g. left, right, center) Destí de la mescla (p.ex. esquerra, dreta, mig) - + Set mix orientation to left Destí de la mescla a l'esquerra - + Set mix orientation to center Destí de la mescla al centre - + Set mix orientation to right Destí de la mescla a la dreta @@ -980,36 +1058,6 @@ Toggle quantize mode Commutador del mode quantitzat als tocs - - - Increase internal master BPM by 1 - Incrementar el BPM mestre intern en 1 - - - - Decrease internal master BPM by 1 - Reduir el BPM mestre intern en 1 - - - - Increase internal master BPM by 0.1 - Incrementar el BPM mestre intern en 0,1 - - - - Decrease internal master BPM by 0.1 - Reduir el BPM mestre intern en 0,1 - - - - Toggle sync master - Commutador de sincronització mestra - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - Commutador de mode de sincronització de 3 estats (OFF, FOLLOWER, MASTER) - One-time beat sync (tempo only) @@ -1021,7 +1069,7 @@ Sincronitzar el ritme un cop (només fase) - + Toggle keylock mode Commutador de mode de bloqueig de clau musical @@ -1031,199 +1079,199 @@ Equalitzadors - + Vinyl Control Control de Vinil - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) Commutador del mode de control dels punts cue amb Vinil (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) Commutador del mode de control de Vinil (ABS/REL/CONST) - + Pass through external audio into the internal mixer Redirecció de l'audio extern cap al mesclador intern - + Cues Punts Cue - + Cue button Botó Cue - + Set cue point Crea un punt Cue - + Go to cue point Ves a un punt Cue - + Go to cue point and play Ves a un punt Cue i reprodueix - + Go to cue point and stop Ves al punt Cue i atura't - + Preview from cue point Pre-escolta del punt Cue - + Cue button (CDJ mode) Botó Cue (mode CDJ) - + Stutter cue Reprodueix Cue (Stutter) - + Hotcues Marca directa - + Set, preview from or jump to hotcue %1 Defineix, pre-escolta des de o vés a la marca directa %1 - + Clear hotcue %1 Esborra la marca directa %1 - + Set hotcue %1 Defineix la marca directa %1 - + Jump to hotcue %1 Ves a la marca directa %1 - + Jump to hotcue %1 and stop Ves a la marca directa %1 i atura't - + Jump to hotcue %1 and play Ves a la marca directa %1 i reprodueix - + Preview from hotcue %1 Pre-escolta des de la marca directa %1 - - + + Hotcue %1 Marca directa %1 - + Looping Bucles - + Loop In button Botó de punt d'inici de bucle - + Loop Out button Botó de punt final de bucle - + Loop Exit button Botó de sortir del bucle - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 32 - + 64 64 - + Move loop forward by %1 beats Moure el bucle endavant en %1 beats - + Move loop backward by %1 beats Moure el bucle endarrere en %1 beats - + Create %1-beat loop Crea bucle de %1 tocs - + Create temporary %1-beat loop roll Crea bucle "roll" temporal de %1 tocs - + Library Biblioteca @@ -1334,20 +1382,20 @@ - - + + Volume Fader Control del volum - + Full Volume Màxim volum - + Zero Volume Volum zero @@ -1363,7 +1411,7 @@ - + Mute Posa Mut @@ -1374,7 +1422,7 @@ - + Headphone Listen Escolta pels auriculars @@ -1395,25 +1443,25 @@ - + Orientation Destí de le mescla - + Orient Left Orientació a l'esquerra - + Orient Center Orientació al Centre - + Orient Right Orientació a la dreta @@ -1512,52 +1560,6 @@ Sync Sincronitza - - - Sync Mode - Mode Sincronitzat - - - - Internal Sync Master - Sincronització interna mestra - - - - Toggle Internal Sync Master - Commutador de sincronització interna mestra - - - - - Internal Master BPM - BPM mestre intern - - - - Internal Master BPM +1 - BPM mestre intern +1 - - - - Internal Master BPM -1 - BPM mestre intern -1 - - - - Internal Master BPM +0.1 - BPM mestre intern +0.1 - - - - Internal Master BPM -0.1 - BPM mestre intern -0.1 - - - - Sync Master - Sincronització mestra - Beat Sync One-Shot @@ -1574,37 +1576,37 @@ Sincronitza les fases al prémer - + Pitch control (does not affect tempo), center is original pitch Control de to/claumusical (no afecta al tempo), el centre és la nota musical original - + Pitch Adjust Ajustament de Pitch - + Adjust pitch from speed slider pitch Ajusta el Pitch de la barra de velocitat - + Match musical key Iguala la clau musical - + Match Key Iguala la clau musical - + Reset Key Reinicia la clau musical - + Resets key to original Reinicia la clau musical per tornar a la original @@ -1645,466 +1647,466 @@ EQ de greus - + Toggle Vinyl Control Commutador de mode Vinil - + Toggle Vinyl Control (ON/OFF) Commutador de control de Vinil (On/Off) - + Vinyl Control Mode Mode de control de Vinil - + Vinyl Control Cueing Mode Mode de control dels punts cue amb Vinil - + Vinyl Control Passthrough Pas de l'audiò d'entrada del control Vinil - + Vinyl Control Next Deck Següent plat del control Vinil - + Single deck mode - Switch vinyl control to next deck Mode d'un plat - Canvia el control de vinil cap al següent plat - + Cue Punt Cue - + Set Cue Defineix el Cue - + Go-To Cue Ves al punt Cue - + Go-To Cue And Play Ves al punt Cue i reprodueix - + Go-To Cue And Stop Ves al punt Cue i atura't - + Preview Cue Pre-escolta del punt Cue - + Cue (CDJ Mode) Punt Cue (Mode CDJ) - + Stutter Cue Reprodueix Cue (Stutter) - + Go to cue point and play after release Ves a un punt Cue i reprodueix en deixar-lo - + Clear Hotcue %1 Esborra la marca directa %1 - + Set Hotcue %1 Defineix la marca directa %1 - + Jump To Hotcue %1 Ves a la marca directa %1 - + Jump To Hotcue %1 And Stop Ves a la marca directa %1 i atura't - + Jump To Hotcue %1 And Play Ves a la marca directa %1 i reprodueix - + Preview Hotcue %1 Pre-escolta la marca directa %1 - + Loop In Inici de bucle - + Loop Out Final de Bucle - + Loop Exit Surt del bucle - + Reloop/Exit Loop Repeteix/Surt del bucle - + Loop Halve Redueix el bucle a la meitat - + Loop Double Incrementa el bucle al doble - + 1/32 1/32 - + 1/16 1/16 - + 1/8 1/8 - + 1/4 1/4 - + Move Loop +%1 Beats Mou el bucle +%1 tocs - + Move Loop -%1 Beats Mou el bucle -%1 tocs - + Loop %1 Beats Bucle de %1 tocs - + Loop Roll %1 Beats Bucle "roll" de %1 tocs - + Add to Auto DJ Queue (bottom) Afegeix a la cua del DJ automàtic (al final) - + Append the selected track to the Auto DJ Queue Afegeix la pista seleccionada al final de la cua de DJ automàtic - + Add to Auto DJ Queue (top) Afegeix a la cua del DJ automàtic (al principi) - + Prepend selected track to the Auto DJ Queue Afegeix la pista seleccionada a l'inici de la cua de DJ automàtic - + Load Track Carrega la pista - + Load selected track Carrega la pista seleccionada - + Load selected track and play Carrega la pista seleccionada i la reprodueix - - + + Record Mix Gravació de la mescla - + Toggle mix recording Commutador de gravació de la mescla - + Effects Efectes - + Quick Effects Efectes ràpids - + Deck %1 Quick Effect Super Knob Súper Control d'Efecte ràpid del Plat %1 - + Quick Effect Super Knob (control linked effect parameters) Súper control de l'Efecte Ràpid (controla el paràmetre de l'efecte associat) - - + + Quick Effect Efecte ràpid - + Clear effect rack Esborrar el rack d'efectes - + Clear Effect Rack Esborrar el Rack d'efectes - + Clear Unit Esborrar la Unitat - + Clear effect unit Esborra la unitat d'efecte - + Toggle Unit Commutador d'unitat - + Dry/Wet Directe/Processat - + Adjust the balance between the original (dry) and processed (wet) signal. Ajusta l'equilibri entre la senyal original (dry) i la processada (wet). - + Super Knob Súper Control - + Next Chain Cadena següent - + Assign Assigna - + Clear Descarta - + Clear the current effect Descarta l'efecte actual - + Toggle Estat d'activació - + Toggle the current effect Commutador de l'estat d'activació de l'efecte - + Next Següent - + Switch to next effect Canvia al següent efecte - + Previous Anterior - + Switch to the previous effect Canvia a l'efecte anterior - + Next or Previous Següent o anterior - + Switch to either next or previous effect Canvia a l'efecte següent o anterior - - + + Parameter Value Valor del paràmetre - - + + Microphone Ducking Strength Nivell de reducció en parlar per micròfon - + Microphone Ducking Mode Mode de reducció en parlar per micròfon - + Gain Guany - + Gain knob Control de guany - + Shuffle the content of the Auto DJ queue Barreja el contingut de la cua de DJ automàtic - + Skip the next track in the Auto DJ queue Salta la següent pista de la cua de DJ automàtic - + Auto DJ Toggle Commutador de DJ automàtic - + Toggle Auto DJ On/Off Commutador On/Off de DJ automàtic - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. Mostra o amaga el mesclador. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore Maximitza/Restaura la vista de Biblioteca - + Maximize the track library to take up all the available screen space. Maximitza o restaura la vista de Biblioteca per abarcar tota la pantalla - + Effect Rack Show/Hide Mostra/amaga el rack d'efectes - + Show/hide the effect rack Mostra/amaga el rack d'efectes - + Waveform Zoom Out Allunya el zoom del gràfic d'ona @@ -2129,93 +2131,93 @@ Sincronització del tempo en pulsar (i la fase si està la quantització activada) - + Playback Speed Velocitat de reproducció - + Playback speed control (Vinyl "Pitch" slider) Velocitat de reproducció ("Pitch" de Vinil) - + Pitch (Musical key) Pitch (clau musical) - + Increase Speed Accelera - + Adjust speed faster (coarse) Acceleració (valor gran) de velocitat - - + + Increase Speed (Fine) Acceleració (valor petit) - + Adjust speed faster (fine) Acceleració (valor petit) - + Decrease Speed Redueix - + Adjust speed slower (coarse) Reducció de velocitat (valor gran) - + Adjust speed slower (fine) Redueix la velocitat (valor petit) - + Temporarily Increase Speed Acceleració momentània - + Temporarily increase speed (coarse) Acceleració (valor gran) momentània - + Temporarily Increase Speed (Fine) Acceleració (valor petit) momentània - + Temporarily increase speed (fine) Acceleració (valor petit) momentània - + Temporarily Decrease Speed Reducció de velocitat momentània - + Temporarily decrease speed (coarse) Reducció de velocitat (valor gran) momentània - + Temporarily Decrease Speed (Fine) Reducció de velocitat (valor petit) momentània - + Temporarily decrease speed (fine) Reducció de velocitat (valor petit) momentània @@ -2272,806 +2274,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed LFO - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock Bloqueig de clau musical - + CUP (Cue + Play) CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats Bucle de tocs seleccionats - + Create a beat loop of selected beat size Crea un bucle de tocs de la mida seleccionada - + Loop Roll Selected Beats Bucle "roll" de tocs seleccionats - + Create a rolling beat loop of selected beat size Crea un bucle "roll" de tocs de la mida seleccionada - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position Activa o desactiva el bucle, i salta a l'inici del bucle si aquest es anterior a la posició de reproducció actual - + Reloop And Stop Repeteix i para - + Enable loop, jump to Loop In point, and stop Activa el bucle, es mou a l'inici d'aquest i es para - + Halve the loop length Redueix el bucle a la meitat - + Double the loop length Duplica la mida del bucle - + Beat Jump / Loop Move Salt en tocs / Mou el bucle - + Jump / Move Loop Forward %1 Beats Salta / Mou el bucle endavant en %1 tocs - + Jump / Move Loop Backward %1 Beats Salta / Mou el bucle enrera en %1 tocs - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats Salta endavant %1 tocs, o si el bucle està activat, mou el bucle endavant en %1 tocs - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats Salta enrera %1 tocs, o si el bucle està activat, mou el bucle enrera en %1 tocs - + Beat Jump / Loop Move Forward Selected Beats Salt en tocs / Mou el bucle endavant els tocs seleccionats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats Salta endavant en la quantitat de tocs seleccionada, o si el bucle està activat, mou el bucle endavant el nombre de tocs seleccionat. - + Beat Jump / Loop Move Backward Selected Beats Salt en tocs / Mou el bucle enrera els tocs seleccionats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats Salta enrera en la quantitat de tocs seleccionada, o si el bucle està activat, mou el bucle enrera el nombre de tocs seleccionat. - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up Mou amunt - + Equivalent to pressing the UP key on the keyboard Equivalent a prémer la tecla Amunt del teclat - + Move down Mou avall - + Equivalent to pressing the DOWN key on the keyboard Equivalent a prémer la tecla Avall del teclat - + Move up/down Mou amunt/avall - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys Mou verticalment en ambdúes direccions utilitzant un control, com al prémer les tecles amunt/avall - + Scroll Up Pàgina amunt - + Equivalent to pressing the PAGE UP key on the keyboard Equivalment a prémer la tecla Pàgina amunt del teclat - + Scroll Down Pàgina avall - + Equivalent to pressing the PAGE DOWN key on the keyboard Equivalent a prémer la tecla Pàgina avall del teclat - + Scroll up/down Pàgina amunt/avall - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys Mou verticalment en ambdúes direccions utilitzant un control, com al prémer les tecles pàgina amunt/avall - + Move left Mou a l'esquerra - + Equivalent to pressing the LEFT key on the keyboard Equivalent a prémer la tecla Esquerra del teclat - + Move right Mou a la dreta - + Equivalent to pressing the RIGHT key on the keyboard Equivalent a prémer la tecla Dreta del teclat - + Move left/right Mou esquerra/dreta - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys Mou horitzontalment en ambúes direccions utilitzant un control, com al prémer les tecles Esquerra/Dreta del teclat - + Move focus to right pane Mou el focus al panell dret - + Equivalent to pressing the TAB key on the keyboard Equivalent a prémer la tecla tabulació del teclat - + Move focus to left pane Mou el focus al panell esquerra - + Equivalent to pressing the SHIFT+TAB key on the keyboard Equivalent a prémer les tecles Majúscules+Tabulació del teclat - + Move focus to right/left pane Mou el focus al panell esquerra/dret - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys Mou el focus al panell de la dreta o esquerra utilizant un control, com al prémer tabulació/Majúscules+tabulació - + Go to the currently selected item Vés a l'element seleccionat actualment - + Choose the currently selected item and advance forward one pane if appropriate Tria l'element seleccionat actualment i avança un panell si és apropiat - + Load Track and Play - + Add to Auto DJ Queue (replace) Afegeix a la cua del DJ automàtic (reemplaça) - + Replace Auto DJ Queue with selected tracks Reemplaça la cua de DJ automàtic amb les pistes seleccionades - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing Commuta el processament d'efectes - + Super Knob (control effects' Meta Knobs) Control Super (controla els controls 'Meta' dels efectes) - + Mix Mode Toggle Selector del mode de mescla - + Toggle effect unit between D/W and D+W modes Canvi entre D/P i D+P a la unitat d'efectes - + Next chain preset Següent cadena preestablerta - + Previous Chain Següent cadena - + Previous chain preset Cadena anterior preestablerta - + Next/Previous Chain Següent/Anterior cadena - + Next or previous chain preset Següent o anterior cadena preestablerta - - + + Show Effect Parameters Mostra els paràmetres d'efectes - + Effect Unit Assignment - + Meta Knob Control Meta - + Effect Meta Knob (control linked effect parameters) Control Meta de l'efecte (controla els paràmetres de l'efecte enllaçats) - + Meta Knob Mode Mode de Control Meta - + Set how linked effect parameters change when turning the Meta Knob. Defineix la manera com canvien els paràmetres de l'efecte enllaçats al girar el control Meta. - + Meta Knob Mode Invert Mode d'inversió del control Meta - + Invert how linked effect parameters change when turning the Meta Knob. Inverteix el sentit en que canvien els paràmetres de l'efecte enllaçats al girar el control Meta. - - + + Button Parameter Value - + Microphone / Auxiliary Micròfon / Línia auxiliar - + Microphone On/Off Micrònfon obert/tancat - + Microphone on/off Micròfon obert/tancat - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) Commutador del mode de reducció de volum del micròfon (OFF, AUTO, MANUAL) - + Auxiliary On/Off Línia auxiliar oberta/tancada - + Auxiliary on/off Línia auxiliar oberta/tancada - + Auto DJ DJ automàtic - + Auto DJ Shuffle Barreja la cua de DJ automàtic - + Auto DJ Skip Next DJ automatic, saltar-se la següent - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next DJ automàtic, Salta a la seguent esvaint l'actual - + Trigger the transition to the next track Fer que s'iniciï la transició cap a la següent pista - + User Interface Interfície d'usuari - + Samplers Show/Hide Mostra/amaga Reprod. de mostres - + Show/hide the sampler section Mostra/amaga la secció dels reproductors de mostres - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. Emet la mescla a través d'Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide Mostra/amaga el control de vinil - + Show/hide the vinyl control section Mostra/amaga la secció del control de vinil - + Preview Deck Show/Hide Mostra/amaga la pre-escolta - + Show/hide the preview deck Mostra o amaga la secció de la pre-escolta - + Toggle 4 Decks Commuta 4 plats - + Switches between showing 2 decks and 4 decks. Canvia entre les opcions de mostrar 2 o 4 plats. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide Mostra/amaga el vinil giratori - + Show/hide spinning vinyl widget Mostra/amaga l'element de pantalla amb el vinil giratori - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom Fa zoom del gràfic d'ona - + Waveform Zoom Zoom del gràfic d'ona - + Zoom waveform in Apropa el zoom del gràfic d'ona - + Waveform Zoom In Apropa el zoom del gràfic d'ona - + Zoom waveform out Allunya el zoom del gràfic d'ona - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3160,32 +3228,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. Intentar que s'arregli reiniciant la controladora. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. Cal corregir el codi del script. @@ -3221,133 +3289,133 @@ CrateFeature - + Remove Suprimeix - - + + Create New Crate Crea una nova caixa - + Rename Canvia el nom - - + + Lock Bloca els canvis - + Export Crate as Playlist - + Export Track Files Exporta pistes a fitxers - + Duplicate Duplica - + Analyze entire Crate Analitza la caixa sencera - + Auto DJ Track Source Font de pistes per a DJ automàtic - + Enter new name for crate: Introdueix un nom nou per a la caixa: - - + + Crates Caixes - - + + Import Crate Importa una caixa - + Export Crate Exporta la caixa - + Unlock Permet els canvis - + An unknown error occurred while creating crate: Hi ha hagut un error desconegut a l'hora de crear la caixa: - + Rename Crate Canvia el nom a la caixa - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed El canvi de nom de la caixa ha fallat - + Crate Creation Failed No s'ha pogut crear la caixa - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Llista de repr. M3U (*.m3u);;Llista de repr. M3U8 (*.m3u8);;Llista de repr. PLS (*.pls);;Text CSV (*.csv);;Text llegible (*.txt) - + Crates are a great way to help organize the music you want to DJ with. Les caixes són una bona manera d'ajudar a organitzar la música que voleu posar a les sessions. - + Crates let you organize your music however you'd like! Les caixes us permeten organitzar la vostra música al vostre gust! - + A crate cannot have a blank name. Una caixa no pot tenir un nom en blanc. - + A crate by that name already exists. Ja existeix una caixa amb aquest nom @@ -3417,37 +3485,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: Amb les contribucions de: - + And special thanks to: Reconeixements especials a: - + Past Developers Antics desenvolupadors - + Past Contributors Antics contribuidors - + Official Website - + Donate @@ -4885,32 +4953,32 @@ Volue aplicar la configuració i continuar? DlgPrefControlsDlg - + Skin Aparença - + Tool tips Informació sobre eines al posar el ratolí a sobre - + Select from different color schemes of a skin if available. Selecciona entre els diferents esquemes de colors de l'aparença, si en té. - + Color scheme Esquema de color - + Locales determine country and language specific settings. La configuració regional determina les opcions de país i d'idioma especifícs. - + Locale Configuració regional @@ -4920,52 +4988,42 @@ Volue aplicar la configuració i continuar? Preferències d'interfície - + HiDPI / Retina scaling HiDPI / escalat de Retina - + Change the size of text, buttons, and other items. Canvia la mida del text, botons i altres elements - - Adopt scale factor from the operating system - Utilitza l'escala definida al sistema operatiu - - - - Auto Scaling - Escalat automàtic - - - + Screen saver Estalvi de pantalla - + Start in full-screen mode Inicia en el mode de pantalla completa - + Full-screen mode Mode de pantalla completa - + Off Desactivat - + Library only Només en la biblioteca - + Library and Skin A la biblioteca i l'aparença @@ -5594,39 +5652,39 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. La mida mínima de l'aparenca és més gran que la resolució de la vostra pantalla - + Allow screensaver to run Permet que s'activi l'estalvi de pantalla - + Prevent screensaver from running Evita que s'activi l'estalvi de pantalla - + Prevent screensaver while playing Evita l'estalvi de pantalla mentre reprodueix - + This skin does not support color schemes Aquesta aparença no suporta els esquemes de colors - + Information Informació - - Mixxx must be restarted before the new locale setting will take effect. - Reinicieu el Mixxx per aplicar els canvis de llengua. + + Mixxx must be restarted before the new locale or scaling settings will take effect. + @@ -5844,62 +5902,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added S'ha afegit la carpeta de música - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? Heu afegit un o més carpetes de música. Les cançons d'aquestes carpetes no estaran disponibles fins que es faci un escaneig de nou. Voleu realitzar l'escaneig ara? - + Scan Escaneja - + Choose a music directory Selecciona una carpeta de música - + Confirm Directory Removal Confirma la supressió de la carpeta - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. El Mixxx no revisarà més la carpeta per trobar noves pistes. Que voleu fer amb les pistes d'aquesta carpeta i subcarpetes?<ul><li>Amaga totes les pistes d'aquesta carpeta i subcarpetes.</li><li>Esborra les metadades d'aquestes pistes del Mixxx de forma permanent.</li><li>Deixa les pistes sense canviar a la Biblioteca</li></ul>Si s'amaguen les pistes, les metadades seguiran disponibles en cas que les afegíssiu de nou. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. Metadades significa tots els detalls de la pista (artista, títol, comptador de reproducció, etc.) així com les graelles de rtime, les marques directes i els bucles. Aquesta acció només afecta a la biblioteca del Mixxx. Els fitxers del disc no es canviaran ni s'esborraran. - + Hide Tracks Amaga les pistes - + Delete Track Metadata Esborra les metadades de les pistes - + Leave Tracks Unchanged Deixa les pistes sense canviar - + Relink music directory to new location Corregeix la ubicació de la carpeta de música - + Select Library Font Selecciona el tipus de lletra de la Biblioteca @@ -6905,32 +6963,32 @@ El valor desitjat és aproximat i assumeix que els pre-guanys i el volum de sort DlgPrefWaveform - + Filtered Filtrat - + HSV HSV - + RGB RGB - + OpenGL not available OpenGL no està disponible - + dropped frames fotogrames descartats - + Cached waveforms occupy %1 MiB on disk. La memòria cau dels gràfics d'ona ocupa %1 MiB en disc. @@ -7146,72 +7204,72 @@ Seleccioneu entre els diferents tipus de gràfics per a la forma d'ona loca Biblioteca - + Interface Interfície - + Waveforms Gràfics d'ona - + Auto DJ DJ automàtic - + Equalizers Equalitzadors - + Decks Reproductors - + Colors Colors - + Crossfader Crossfader - + Effects Efectes - + LV2 Plugins Complements LV2 - + Recording Enregistrament - + Beat Detection Detecció de ritme - + Key Detection Detecció de clau musical - + Normalization Normalització - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7221,12 +7279,12 @@ Seleccioneu entre els diferents tipus de gràfics per a la forma d'ona loca Control de Vinil - + Live Broadcasting Retransmissió en directe - + Modplug Decoder Decodificador Modplug @@ -7367,123 +7425,123 @@ Seleccioneu entre els diferents tipus de gràfics per a la forma d'ona loca Selecciona el millor candidat - - + + Track Pista - - + + Year Any - + Title Tí­tol - - + + Artist Artista - - + + Album Àlbum - + Album Artist Artista de l'àlbum - + Fetching track data from the MusicBrainz database Recuperant informació de la pista de la base de dades de MusicBrainz - + Mixxx could not find this track in the MusicBrainz database. Mixxx no ha pogut trobar aquesta pista a la base de dades del MusicBrainz. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. Obté la API de notes - + Submit Submits audio fingerprints to the MusicBrainz database. Envia - + New Column Nova columna - + New Item Nou ítem - + &Previous A&nterior - + &Next &Següent - + &Apply &Aplica - + &Close &Tanca - + Status: %1 Estat: %1 - + HTTP Status: %1 Estat HTTP: %1 - + Code: %1 Codi: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx no pot connectar a %1 per algun motiu desconegut. - + Mixxx can't connect to %1. Mixxx no pot connectar a %1. - + Original tags Etiquetes originals - + Suggested tags Etiquetes suggerides @@ -7875,17 +7933,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) Soundtouch (ràpid) - + Rubberband (better) Rubberband (més qualitat) - + Unknown (bad value) Desconegut (valor incorrecte) @@ -7986,38 +8044,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes iTunes - - + + Select your iTunes library Seleccioneu la vostra biblioteca de l'iTunes - + (loading) iTunes (carregant) iTunes - + Use Default Library Utilitza la biblioteca per defecte - + Choose Library... Seleccioneu la biblioteca... - + Error Loading iTunes Library Error carregant la biblioteca d'iTunes - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. Hi ha hagut un error carregant la vostra biblioteca d'iTunes. Algunes de les vostres pistes o llistes de reproducció d'iTunes poden no haver-se carregat. @@ -8025,13 +8083,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. Mode segur activat - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8040,57 +8098,57 @@ support. OpenGL. - + activate activa - + toggle commuta - + right dreta - + left esquerra - + right small dreta petit - + left small esquerra petit - + up amunt - + down avall - + up small amunt petit - + down small avall petit - + Shortcut Drecera @@ -8111,22 +8169,22 @@ OpenGL. LibraryFeature - + Import Playlist Importa la llista de reproducció - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Llistes de reproducció (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? Sobreescriure el fitxer? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8137,27 +8195,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Analitzador de la biblioteca - + It's taking Mixxx a minute to scan your music library, please wait... Mixxx tardarà una estona a escanejar biblioteca de música. Espereu un moment... - + Cancel Cancel·la - + Scanning: Escanejant: - + Scanning cover art (safe to cancel) Escanejant les caràtules (es pot cancel·lar) @@ -8274,183 +8332,183 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy El dispositiu de so està ocupat - + <b>Retry</b> after closing the other application or reconnecting a sound device <b>Torna-ho a provar</b> després de tancar l'altra aplicació o reconnectar el dispositiu d'àudio - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. <b>Reconfigura</b> les opcions del dispositiu d'àudio de Mixxx - - + + Get <b>Help</b> from the Mixxx Wiki. Obteniu <b>ajuda</b> a la Vikipèdia de Mixxx. - - - + + + <b>Exit</b> Mixxx. <b>Surt</b> del Mixxx. - + Retry Torna a provar - + skin - - + + Reconfigure Reconfigura - + Help Ajuda - - + + Exit Surt - - + + Mixxx was unable to open all the configured sound devices. El Mixxx no ha pogut obrir tots els dispositius de so configurats. - + Sound Device Error Error del dispositiu de so - + <b>Retry</b> after fixing an issue <b>Reintenta</b> després de corregir el problema - + No Output Devices No hi ha cap dispositiu de sortida - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. S'ha configurat el Mixxx sense cap dispositiu de so de sortida, per la qual cosa s'inhabilitarà el processament d'àudio. - + <b>Continue</b> without any outputs. <b>Continua</b> sense cap sortida. - + Continue Continua - + Load track to Deck %1 Carrega la pista a la platina %1 - + Deck %1 is currently playing a track. La platina %1 està reproduint una pista. - + Are you sure you want to load a new track? Esteu segur de voler carregar una nova pista? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. No hi ha cap dispositiu d'entrada seleccionat per a aquest control de vinil. Si us plau, seleccioneu primer un dispositiu d'entrada a les preferències de Maquinari de so. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. No hi ha cap dispositiu d'entrada seleccionat per a aquest control de pas d'audio. Si us plau, seleccioneu primer un dispositiu d'entrada a les preferències de Maquinari de so. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file Error en el fitxer d'aparença - + The selected skin cannot be loaded. No es pot carregar l'aparença seleccionada. - + OpenGL Direct Rendering OpenGL Renderització Directa - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Confirma la sortida - + A deck is currently playing. Exit Mixxx? Un plat està reproduint encara. Voleu sortir del Mixxx? - + A sampler is currently playing. Exit Mixxx? Hi ha un reproductor de mostres que està reproduint. Segur que voleu sortir del Mixxx? - + The preferences window is still open. La finestra de preferències està oberta encara. - + Discard any changes and exit Mixxx? Descartar els canvis i sortir del Mixxx? @@ -8523,43 +8581,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Bloca els canvis - + Playlists Llistes de reproducció - + Unlock Permet els canvis - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. Alguns DJ preparen llistes de reproducció abans d'actuar, però altres prefereixen fer-les en viu. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. Quan utilitzeu una llista de reproducció durant una sessió en viu, recordeu parar atenció a com reacciona l'audiència a la música que heu decidit reproduir. - + Create New Playlist Crea una nova llista de reproducció @@ -8567,59 +8625,59 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx Actualitzant el Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? Ara és possible que el Mixxx mostri les caràtules. Voleu escanejar ara la biblioteca cercant les caràtules? - + Scan Escaneja - + Later Més tard - + Upgrading Mixxx from v1.9.x/1.10.x. Actualitzant el Mixxx de la versió v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. El Mixxx té un nou i millorat detector de tocs. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. Quan carregueu les vostres pistes, el Mixxx pot tornar a analitzar i generar noves graelles de ritme més acurades. Això millora la sincronització automàtica de ritme i els bucles. - + This does not affect saved cues, hotcues, playlists, or crates. Això no afecta als punts Cue, marques directe, llistes de reproducció o caixes. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. Si no voleu que Mixxx torni a analitzar les vostres pistes, trieu "Mantingues les graelles actuals". Podeu canviar aquesta opció en qualsevol moment des de la secció "Detecció de ritme" de les Preferències. - + Keep Current Beatgrids Mantingues les graelles actuals - + Generate New Beatgrids Genera noves graelles de ritme @@ -8803,7 +8861,7 @@ Voleu escanejar ara la biblioteca cercant les caràtules? - + Encoder Codificador @@ -9955,12 +10013,12 @@ Tot a la dreta: Al final del període - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10098,54 +10156,54 @@ Tot a la dreta: Al final del període RekordboxFeature - - - + + + Rekordbox Rekordbox - + Playlists Llistes de reproducció - + Folders Carpetes - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10154,7 +10212,7 @@ Tot a la dreta: Al final del període RhythmboxFeature - + Rhythmbox Rhythmbox @@ -10205,34 +10263,34 @@ Tot a la dreta: Al final del període SeratoFeature - - - + + + Serato Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks Pistes - + Crates Caixes - + Check for Serato databases (refresh) - + (loading) Serato @@ -10255,12 +10313,12 @@ Tot a la dreta: Al final del període Historial - + Unlock Permet els canvis - + Lock Bloca els canvis @@ -11219,6 +11277,31 @@ Tot a la dreta: Al final del període Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12396,11 +12479,6 @@ Ho pots utilitzar per canviar només la senyal processada amb EQs i efectes de f Old Synchronize Sincronitzador Antic - - - (This skin should be updated to use Master Sync!) - (Cal actualitzar aquesta aparença per a que utilitzi la Sincronizació Mestra!) - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12416,16 +12494,6 @@ Ho pots utilitzar per canviar només la senyal processada amb EQs i efectes de f Decks can't sync to samplers and samplers can only sync to decks. Els plats no poden sincronitzar-se amb els reproductors de mostres i els reproductors de mostres només es poden sincronitzar amb els plats. - - - Enable Master Sync - Activa la Sincronització Mestra - - - - Tap to sync the tempo to other playing tracks or the master clock. - Toca/prem per sincronitzar el tempo amb les altres pistes o amb el rellotge mestre. - Hold for at least a second to enable sync lock for this deck. @@ -12441,16 +12509,6 @@ Ho pots utilitzar per canviar només la senyal processada amb EQs i efectes de f Resets the key to the original track key. Reinicia la clau musical a la clau original de la pista. - - - Enable Sync Clock Master - Activa la Sincronització de Rellotge Mestre - - - - When enabled, this device will serve as the master clock for all other decks. - Quan s'activa, aquest dispositiu fa de rellotge mestre per a la resta de plats. - Speed Control @@ -13004,22 +13062,22 @@ Ho pots utilitzar per canviar només la senyal processada amb EQs i efectes de f TraktorFeature - + Traktor Traktor - + (loading) Traktor (carregant) Traktor - + Error Loading Traktor Library S'ha produït un error al carregar la biblioteca del Traktor - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. S'ha produït un error al carregar la biblioteca del Traktor. Algunes de les vostres pistes i llistes de reproducció de Traktor podrien no haver-se carregat. @@ -13631,20 +13689,20 @@ Ho pots utilitzar per canviar només la senyal processada amb EQs i efectes de f - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13815,8 +13873,8 @@ Ho pots utilitzar per canviar només la senyal processada amb EQs i efectes de f Gènere - - Folder + + Directory @@ -14059,155 +14117,160 @@ Ho pots utilitzar per canviar només la senyal processada amb EQs i efectes de f - + + Update ReplayGain from Deck Gain + + + + Deck %1 Plat %1 - + Sampler %1 Reproductor de mostres %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Crea una nova llista de reproducció - + Enter name for new playlist: Inseriu el nom de la llista nova de reproducció: - + New Playlist Llista de reproducció nova - - - + + + Playlist Creation Failed Ha fallat la creació de la llista de reproducció - + A playlist by that name already exists. Ja existeix una llista de reproducció amb aquest nom. - + A playlist cannot have a blank name. El nom de la llista de reproducció no pot quedar en blanc - + An unknown error occurred while creating playlist: S'ha produït un error desconegut en crear la llista de reproducció: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14215,7 +14278,7 @@ Ho pots utilitzar per canviar només la senyal processada amb EQs i efectes de f WTrackTableView - + ESC Focus ESC @@ -14252,128 +14315,55 @@ Ho pots utilitzar per canviar només la senyal processada amb EQs i efectes de f - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory Seleccioneu la carpeta de la biblioteca de música. - + controllers - + Cannot open database No es pot obrir la base de dades - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14452,7 +14442,7 @@ Feu click a Acceptar per sortir. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14509,62 +14499,62 @@ Feu click a Acceptar per sortir. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse Mouse HID Genèric - + Generic HID Joystick Comandament HID genèric - + Generic HID Game Pad - + Generic HID Keyboard Teclat HID genèric - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: @@ -14582,7 +14572,7 @@ Feu click a Acceptar per sortir. No effect loaded. - + No hi ha cap efecte carregat. \ No newline at end of file diff --git a/res/translations/mixxx_cs.qm b/res/translations/mixxx_cs.qm index 9e1cea9c841b576a23f6ac08e538caa29f8a6115..8858d850368962eace23dc8f97ee6bdc6025f343 100644 GIT binary patch delta 18167 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

14JQ7-+&|ZD= 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 delta 20431 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

^c~bmwDsfFjPGC%&8x7L29^pM|NX; z%e35_mXSg1#vXIp4L1@a%9?jQO2@(wnbT1%vqMMBdzyU4ddorc!G;pD>nro&Z^cnB zG&W}})Z(+VRP#|6JK`mun~&ZJM*V+xsrl$P=py)t`Q#LcI=7Me^bn}RJ=~mCIsuJ? zK?)^#k&UW>|KLgU`2n4Y1&lCXD3VQl!#wlV{+VcnH#A=j#G4*q<{SO|u$)@NeB)(z zd@ZrjeA^DjY|66n-9hu+3ITAJ#31v%mc2=;_S2kG8gseNHO#r+p}Vxn=7$6Ernl_O zPtx&5MShy|>Y{sAIm!I`=o=CdH_Y!AA&)n@Z2q>v7bV;og`!^#bHN~VOhiy9N$ray zwQI~8q>u3o@0#>d&kA)JMPU?5QLH!kmKr9R{hhT~6dszG(|OFTpf z{Hf>>92gPo9~tZz8Wt5C5#~S4akzgZwi3%ESFYZKx>@hQCRy)|YyZPj5<4ZAELr~l zdAE_tmC~OlYfAdNVJM^M5A*-uZ~31G-ahO<4*dW3Q)~nOf8NbH@b^3GvDTHS$Nw(l zf6CRa{r?fCw<1o*)}6f*Tg8m5Bn*W!@{I|g+4x3f6-2XDJ#Cfyqi~YB8Kqihg6L(H3Q?~AZ zdaa}}*`l0X(SN>0x3OV?j#jZIrY$U+ULn16cVh)=_g@CDoUhaW+i7(iVama9k5C#1 zHy8!y2vl4n0!OXpJ^Y`l)7mafI$o4HBt@v%ZOdfpj4Oi)KjO!=(TXcrUF|JJV%zFw z);s=zz5erV*pB?S=RNv|D^|su_NLC{L%!6VI>8yOBkPEND#`dHYR@_)my7tvtwuplZxu<0(IZ?MP5~6kj7hUUijtO5 zxbHA1Z72>~RS*gxj>DgDs3;gp@W=D4&mD{-Rz-|e&U#71Df*w1tkEhcd_R2>+k3wHO3YeJlb(s zxH9a>;3#E~qeF)cbByvI8tfPx5)vF3<&sqXH7hlJ_baw<_bdK1NGznPNw43q()Iz6 zg<_ic|8Q0sQgkH$q}t=8;ufnV`a{b9b;1aUFB;zQR`Hi%iZK5@vHVXqUjARqwNBOU zgF_=7BZr2DIYtf+j~-@y6UXQgK``7PSgvCg1 zu#@=XR?-CyV|B4`MeEi~^p9aAjcg*7vn$dj%s&8HwB1O#Pg0$$qG(cLg6L*$_wN@c zI_B87iTtlyD26gzF(IqD1Ys)-a=?*)no5a(++XoMcgTLI@~EWwgGJGO&k{st9GjPv zFjACG8mwUs=ApRx5al*6t&d3xkCsYVAZx_{AYiLa{;L?Rrtx2oeuPK6{PWSRyZeu@ z%1Ln*tM*}xBf_mm!m$_OIAWOpSgV;vMfe8}jdX+!TTin36#g>MI#d@$ph+d>3FE%a zMWyL>EF-B^70F2*g@NEtQtb?G-{xN|5i+)^-Inu*Kp0j(`}Z;b>xiueGXh>0o-{w7 z*=cPq=}%Ef^B=NeNjv5Ub4Tx*)IB;lEmwbr5c2%iuAN>q#8N=9LiA(< AutoDJFeature - + Crates Přepravky - + Remove Crate as Track Source Odstranit přepravku na desky jako zdroj skladeb - + Auto DJ Diskžokej - + Add Crate as Track Source Přidat přepravku na desky jako zdroj skladeb @@ -43,25 +43,25 @@ BansheeFeature - + Banshee Banshee - - + + Error loading Banshee database Chyba při nahrávání databáze Banshee - + Banshee database file not found at Soubor s databází Banshee nebyl nalezen - + There was an error loading your Banshee database at Při nahrávání databáze Banshee se vyskytla chyba @@ -71,32 +71,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Přidat do řady automatického diskžokeje (dolů) - + Add to Auto DJ Queue (top) Přidat do řady automatického diskžokeje (nahoru) - + Add to Auto DJ Queue (replace) Přidat do řady skladeb automatického diskžokeje (nahradit) - + Import Playlist Nahrát seznam skladeb - + Playlist Creation Failed Seznam skladeb se nepodařilo vytvořit - + An unknown error occurred while creating playlist: Při vytváření seznamu skladeb došlo k neznámé chybě: @@ -104,144 +104,144 @@ BasePlaylistFeature - + New Playlist Nový seznam skladeb - + Add to Auto DJ Queue (bottom) Přidat do řady automatického diskžokeje (dolů) - - + + Create New Playlist Vytvořit nový seznam skladeb - + Add to Auto DJ Queue (top) Přidat do řady automatického diskžokeje (nahoru) - + Remove Odstranit - + Rename Přejmenovat - + Lock Zamknout - + Duplicate Zdvojit - - + + Import Playlist Nahrát seznam skladeb - + Export Track Files Uložit soubory skladeb - + Analyze entire Playlist Rozebrat celý seznam skladeb - + Enter new name for playlist: Zadat nový název pro seznam skladeb: - + Duplicate Playlist Zdvojit seznam skladeb - - + + Enter name for new playlist: Zadat název pro nový seznam skladeb: - - + + Export Playlist Uložit seznam skladeb - + Add to Auto DJ Queue (replace) Přidat do řady skladeb automatického diskžokeje (nahradit) - + Rename Playlist Přejmenovat seznam skladeb - - + + Renaming Playlist Failed Seznam skladeb se nepodařilo přejmenovat - - - + + + A playlist by that name already exists. Seznam skladeb s tímto názvem již existuje. - - - + + + A playlist cannot have a blank name. Seznam skladeb musí mít název. - + _copy //: Appendix to default name when duplicating a playlist _kopie - - - - - - + + + + + + Playlist Creation Failed Seznam skladeb se nepodařilo vytvořit - - + + An unknown error occurred while creating playlist: Při vytváření seznamu skladeb došlo k neznámé chybě: - + M3U Playlist (*.m3u) Seznam skladeb M3U (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Seznam skladeb M3U (*.m3u);;Seznam skladeb M3U8 (*.m3u8);;Seznam skladeb PLS (*.pls);;Text CSV (*.csv);;Prostý text (*.txt) @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Nepodařilo se nahrát skladbu. @@ -514,7 +514,7 @@ - + Computer Počítač @@ -534,7 +534,7 @@ Prohledat - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. Počítač vám umožní pohyb ve skladbách, jejich zobrazení a nahrávání ze složek na pevném disku a vnějších zařízeních. @@ -647,12 +647,12 @@ Soubor vytvořen - + Mixxx Library Knihovna Mixxxu - + Could not load the following file because it is in use by Mixxx or another application. Nepodařilo se nahrát následující soubor. Je používán Mixxxem nebo jinou aplikací. @@ -683,6 +683,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -865,13 +943,13 @@ - + Set to full volume Nastavit na plnou hlasitost - + Set to zero volume Nastavit hlasitost na nulu @@ -896,13 +974,13 @@ Tlačítko pro obrácené přehrávání (cenzor) - + Headphone listen button Tlačítko pro sluchátka - + Mute button Tlačítko pro ztlumení @@ -918,25 +996,25 @@ - + Mix orientation (e.g. left, right, center) Nasměrování míchání (např. vlevo, vpravo, na střed) - + Set mix orientation to left Nastavit nasměrování míchání vlevo - + Set mix orientation to center Nastavit nasměrování míchání na střed - + Set mix orientation to right Nastavit nasměrování míchání vpravo @@ -980,36 +1058,6 @@ Toggle quantize mode Přepnout režim kvantizace - - - Increase internal master BPM by 1 - Zvýšit vnitřní hlavní ÚZM o 1 - - - - Decrease internal master BPM by 1 - Snížit vnitřní hlavní ÚZM o 1 - - - - Increase internal master BPM by 0.1 - Zvýšit vnitřní hlavní ÚZM o 0,1 - - - - Decrease internal master BPM by 0.1 - Snížit vnitřní hlavní ÚZM o 0,1 - - - - Toggle sync master - Přepnout řízení času seřizování - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - Přepnout třístavový režim seřizování (VYPNUTO, SLEDOVAČ, HLAVNÍ) - One-time beat sync (tempo only) @@ -1021,7 +1069,7 @@ Jednorázové seřízení rytmu (pouze fáze) - + Toggle keylock mode Přepnout režim uzamčení tóniny @@ -1031,199 +1079,199 @@ Ekvalizéry - + Vinyl Control Vinyl - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) Přepnout režim značení za použití ovládání vinylovou gramodeskou (VYPNUTO/JEDEN/HORKÝ) - + Toggle vinyl-control mode (ABS/REL/CONST) Přepnout režim ovládání vinylem (VYPNUTO/JEDEN/HORKÝ) - + Pass through external audio into the internal mixer Posílat vnější zvukové signály do vnitřního směšovače - + Cues Značky - + Cue button Tlačítko značky - + Set cue point Nastavit bod značky - + Go to cue point Jít na bod značky - + Go to cue point and play Jít na bod značky a přehrát - + Go to cue point and stop Jít na bod značky a zastavit - + Preview from cue point Předposlech od bodu značky - + Cue button (CDJ mode) Tlačítko značky (režim CDJ) - + Stutter cue Značka trhnutí - + Hotcues Rychlé značky - + Set, preview from or jump to hotcue %1 Nastavit, náhled od nebo skočit na rychlou značku %1 - + Clear hotcue %1 Smazat rychlou značku %1 - + Set hotcue %1 Nastavit rychlou značku %1 - + Jump to hotcue %1 Skočit na rychlou značku %1 - + Jump to hotcue %1 and stop Skočit na rychlou značku %1 a zastavit - + Jump to hotcue %1 and play Skočit na rychlou značku %1 a přehrát - + Preview from hotcue %1 Náhled od rychlé značky %1 - - + + Hotcue %1 Rychlá značka %1 - + Looping Opakování ve smyčce - + Loop In button Tlačítko pro začátek smyčky - + Loop Out button Tlačítko pro konec smyčky - + Loop Exit button Tlačítko pro ukončení smyčky - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 32 - + 64 64 - + Move loop forward by %1 beats Posunout smyčku o %1 dob dopředu - + Move loop backward by %1 beats Posunout smyčku o %1 dob dozadu - + Create %1-beat loop Vytvořit smyčku na %1 dob - + Create temporary %1-beat loop roll Vytvořit dočasnou průběžnou smyčku na %1 dob - + Library Knihovna @@ -1334,20 +1382,20 @@ - - + + Volume Fader Polohový ukazatel hlasitosti - + Full Volume Plná hlasitost - + Zero Volume Nulová hlasitost @@ -1363,7 +1411,7 @@ - + Mute Ztlumit @@ -1374,7 +1422,7 @@ - + Headphone Listen Poslech ze sluchátek @@ -1395,25 +1443,25 @@ - + Orientation Natočení - + Orient Left Natočit vlevo - + Orient Center Natočit na střed - + Orient Right Natočit vpravo @@ -1512,52 +1560,6 @@ Sync Seřízení - - - Sync Mode - Seřizovací režim - - - - Internal Sync Master - Vnitřní hlavní seřizování - - - - Toggle Internal Sync Master - Přepnout vnitřní hlavní seřizování - - - - - Internal Master BPM - Vnitřní hlavní ÚZM - - - - Internal Master BPM +1 - Vnitřní hlavní ÚZM +1 - - - - Internal Master BPM -1 - Vnitřní hlavní ÚZM -1 - - - - Internal Master BPM +0.1 - Vnitřní hlavní ÚZM +0,1 - - - - Internal Master BPM -0.1 - Vnitřní hlavní ÚZM -0,1 - - - - Sync Master - Hlavní seřizování - Beat Sync One-Shot @@ -1574,37 +1576,37 @@ Jednorázové seřízení fáze - + Pitch control (does not affect tempo), center is original pitch Ovládání výšky tónu (neovlivní tempo), střed je původní výška tónu - + Pitch Adjust Upravení výšky tónu - + Adjust pitch from speed slider pitch Změní výšku tónu vycházeje z výšky tónu ukazatele rychlosti - + Match musical key Seřídit tóninu - + Match Key Přizpůsobit tóninu - + Reset Key Nastavit tóninu znovu - + Resets key to original Nastavit tóninu znovu na původní @@ -1645,466 +1647,466 @@ Ekvalizér hloubek - + Toggle Vinyl Control Přepnout ovládání vinylovou gramodeskou - + Toggle Vinyl Control (ON/OFF) Přepnout ovládání vinylovou gramodeskou (ZAPNUTO/VYPNUTO) - + Vinyl Control Mode Režim ovládání vinylovou gramodeskou - + Vinyl Control Cueing Mode Režim ovládání značení vinylem - + Vinyl Control Passthrough Předání dál ovládání vinylem - + Vinyl Control Next Deck Další přehrávač ovládání vinylem - + Single deck mode - Switch vinyl control to next deck Režim jednoho přehrávače - Přepnout ovládání vinylovou gramodeskou na další přehrávač - + Cue Značka - + Set Cue Umístit značku - + Go-To Cue Jít na značku - + Go-To Cue And Play Jít na značku a přehrát - + Go-To Cue And Stop Jít na značku a zastavit - + Preview Cue Náhled na značku - + Cue (CDJ Mode) Značka (režim CDJ) - + Stutter Cue Značka trhnutí - + Go to cue point and play after release Jít na bod značky a po uvolnění přehrát - + Clear Hotcue %1 Smazat rychlou značku %1 - + Set Hotcue %1 Nastavit rychlou značku %1 - + Jump To Hotcue %1 Skočit na rychlou značku %1 - + Jump To Hotcue %1 And Stop Skočit na rychlou značku %1 a zastavit - + Jump To Hotcue %1 And Play Skočit na rychlou značku %1 a přehrát - + Preview Hotcue %1 Náhled na rychlou značku %1 - + Loop In Začátek smyčky - + Loop Out Konec smyčky - + Loop Exit Ukončit smyčku - + Reloop/Exit Loop Smyčkovat znovu/Ukončit smyčku - + Loop Halve Zkrácení smyčky na polovinu - + Loop Double Zdvojení smyčky - + 1/32 1/32 - + 1/16 1/16 - + 1/8 1/8 - + 1/4 1/4 - + Move Loop +%1 Beats Posunout smyčku o +%1 dob - + Move Loop -%1 Beats Posunout smyčku o -%1 dob - + Loop %1 Beats Smyčka %1 dob - + Loop Roll %1 Beats Průběžná smyčka %1 dob - + Add to Auto DJ Queue (bottom) Přidat do řady automatického diskžokeje (dolů) - + Append the selected track to the Auto DJ Queue Přidat vybranou skladbu na konec řady automatického diskžokeje - + Add to Auto DJ Queue (top) Přidat do řady automatického diskžokeje (nahoru) - + Prepend selected track to the Auto DJ Queue Přidat vybranou skladbu na začátek řady automatického diskžokeje - + Load Track Nahrát skladbu - + Load selected track Nahrát vybranou skladbu - + Load selected track and play Nahrát vybranou skladbu a přehrát - - + + Record Mix Nahrát míchání - + Toggle mix recording Přepnout nahrávání míchání - + Effects Efekty - + Quick Effects Rychlé efekty - + Deck %1 Quick Effect Super Knob Superpotenciometr rychlého efektu pro přehrávač %1 - + Quick Effect Super Knob (control linked effect parameters) Superpotenciometr rychlého efektu (řízení propojených parametrů efektů) - - + + Quick Effect Rychlý efekt - + Clear effect rack Vyprázdnit přihrádku s efekty - + Clear Effect Rack Vyprázdnit přihrádku s efekty - + Clear Unit Vyprázdnit jednotku - + Clear effect unit Vyprázdnit efektovou jednotku - + Toggle Unit Přepnout jednotku - + Dry/Wet Na zkoušku/Naostro - + Adjust the balance between the original (dry) and processed (wet) signal. Upravit vyvážení mezi původním a zpracovaným signálem. - + Super Knob Superknoflík - + Next Chain Další řetězec - + Assign Přiřadit - + Clear Smazat - + Clear the current effect Smazat nynější efekt - + Toggle Přepnout - + Toggle the current effect Přepnout nynější efekt - + Next Další - + Switch to next effect Přepnout na další efekt - + Previous Předchozí - + Switch to the previous effect Přepnout na předchozí efekt - + Next or Previous Další nebo předchozí - + Switch to either next or previous effect Přepnout na další nebo předchozí efekt - - + + Parameter Value Hodnota parametru - - + + Microphone Ducking Strength Síla tlumení mikrofonu - + Microphone Ducking Mode Režim tlumení mikrofonu - + Gain Zesílení - + Gain knob Regulátor zesílení - + Shuffle the content of the Auto DJ queue Zamíchat pořadím v řadě skladeb automatického diskžokeje - + Skip the next track in the Auto DJ queue Přeskočit další skladbu v řadě skladeb automatického diskžokeje - + Auto DJ Toggle Zapínač/Vypínač automatického diskžokeje - + Toggle Auto DJ On/Off Zapnout/Vypnout automatického diskžokeje - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. Ukázat nebo skrýt směšovač. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore Zvětšin/Obnovit knihovnu - + Maximize the track library to take up all the available screen space. Zvětšit knihovnu skladeb tak, aby zabírala veškerý na obrazovce dostupný prostor. - + Effect Rack Show/Hide Ukázat/Skrýt přihrádku s efekty - + Show/hide the effect rack Ukázat/Skrýt přihrádku s efekty - + Waveform Zoom Out Oddálit průběhovou křivku @@ -2129,93 +2131,93 @@ Jednorázové seřízení rytmu tempa (a fáze při zapnuté kvantizaci) - + Playback Speed Rychlost přehrávání - + Playback speed control (Vinyl "Pitch" slider) Ovládání rychlosti přehrávání (regulátor "výšky tónu" vinylu) - + Pitch (Musical key) Výška tónu (tónina) - + Increase Speed Zvýšit rychlost - + Adjust speed faster (coarse) Zvýšit rychlost (hrubé) - - + + Increase Speed (Fine) Zvýšit rychlost (jemné) - + Adjust speed faster (fine) Zvýšit rychlost (jemné) - + Decrease Speed Snížit rychlost - + Adjust speed slower (coarse) Snížit rychlost (hrubé) - + Adjust speed slower (fine) Snížit rychlost (jemné) - + Temporarily Increase Speed Zvýšit přechodně rychlost - + Temporarily increase speed (coarse) Zvýšit přechodně rychlost (hrubé) - + Temporarily Increase Speed (Fine) Zvýšit přechodně rychlost (jemné) - + Temporarily increase speed (fine) Zvýšit přechodně rychlost (jemné) - + Temporarily Decrease Speed Snížit dočasně rychlost - + Temporarily decrease speed (coarse) Snížit dočasně rychlost (hrubé) - + Temporarily Decrease Speed (Fine) Snížit dočasně rychlost (jemné) - + Temporarily decrease speed (fine) Snížit dočasně rychlost (jemné) @@ -2272,806 +2274,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed Rychlost - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock Uzamčení tóniny - + CUP (Cue + Play) BZP (značka a přehrát) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats Smyčkovat vybrané doby - + Create a beat loop of selected beat size Vytvořit smyčku z dob o vybrané velikosti doby - + Loop Roll Selected Beats Průběžná smyčka z vybraných dob - + Create a rolling beat loop of selected beat size Vytvořit průběžnou smyčku z dob o vybrané velikosti doby - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position Přepnout zapnutí/zastavení smyčkování a skočit na bod začátku smyčky, pokud je smyčka za polohou přehrávání - + Reloop And Stop Přesmyčkovat a zastavit - + Enable loop, jump to Loop In point, and stop Povolit smyčku, skočit na bod začátku smyčky a zastavit - + Halve the loop length Zkrátit délku smyčky na polovinu - + Double the loop length Zdvojit délku smyčky - + Beat Jump / Loop Move Dobový skok/Přesun smyčky - + Jump / Move Loop Forward %1 Beats Skočit/Přesunout smyčku o %1 dob dopředu - + Jump / Move Loop Backward %1 Beats Skočit/Přesunout smyčku o %1 dob dozadu - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats Skočit dopředu o %1 dob, nebo pokud je povolena smyčka, přesunout smyčku dopředu o %1 dob - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats Skočit dozadu o %1 dob, nebo pokud je povolena smyčka, přesunout smyčku dozadu o %1 dob - + Beat Jump / Loop Move Forward Selected Beats Dobový skok/Přesun smyčky dopředu o vybrané doby - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats Skočit dopředu o vybraný počet dob, nebo pokud je povolena smyčka, přesunout smyčku dopředu o vybraný počet dob - + Beat Jump / Loop Move Backward Selected Beats Dobový skok/Přesun smyčky dozadu o vybrané doby - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats Skočit dozadu o vybraný počet dob, nebo pokud je povolena smyčka, přesunout smyčku dozadu o vybraný počet dob - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up Posunout nahoru - + Equivalent to pressing the UP key on the keyboard Stejné jako klávesa šipka nahoru na klávesnici - + Move down Posunout dolů - + Equivalent to pressing the DOWN key on the keyboard Stejné jako klávesa šipka dolů na klávesnici - + Move up/down Posunout nahoru/dolů - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys Pohybovat se svisle v obou směrech pomocí otočného knoflíku se stejným výsledkem, jako při stisknutí kláves nahoru/dolů - + Scroll Up Projíždět nahoru - + Equivalent to pressing the PAGE UP key on the keyboard Stejné jako klávesa PgUp na klávesnici - + Scroll Down Projíždět dolů - + Equivalent to pressing the PAGE DOWN key on the keyboard Stejné jako klávesa PgD(ow)n na klávesnici - + Scroll up/down Projíždět nahoru/dolů - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys Pohybovat se svisle v obou směrech pomocí otočného knoflíku se stejným výsledkem, jako při stisknutí kláves PgUp/PgDown (PgDn) - + Move left Posunout vlevo - + Equivalent to pressing the LEFT key on the keyboard Stejné jako klávesa šipka vlevo na klávesnici - + Move right Posunout vpravo - + Equivalent to pressing the RIGHT key on the keyboard Stejné jako klávesa šipka vpravo na klávesnici - + Move left/right Posunout vlevo/vpravo - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys Pohybovat se vodorovně v obou směrech pomocí otočného knoflíku se stejným výsledkem, jako při stisknutí kláves vlevo/vpravo - + Move focus to right pane Přesunout zaměření do pravé tabulky - + Equivalent to pressing the TAB key on the keyboard Stejné jako klávesa tabulátoru (TAB) na klávesnici - + Move focus to left pane Přesunout zaměření do levé tabulky - + Equivalent to pressing the SHIFT+TAB key on the keyboard Stejné jako stisknutí kláves Shift+tabulátor (TAB) na klávesnici - + Move focus to right/left pane Přesunout zaměření do pravé/levé tabulky - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys Přesunout zaměření tabulky napravo nebo nalevo pomocí otočného knoflíku se stejným výsledkem, jako při stisknutí kláves TAB/Shift+TAB - + Go to the currently selected item Jít na nyní vybranou položku - + Choose the currently selected item and advance forward one pane if appropriate Zvolte nyní vybranou položku a jděte dopředu o jeden výřez okna - + Load Track and Play - + Add to Auto DJ Queue (replace) Přidat do řady skladeb automatického diskžokeje (nahradit) - + Replace Auto DJ Queue with selected tracks Nahradit řadu skladeb automatického diskžokeje vybranými skladbami - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button Přehrávač %1 Tlačítko pro povolení rychlého efektu - + Quick Effect Enable Button Tlačítko pro povolení rychlého efektu - + Enable or disable effect processing Zapnout nebo vypnout zpracování efektu - + Super Knob (control effects' Meta Knobs) Superknoflík (řízení metaknoflíků efektů) - + Mix Mode Toggle Přepnout režim míchání - + Toggle effect unit between D/W and D+W modes Přepnout efektovou jednotku mezi režimy D/W a D+W - + Next chain preset Další přednastavení řetězce efektu - + Previous Chain Předchozí řetězec - + Previous chain preset Předchozí přednastavení řetězce efektu - + Next/Previous Chain Další/Předchozí řetězec - + Next or previous chain preset Další nebo předchozí přednastavení řetězce efektu - - + + Show Effect Parameters Ukázat parametry efektů - + Effect Unit Assignment - + Meta Knob Otočné řízení - + Effect Meta Knob (control linked effect parameters) Otočné řízení efektu (ovládání parametrů propojených efektů) - + Meta Knob Mode Režim otočného řízení - + Set how linked effect parameters change when turning the Meta Knob. Nastavit, jak se parametry propojených efektů budou měnit, když se otáčí otočným řízením. - + Meta Knob Mode Invert Obrácení režimu otočného řízení - + Invert how linked effect parameters change when turning the Meta Knob. Obrátit, jak se parametry propojených efektů budou měnit, když se otáčí otočným řízením. - - + + Button Parameter Value - + Microphone / Auxiliary Mikrofon/Aux - + Microphone On/Off Mikrofon zapnuto/vypnuto - + Microphone on/off Mikrofon zapnuto/vypnuto - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) Přepnout režim tlumení mikrofonu (ZAPNUTO, AUTOMATICKY, RUČNĚ) - + Auxiliary On/Off Aux zapnuto/vypnuto - + Auxiliary on/off Aux zapnuto/vypnuto - + Auto DJ Diskžokej - + Auto DJ Shuffle Automatický diskžokej Zamíchat - + Auto DJ Skip Next Automatický diskžokej Přeskočit další - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next Automatický diskžokej Prolínat k další skladbě - + Trigger the transition to the next track Spustit přechod k další skladbě - + User Interface Uživatelské rozhraní - + Samplers Show/Hide Ukázat/Skrýt vzorkovače - + Show/hide the sampler section Ukázat/Skrýt oblast vzorkovače - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. Vysílejte svoje míchání přes internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide Ukázat/Skrýt ovládání vinylovou gramodeskou - + Show/hide the vinyl control section Ukázat/Skrýt oblast ovládání vinylovou gramodeskou - + Preview Deck Show/Hide Ukázat/Skrýt náhled přehrávačů - + Show/hide the preview deck Ukázat/Skrýt přehrávač náhledu - + Toggle 4 Decks Přepnout 4 přehrávače - + Switches between showing 2 decks and 4 decks. Přepíná mezi ukázáním 2 a 4 přehrávačů. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide Ukázat/Skrýt otáčející se vinylovou gramodesku - + Show/hide spinning vinyl widget Ukázat/Skrýt otáčející se vinylovou gramodesku - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom Zvětšení průběhové křivky - + Waveform Zoom Zvětšení průběhové křivky - + Zoom waveform in Přiblížit průběhovou křivku - + Waveform Zoom In Přiblížit průběhovou křivku - + Zoom waveform out Oddálit průběhovou křivku - + Star Rating Up Hodnocení hvězdičkami nahoru - + Increase the track rating by one star Zvýšit hodnocení skladby o jednu hvězdu - + Star Rating Down Hodnocení hvězdičkami dolů - + Decrease the track rating by one star Snížit hodnocení skladby o jednu hvězdu @@ -3160,32 +3228,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. Pokuste se o obnovu znovunastavením vašeho řadiče. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. Kód skriptu je potřeba opravit. @@ -3221,133 +3289,133 @@ CrateFeature - + Remove Odstranit - - + + Create New Crate Vytvořit novou přepravku - + Rename Přejmenovat - - + + Lock Zamknout - + Export Crate as Playlist - + Export Track Files Uložit soubory skladeb - + Duplicate Zdvojit - + Analyze entire Crate Rozebrat celou přepravku - + Auto DJ Track Source Zdroj skladeb pro automatického diskžokeje - + Enter new name for crate: Zadat nový název pro přepravku: - - + + Crates Přepravky - - + + Import Crate Nahrát přepravku - + Export Crate Uložit přepravku - + Unlock Odemknout - + An unknown error occurred while creating crate: Při vytváření přepravky na desky nastala neznámá chyba: - + Rename Crate Přejmenovat přepravku - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed Přejmenování přepravky se nezdařilo - + Crate Creation Failed Vytvoření přepravky se nezdařilo - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Seznam skladeb M3U (*.m3u);;Seznam skladeb M3U8 (*.m3u8);;Seznam skladeb PLS (*.pls);;Text CSV (*.csv);;Prostý text (*.txt) - + Crates are a great way to help organize the music you want to DJ with. Přepravky na desky jsou skvělým způsobem, jak uspořádat hudbu, se kterou chcete míchat. - + Crates let you organize your music however you'd like! Přepravky na desky vám umožní uspořádat si svou sbírku skladeb po svém! - + A crate cannot have a blank name. Název přepravky nemůže být prázdný. - + A crate by that name already exists. Přepravka s tímto názvem již existuje. @@ -3417,37 +3485,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: S příspěvky od: - + And special thanks to: A zvláštní poděkování: - + Past Developers Vývojáři v minulosti - + Past Contributors Přispěvatelé v minulosti - + Official Website - + Donate @@ -4886,32 +4954,32 @@ Použít nastavení a pokračovat? DlgPrefControlsDlg - + Skin Vzhled - + Tool tips Nástrojové rady - + Select from different color schemes of a skin if available. Vybírejte z různých barevných schémat vzhledu v případě, že je dostupný. - + Color scheme Barevný model - + Locales determine country and language specific settings. Určení místa určuje nastavení zvláštní pro zemi a jazyk. - + Locale Jazyk @@ -4921,52 +4989,42 @@ Použít nastavení a pokračovat? Nastavení rozhraní - + HiDPI / Retina scaling HiDPI/Retina změna velikosti - + Change the size of text, buttons, and other items. Změnit velikost textu, tlačítek a dalších prvků. - - Adopt scale factor from the operating system - Převzít násobiče pro změnu velikosti z operačního systému - - - - Auto Scaling - Automatická změna velikosti - - - + Screen saver Spořič obrazovky - + Start in full-screen mode Spustit v režimu na celou obrazovku - + Full-screen mode Režim na celou obrazovku - + Off Vypnuto - + Library only Pouze knihovna - + Library and Skin Knihovna a vzhled @@ -5595,39 +5653,39 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. Nejmenší velikost vybraného vzhledu je větší než rozlišení vaší obrazovky. - + Allow screensaver to run Povolit běh spořiče obrazovky - + Prevent screensaver from running Zabránit spořiči obrazovky v běhu - + Prevent screensaver while playing Zabránit spořiči obrazovky v běhu během přehrávání - + This skin does not support color schemes Tento vzhled nepodporuje barevná schémata - + Information Informace - - Mixxx must be restarted before the new locale setting will take effect. - Předtím než se změny projeví, bude se muset Mixxx spustit znovu. + + Mixxx must be restarted before the new locale or scaling settings will take effect. + @@ -5845,62 +5903,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added Adresář s hudbou přidán - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? Přidal jste jeden nebo více adresářů s hudbou. Skladby v těchto adresářích nebudou dostupné, dokud nenecháte znovu prohledat knihovnu. Chcete ji nechat prohledat nyní? - + Scan Prohledat - + Choose a music directory Vybrat adresář pro hudbu - + Confirm Directory Removal Potvrdit odstranění adresáře - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. Mixxx už v tomto adresáři nové skladby nebude hledat. Co chcete dělat se skladbami z tohoto adresáře a jeho podadresářů?<ul><li>Skrýt všechny skladby z tohoto adresáře a jeho podadresářů.</li><li>Smazat trvale všechna popisná data pro tyto skladby z Mixxxu.</li><li>Nechat tyto skladby v knihovně nezměněny.</li></ul>Skrytí skladeb uloží jejich popisná data pro případ, že je v budoucnu znovu přidáte. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. Popisná data obsahují všechny podrobnosti o skladbě (umělec, název, počet přehrání atd.), stejně tak jako rytmické mřížky, rychlé značky a smyčky. Toto rozhodnutí ovlivní jen knihovnu Mixxxu. Žádné soubory na pevném disku nebudou změněny nebo smazány. - + Hide Tracks Skrýt skladby - + Delete Track Metadata Smazat popisná data - + Leave Tracks Unchanged Ponechat skladby nezměněny - + Relink music directory to new location Propojit adresář s hudbou znovu s novým umístěním - + Select Library Font Vybrat písmo knihovny @@ -6908,32 +6966,32 @@ Kompenzace pro přizpůsobení načasování mikrofonu. DlgPrefWaveform - + Filtered Filtrováno - + HSV HSV - + RGB RGB - + OpenGL not available OpenGL není dostupné - + dropped frames upuštěné snímky - + Cached waveforms occupy %1 MiB on disk. Průběhové křivky uložené do vyrovnávací paměti zabírají %1 MiB místa na disku. @@ -7149,72 +7207,72 @@ Vyberte z různých druhů zobrazení průběhových křivek, které se v prvé Knihovna - + Interface Rozhraní - + Waveforms Křivky - + Auto DJ Diskžokej - + Equalizers Ekvalizéry - + Decks Přehrávače - + Colors Barvy - + Crossfader Prolínač - + Effects Efekty - + LV2 Plugins Moduly LV2 - + Recording Nahrávání - + Beat Detection Rytmus - + Key Detection Tónina - + Normalization Normalizace - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7224,12 +7282,12 @@ Vyberte z různých druhů zobrazení průběhových křivek, které se v prvé Vinyl - + Live Broadcasting Živé vysílání - + Modplug Decoder Dekodér @@ -7370,123 +7428,123 @@ Vyberte z různých druhů zobrazení průběhových křivek, které se v prvé Vyberte nejlepší možnou shodu - - + + Track Skladba - - + + Year Rok - + Title Název - - + + Artist Umělec - - + + Album Album - + Album Artist Umělec alba - + Fetching track data from the MusicBrainz database Natahují se data z databáze MusicBrainz - + Mixxx could not find this track in the MusicBrainz database. Mixxxu se nepodařilo najít tuto skladbu v databázi MusicBrainz. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. Vyžádat si klíč API - + Submit Submits audio fingerprints to the MusicBrainz database. Poslat - + New Column Nový sloupec - + New Item Nový prvek - + &Previous &Předchozí - + &Next &Další - + &Apply &Použít - + &Close &Zavřít - + Status: %1 Stav: %1 - + HTTP Status: %1 Stav HTTP: %1 - + Code: %1 Kód: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxxu se z neznámého důvodu nepodařilo připojit k %1. - + Mixxx can't connect to %1. Mixxx se nedokáže spojit s %1. - + Original tags Původní značky - + Suggested tags Navrhované značky @@ -7880,17 +7938,17 @@ Použijte toto nastavení, pokud mají vaše skladby stálé tempo (např. vět EngineBuffer - + Soundtouch (faster) Soundtouch (rychlejší) - + Rubberband (better) Rubberband (lepší) - + Unknown (bad value) Neznámý (špatná hodnota) @@ -7991,38 +8049,38 @@ Použijte toto nastavení, pokud mají vaše skladby stálé tempo (např. vět ITunesFeature - + iTunes iTunes - - + + Select your iTunes library Vyberte svou knihovnu skladeb iTunes - + (loading) iTunes (nahrává se) iTunes - + Use Default Library Použít standardní knihovnu - + Choose Library... Vybrat knihovnu... - + Error Loading iTunes Library Chyba při nahrávání knihovny skladeb iTunes - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. Při nahrávání knihovny skladeb iTunes se objevila chyba. Některé z vašich skladeb nebo seznamů skladeb možná nejsou načteny. @@ -8030,13 +8088,13 @@ Použijte toto nastavení, pokud mají vaše skladby stálé tempo (např. vět LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. Bezpečný režim povolen - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8045,57 +8103,57 @@ support. pro OpenGL. - + activate Zapnout - + toggle Přepnout - + right Vpravo - + left Vlevo - + right small Trochu doprava - + left small Trochu doleva - + up Nahoru - + down Dolů - + up small Trochu nahoru - + down small Trochu dolů - + Shortcut Klávesová zkratka @@ -8116,22 +8174,22 @@ pro OpenGL. LibraryFeature - + Import Playlist Nahrát seznam skladeb - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Soubory se seznamy skladeb (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8142,27 +8200,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Prohledávač knihovny - + It's taking Mixxx a minute to scan your music library, please wait... Bude chvíli trvat, než Mixxx prohlédne vaši hudební sbírku, čekejte, prosím.... - + Cancel Zrušit - + Scanning: Prohledávání: - + Scanning cover art (safe to cancel) Hledají se obaly alb (lze bezpečně zrušit) @@ -8279,183 +8337,183 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy Zvukové zařízení je zaneprázdněné - + <b>Retry</b> after closing the other application or reconnecting a sound device <b>Zopakovat</b> pokus o připojení po zavření jiného programu nebo po opětovném připojení zvukového zařízení - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. <b>Nastavit znovu</b> nastavení zvukových zařízení programu Mixxx. - - + + Get <b>Help</b> from the Mixxx Wiki. Získejte <b>nápovědu</b> z Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. <b>Ukončit</b> Mixxx. - + Retry Opakovat - + skin - - + + Reconfigure Nastavit znovu - + Help Nápověda - - + + Exit Ukončit - - + + Mixxx was unable to open all the configured sound devices. Mixxx nebyl schopen otevřít všechna nastavená zvuková zařízení. - + Sound Device Error Chyba zvukového zařízení - + <b>Retry</b> after fixing an issue Po spravení této záležitosti <b>Zkusit znovu</b> - + No Output Devices Žádná výstupní zařízení - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. Mixxx byl nastaven bez zařízení pro výstup zvuku. Zpracování zvuku bude bez nastaveného výstupního zařízení vypnuto. - + <b>Continue</b> without any outputs. <b>Pokračovat</b> bez jakéhokoli výstupu. - + Continue Pokračovat - + Load track to Deck %1 Nahrát skladbu do přehrávací mechaniky %1 - + Deck %1 is currently playing a track. Přehrávací mechanika %1 nyní přehrává skladbu. - + Are you sure you want to load a new track? Jste si jistý, že chcete nahrát novou skladbu? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. Není vybráno žádné vstupní zařízení pro toto ovládání vinylovou gramodeskou. Nejprve, prosím, vyberte nějaké vstupní zařízení v nastavení zvukového technického vybavení. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. Není vybráno žádné vstupní zařízení pro toto ovládání předání dál. Nejprve, prosím, vyberte nějaké vstupní zařízení v nastavení zvukového technického vybavení. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file Chyba v souboru se vzhledem - + The selected skin cannot be loaded. Nelze nahrát vybraný vzhled. - + OpenGL Direct Rendering Přímé vykreslování OpenGL - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Potvrdit ukončení - + A deck is currently playing. Exit Mixxx? Některá z přehrávacích mechanik hraje. Ukončit Mixxx? - + A sampler is currently playing. Exit Mixxx? Vzorkovač nyní hraje. Ukončit Mixxx? - + The preferences window is still open. Okno s nastavením je stále otevřené. - + Discard any changes and exit Mixxx? Zahodit všechny změny a ukončit Mixxx? @@ -8528,43 +8586,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Zamknout - + Playlists Seznamy skladeb - + Unlock Odemknout - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. Někteří diskžokejové sestavují seznamy skladeb, předtím než vystoupí živě, ale jiní upřednostňují jejich tvoření bez rozmýšlení. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. Když používáte seznam skladeb během míchání, dávejte vždy obzvláštní pozor na to, jak hudba, kterou hrajete, účinkuje na posluchačstvo. - + Create New Playlist Vytvořit nový seznam skladeb @@ -8572,59 +8630,59 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx Aktualizuje se Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? Mixxx nyní podporuje zobrazení obrázků obalů. Chcete nyní kvůli souborům s obaly prohledat knihovnu? - + Scan Prohledat - + Later Později - + Upgrading Mixxx from v1.9.x/1.10.x. Aktualizuje se Mixxx z verze 1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. Mixxx má nové a vylepšené rozpoznávání rytmu. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. Když nahrajete skladby, Mixxx je může znovu rozebrat a vytvoři novou, přesnější rytmickou mřížku. Tím bude automatické seřízení rytmu a smyčkování pracovat spolehlivěji. - + This does not affect saved cues, hotcues, playlists, or crates. Toto neovlivní značky, rychlé značky, seznamy skladeb nebo přepravky. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. Pokud nechcete, aby Mixxx znovu rozebral vaše skladby, vyberte Zachovat nynější rytmické mřížky. Toto nastavení můžete kdykoliv změnit v nastavení v části Rozpoznávání rytmu. - + Keep Current Beatgrids Zachovat nynější rytmické mřížky - + Generate New Beatgrids Vytvořit nové rytmické mřížky @@ -8808,7 +8866,7 @@ Chcete nyní kvůli souborům s obaly prohledat knihovnu? Používání formátu Opus při vzorkovacích kmitočtech jiných než 48 kHz není kodérem Opus podporováno. Použijte, prosím, v nastavení pro zvukové zařízení počítače 48000 Hz nebo přepněte na jiné kódování. - + Encoder Kodér @@ -9941,12 +9999,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10084,54 +10142,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists Seznamy skladeb - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10140,7 +10198,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox Rhythmbox @@ -10191,34 +10249,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks Skladby - + Crates Přepravky - + Check for Serato databases (refresh) - + (loading) Serato @@ -10241,12 +10299,12 @@ Fully right: end of the effect period Historie - + Unlock Odemknout - + Lock Zamknout @@ -11205,6 +11263,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12380,11 +12463,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize Staré seřizování - - - (This skin should be updated to use Master Sync!) - (Tento vzhled by se měl aktualizovat, aby se používalo hlavní seřizování!) - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12400,16 +12478,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. Přehrávače se nemohou seřizovat se vzorkovači a vzorkovače se mohou seřizovat jen s přehrávači. - - - Enable Master Sync - Povolit hlavní seřízení - - - - Tap to sync the tempo to other playing tracks or the master clock. - Klepněte pro seřízení tempa k jiné hrající skladbě nebo hlavním hodinám. - Hold for at least a second to enable sync lock for this deck. @@ -12425,16 +12493,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. Nastaví tóninu znovu na původní tóninu skladby. - - - Enable Sync Clock Master - Povolit seřízení s hlavními hodinami - - - - When enabled, this device will serve as the master clock for all other decks. - Když je povoleno, toto zařízení bude sloužit jako hlavní hodiny pro všechny ostatní přehrávače. - Speed Control @@ -12988,22 +13046,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor Traktor - + (loading) Traktor (nahrává se) Traktor - + Error Loading Traktor Library Chyba při nahrávání knihovny skladeb Traktoru - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. Při nahrávání vaší knihovny skladeb Traktoru nastala chyba. Některé z vašich skladeb Traktoru se nemusely načíst. @@ -13615,20 +13673,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Propustit skrz - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13799,8 +13857,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Žánr - - Folder + + Directory @@ -14043,155 +14101,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 Přehrávač %1 - + Sampler %1 Vzorkovač %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Vytvořit nový seznam skladeb - + Enter name for new playlist: Zadat název pro nový seznam skladeb: - + New Playlist Nový seznam skladeb - - - + + + Playlist Creation Failed Seznam skladeb se nepodařilo vytvořit - + A playlist by that name already exists. Seznam skladeb s tímto názvem již existuje. - + A playlist cannot have a blank name. Seznam skladeb musí mít název. - + An unknown error occurred while creating playlist: Při vytváření seznamu skladeb došlo k neznámé chybě: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14199,7 +14262,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus ESC @@ -14236,128 +14299,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects.(GL ES) - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks Přehrávače - + library - + Choose music library directory Vybrat adresář s hudební knihovnou - + controllers - + Cannot open database Nelze otevřít databázi - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14436,7 +14426,7 @@ Stiskněte OK pro ukončení. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14493,62 +14483,62 @@ Stiskněte OK pro ukončení. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse Obecná myš HID - + Generic HID Joystick Obecný HID pákový ovladač - + Generic HID Game Pad - + Generic HID Keyboard Obecná klávesnice HID - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: @@ -14566,7 +14556,7 @@ Stiskněte OK pro ukončení. No effect loaded. - + Nenahrán žádný efekt. \ No newline at end of file diff --git a/res/translations/mixxx_da.qm b/res/translations/mixxx_da.qm index addb7d7ec3dc5033e8196f6097e73493ffa94cca..51174c6eca44aa32fe98415115107dd5eb044ac9 100644 GIT binary patch delta 1820 zcmXZddr;I>6bJAxyZhV6Z(o+=dqEIZ7hKqo-34OVT^85}%d(KrnATX~Fo|f^RN7># zQUOMdxYl5AQAg7r7$y^G1E{H>SfY%N87=cMsbe)hCbF!v9RK><-~R62$2sTT-=6Q{ z_Uw*Z8$U4&U>cy^O+E}5kFn0yRk=yw4{8$rirM z`byZ+J~n(Ec(e&9`GmYj_Cxlf2)NrJh-w1WDA=G4ie)E&nXf=yIvddSvI#%3&TFjeFE%g(Gm9<($!_>e z6baoLHsM3o(N0F_g|nM~a2;a(*AYmk1*I8SuNOh}W+43!)_WOc2i~9*C9=t{vbhV{ zLXjVtjn&a9q8NGBfs5Hs|%YyA}%2xNDNS@jAftljQ5Orz!P)l947Vsm!gcL&iF* zq{ZhK0NE+hK+C)2YUzsk13*S!)FDmCa#>}~9kgw?n+>dxZCFg*Dw}18B)h0!775Op zjkJwS*0(tNw$vD@xGc1k8~`*ESbHU#r)M1=w$dQ9#Oh8HX6+3^+m6K))uZgRB(`X~ zu>GxlG~ET^K&+7MyV&C8Y)PFkoD%}1HKRrltP`$GlmV)F!j;tZfMfwHPG>!Ba;+hr zCT^13TOOf$GReL5PXl8_cItiI$M`vLNA4Y@_mfu0UkbXZ@HfdDPHzKdxmf=y`43t; z0NKOxLrXJgU`xAvAbNv3&Xb?(qP)*q9X%;CW`%1NrZc_t_%mA>RAdfO_!UvswqD_p z(BH>I6;F-Ox~&tVX2CeAVw}=w9;7VaQTp7)bb)})nG~%T3L-fb%7OTPDz0|rQE4ZQ zE@S;6mAdH?pkK)*zRBjCQBCR4QBh{A%4+GpNL|O~CaD&#qHJ4NsunHUN@=KOlRMbL zJhpVXYJdMuy3U$arw2@+^LuZ!0U^xJ_>2wZi^^v%QrK>=c|NfwpSGtz$R_r))|;%& zBeo5-)2R!w1!q|A4sk;trBiZ}Rj*|$YQ=Al_tJoA>tYSM`M`!#qkH8Ek+L4~a9alO z&=&E?NCT~-OT4}BH#!A2wNOZ9YpPKmR&6(O(*STy!mK19MWr@0?T8hBrUv+c8pox>V>At^6Da^dA>(P5?0yFCyj2e^) z<)LqM|8D+;#@WgG#_2P+P<%7y=q;vP!1IsZT1C(40sWRi`l^|)>bvcfAjJv&sj+lW dRR>wy;InjD40NthcBOYNwd$pv9l4s6{{enz;za-e delta 2152 zcma*ndr(w$6bJAxyL)%pyDv&iL4oD92*^VakcYv-F3T>vEAlE|CCLsW0vecO58KRC zEG%);QPW9N)9^7Wrju!-0->N-Y9%#kijJc-HkLLr4%%4`|62a_`Tc(P-rwV#^Seh6 z`5gV)XO(}zJOJT<<`6j!Fq~tJcbnr3lI-5*vQ&58CBWhU3Nl%T9+-R@cxD3|c9%8% z#M(Y*ondT=9Vls}?;n$o0Ba0nuZe(30zo`RYsw*{d;*B8*!1PBW!Io?6nqMyAO#pf z170J2STlX#?ORJA*zW4#II4Ff5CWC}*>1 ze($)s-K(1xSOnqWyY%8bHiCBO?dLvX%~h;(Effnc0&y)+6_x_p6KwEzY;GZ&_abX= z#8}e}Ak2t@Xo`gPeKvR_nOxol1< zn@cZxpPQwubE@Z<#4t5p?o%tH%naMiW?c7qm`DM7?sv(Y5n3Snd&z-cdMWiMCH;+5 zQb`InyOK42DK%el0jcjvZB1*)YtltCyQxycJQJnCNx5reEB4W`^R}?|UuEm-=(W;Y zvQv_SR4_F{cI6hD_9NET<5?*+xJ&beru+^-J(5j7z-G;5v$wLPi-aa`eW{Ds^gdzT zt~!e9SvEYBwTME?2W_<6HKD^>$Qk~urI#(}7Ji)I1f-RNy5Z~=ZU)Ez<#gd@>j&ixBhn@#6k}t3uffT8HN$*Z_ zGh297-qO|#jCIOe`h6mR#Fg@IHFP7=Qst*!ji;Lqoe1gKB!?bFYrsOYD2q`mG55)6SQ3w#Z6J(Tr-d<%?b z`k{c$c*8S8c;20{-?!Vp3ouH2&q`Zqu}ZdZuTs@`1JJ$0hAd+wLoTfEe>M;`1h(u-|tXrr;M;^}pimEqgPGyO|wKZnKpZMUfE*NXiD zJx};cCFD|BM^~zrZ)%`8`>+wgtT|bA=E&ca?mpJ|rs|I=G@st8wyeHKb(+X#rLZ~G z>f-VbDKH~L1{=t*s9&1-C;c!NvJbJXn;n#j-2TFNkGIw z^`#&xuaPs?O>W-vQ!W0*Emxj?rR(7)K@w0)l*w$*_ z!?97ta9}p-(11D6!%D6BaG{>mqZSo3KG^q^CZ`01n_RQ%T@?*3{p`B=uKK!)8hvd= z1GPL`QVmhgr=BUwb30iK2z}CQtpmx)QrcKP=F&zUpz8lOX07|rjXmv5LmPYIYy-&= Kt%+&sh<^bTbUm2> diff --git a/res/translations/mixxx_da.ts b/res/translations/mixxx_da.ts index de35b6e40c1..cc2dc2f1136 100644 --- a/res/translations/mixxx_da.ts +++ b/res/translations/mixxx_da.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates - + Remove Crate as Track Source - + Auto DJ Auto DJ - + Add Crate as Track Source @@ -43,24 +43,24 @@ BansheeFeature - + Banshee - - + + Error loading Banshee database - + Banshee database file not found at - + There was an error loading your Banshee database at @@ -69,32 +69,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Tilføj til Auto DJ-køen (bunden) - + Add to Auto DJ Queue (top) Tilføj til Auto DJ-køen (toppen) - + Add to Auto DJ Queue (replace) - + Import Playlist Importér afspilningsliste - + Playlist Creation Failed Afspilningsliste-oprettelsen fejlede - + An unknown error occurred while creating playlist: En ukendt fejl opstod under oprettelsen af afspilningslisten: @@ -102,144 +102,144 @@ BasePlaylistFeature - + New Playlist Ny afspilningsliste - + Add to Auto DJ Queue (bottom) Tilføj til Auto DJ-køen (bunden) - - + + Create New Playlist Opret ny afspilningsliste - + Add to Auto DJ Queue (top) Tilføj til Auto DJ-køen (toppen) - + Remove Fjern - + Rename Omdøb - + Lock Lås - + Duplicate Dupliker - - + + Import Playlist Importér afspilningsliste - + Export Track Files Eksporter musik fil - + Analyze entire Playlist Analyser hele afspilningslisten - + Enter new name for playlist: Indtast nyt navn til afspilningslisten: - + Duplicate Playlist Kopier afspilningsliste - - + + Enter name for new playlist: Indtast navn til ny afspilningsliste: - - + + Export Playlist Eksportér afspilningsliste - + Add to Auto DJ Queue (replace) - + Rename Playlist Omdøb afspilningsliste - - + + Renaming Playlist Failed Omdøbningen af afspilningslisten fejlede - - - + + + A playlist by that name already exists. En afspillingsliste med samme navn eksisterer allerede. - - - + + + A playlist cannot have a blank name. En afspillingsliste kan ikke have et tomt navn. - + _copy //: Appendix to default name when duplicating a playlist _kopier - - - - - - + + + + + + Playlist Creation Failed Afspilningsliste-oprettelsen fejlede - - + + An unknown error occurred while creating playlist: En ukendt fejl opstod under oprettelsen af afspilningslisten: - + M3U Playlist (*.m3u) M3U-afspilningsliste (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Kunne ikke læse spor. @@ -512,7 +512,7 @@ - + Computer Komputer @@ -532,7 +532,7 @@ Skan - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. "Komputer" lader dig navigere, kigge, og tilføje filer fra dine mapper på din harddisk og dine eksterne enheder. @@ -645,12 +645,12 @@ Fil oprettet - + Mixxx Library Mixxx bibliotek - + Could not load the following file because it is in use by Mixxx or another application. Kunne ikke læse den følgende fil, da den er i brug af Mixxx eller et andet program. @@ -681,6 +681,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -863,13 +941,13 @@ - + Set to full volume Sæt til fuld styrke - + Set to zero volume Sluk for lyden @@ -894,13 +972,13 @@ - + Headphone listen button - + Mute button Sluk for lyden knap @@ -916,25 +994,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -978,36 +1056,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - Forøg Intern master BPM hastighed med 1 - - - - Decrease internal master BPM by 1 - Minsk Intern master BPM hastighed med 1 - - - - Increase internal master BPM by 0.1 - Forøg Intern master BPM hastighed med 0,1 - - - - Decrease internal master BPM by 0.1 - Minsk Intern master BPM hastighed med 0,1 - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1019,7 +1067,7 @@ - + Toggle keylock mode @@ -1029,199 +1077,199 @@ - + Vinyl Control - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 32 - + 64 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library Bibliotek @@ -1332,20 +1380,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1361,7 +1409,7 @@ - + Mute @@ -1372,7 +1420,7 @@ - + Headphone Listen @@ -1393,25 +1441,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1510,52 +1558,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1572,37 +1574,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1643,466 +1645,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) Tilføj til Auto DJ-køen (bunden) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) Tilføj til Auto DJ-køen (toppen) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix Optag Mix - + Toggle mix recording - + Effects Effekter - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear Ryd - + Clear the current effect - + Toggle - + Toggle the current effect - + Next Næste - + Switch to next effect Skift til næste effekt - + Previous Forrige - + Switch to the previous effect Skift til forrige effekt - + Next or Previous Næste eller Forrige - + Switch to either next or previous effect - - + + Parameter Value Parameter Værdi - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2127,93 +2129,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2270,806 +2272,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ Auto DJ - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3158,32 +3226,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3219,133 +3287,133 @@ CrateFeature - + Remove Fjern - - + + Create New Crate - + Rename Omdøb - - + + Lock Lås - + Export Crate as Playlist - + Export Track Files Eksporter musik fil - + Duplicate Dupliker - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates - - + + Import Crate - + Export Crate - + Unlock Lås op - + An unknown error occurred while creating crate: - + Rename Crate - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) - + Crates are a great way to help organize the music you want to DJ with. - + Crates let you organize your music however you'd like! - + A crate cannot have a blank name. - + A crate by that name already exists. @@ -3415,37 +3483,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4875,32 +4943,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin - + Tool tips - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4910,52 +4978,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off - + Library only - + Library and Skin @@ -5566,38 +5624,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5816,62 +5874,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added Musik-placering tilføjet - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? Du har tilføjet et eller flere musik biblioteker. Numrene i disse biblioteker vil ikke være tilgængelige før du har skannet dit bibliotek igen. Vil du skanne biblioteket igen nu ? - + Scan Skan - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6875,32 +6933,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7114,72 +7172,72 @@ Select from different types of displays for the waveform, which differ primarily Bibliotek - + Interface - + Waveforms - + Auto DJ Auto DJ - + Equalizers - + Decks - + Colors - + Crossfader Crossfader - + Effects Effekter - + LV2 Plugins - + Recording - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7189,12 +7247,12 @@ Select from different types of displays for the waveform, which differ primarily - + Live Broadcasting - + Modplug Decoder @@ -7335,123 +7393,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year År - + Title Titel - - + + Artist Kunstner - - + + Album Album - + Album Artist Albumskunstner - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7843,17 +7901,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7954,38 +8012,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7993,13 +8051,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8007,57 +8065,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8078,22 +8136,22 @@ support. LibraryFeature - + Import Playlist Importér afspilningsliste - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Afspillingsliste Filer (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8104,27 +8162,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8240,181 +8298,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry - + skin - - + + Reconfigure - + Help - - + + Exit - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8485,43 +8543,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Lås - + Playlists - + Unlock Lås op - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist Opret ny afspilningsliste @@ -8529,58 +8587,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Skan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8764,7 +8822,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9890,12 +9948,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10033,54 +10091,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10089,7 +10147,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10140,34 +10198,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates - + Check for Serato databases (refresh) - + (loading) Serato @@ -10190,12 +10248,12 @@ Fully right: end of the effect period - + Unlock Lås op - + Lock Lås @@ -11154,6 +11212,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12329,11 +12412,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12349,16 +12427,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12374,16 +12442,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12937,22 +12995,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13564,20 +13622,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13748,8 +13806,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Genre - - Folder + + Directory @@ -13992,155 +14050,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 Pladespiller 1 - + Sampler %1 Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Opret ny afspilningsliste - + Enter name for new playlist: Indtast navn til ny afspilningsliste: - + New Playlist Ny afspilningsliste - - - + + + Playlist Creation Failed Afspilningsliste-oprettelsen fejlede - + A playlist by that name already exists. En afspillingsliste med samme navn eksisterer allerede. - + A playlist cannot have a blank name. En afspillingsliste kan ikke have et tomt navn. - + An unknown error occurred while creating playlist: En ukendt fejl opstod under oprettelsen af afspilningslisten: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14148,7 +14211,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14185,128 +14248,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14382,7 +14372,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14439,62 +14429,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_de.qm b/res/translations/mixxx_de.qm index dc8e10c4ebab6f284e41c9c01c73db48413461dc..eb300e8a7b1be742cc1ff8c3d92731121f32c7e2 100644 GIT binary patch delta 22497 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 Zq%logzh202ITzW?LN>RD##+U3{{RrEZI}Q6 delta 24753 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 BlFI-9 diff --git a/res/translations/mixxx_de.ts b/res/translations/mixxx_de.ts index 7478105aa16..519c4ad2a61 100644 --- a/res/translations/mixxx_de.ts +++ b/res/translations/mixxx_de.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Plattenkisten - + Remove Crate as Track Source Plattenkiste als Track-Quelle entfernen - + Auto DJ Auto-DJ - + Add Crate as Track Source Plattenkiste als Track-Quelle hinzufügen @@ -43,25 +43,25 @@ BansheeFeature - + Banshee Banshee - - + + Error loading Banshee database Fehler beim Laden der Banshee-Datenbank - + Banshee database file not found at Banshee-Datenbankdatei nicht gefunden bei - + There was an error loading your Banshee database at Ein Fehler ist aufgetreten beim Laden der Banshee-Datenbank an @@ -71,32 +71,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Zur Auto-DJ Warteschlange hinzufügen (Ende) - + Add to Auto DJ Queue (top) Zur Auto-DJ Warteschlange hinzufügen (Anfang) - + Add to Auto DJ Queue (replace) Zur Auto-DJ Warteschlange hinzufügen (Ersetzen) - + Import Playlist Wiedergabeliste importieren - + Playlist Creation Failed Erstellung der Wiedergabeliste fehlgeschlagen - + An unknown error occurred while creating playlist: Beim Erstellen der Wiedergabeliste ist ein Fehler aufgetreten: @@ -104,144 +104,144 @@ BasePlaylistFeature - + New Playlist Neue Wiedergabeliste - + Add to Auto DJ Queue (bottom) Zur Auto-DJ Warteschlange hinzufügen (Ende) - - + + Create New Playlist Neue Wiedergabeliste erstellen - + Add to Auto DJ Queue (top) Zur Auto-DJ Warteschlange hinzufügen (Anfang) - + Remove Entfernen - + Rename Umbenennen - + Lock Sperren - + Duplicate Duplizieren - - + + Import Playlist Wiedergabeliste importieren - + Export Track Files Track-Dateien exportieren - + Analyze entire Playlist Gesamte Wiedergabeliste analysieren - + Enter new name for playlist: Einen neuen Namen für Wiedergabeliste eingeben: - + Duplicate Playlist Wiedergabeliste duplizieren - - + + Enter name for new playlist: Einen Namen für neue Wiedergabeliste eingeben: - - + + Export Playlist Wiedergabeliste exportieren - + Add to Auto DJ Queue (replace) Zur Auto-DJ Warteschlange hinzufügen (Ersetzen) - + Rename Playlist Wiedergabeliste umbenennen - - + + Renaming Playlist Failed Umbenennen der Wiedergabeliste fehlgeschlagen - - - + + + A playlist by that name already exists. Eine Wiedergabeliste mit diesem Namen gibt es bereits. - - - + + + A playlist cannot have a blank name. Eine Wiedergabeliste muss einen Namen haben. - + _copy //: Appendix to default name when duplicating a playlist _Kopie - - - - - - + + + + + + Playlist Creation Failed Erstellung der Wiedergabeliste fehlgeschlagen - - + + An unknown error occurred while creating playlist: Beim Erstellen der Wiedergabeliste ist ein Fehler aufgetreten: - + M3U Playlist (*.m3u) M3U-Wiedergabeliste (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U-Wiedergabeliste (*.m3u);;M3U8-Wiedergabeliste (*.m3u8);;PLS-Wiedergabeliste (*.pls);;Text-CSV (*.csv);;Lesbarer Text (*.txt) @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Track konnte nicht geladen werden. @@ -514,7 +514,7 @@ - + Computer Computer @@ -534,7 +534,7 @@ Scannen - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. Sie können Ordnern auf Ihrer Festplatte und externen Geräten durchsuchen, sich Tracks anzeigen lassen und diese laden. @@ -647,12 +647,12 @@ Datei erstellt - + Mixxx Library Mixxx-Bibliothek - + Could not load the following file because it is in use by Mixxx or another application. Folgende Datei konnte nicht geladen werden, da sie in Mixxx oder einer anderen Anwendung in Benutzung ist. @@ -683,6 +683,89 @@ Die Datei '%1' ist leer und konnte nicht geladen werden. + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + Startet Mixxx im Vollbild-Modus + + + + Use a custom locale for loading translations. (e.g 'fr') + Verwenden Sie ein benutzerdefiniertes Gebietsschema für das Laden von Übersetzungen (z.B. 'de') + + + + Top-level directory where Mixxx should look for settings. Default is: + Übergeordnetes Verzeichnis, in dem Mixxx nach Einstellungen suchen soll. Standard ist: + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + Übergeordnetes Verzeichnis, in dem Mixxx nach seinen Ressourcendateien wie z. B. MIDI-Mappings suchen soll, wobei der Standard-Installationsort überschrieben wird. + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + Lässt Mixxx alle Controller-Daten, die es empfängt und Skript-Funktionen die es lädt anzeigen/protokollieren + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + Aktiviert den Entwicklermodus. Enthält zusätzliche Protokollinformationen, Statistiken zur Leistung und ein Menü für Entwicklerwerkzeuge. + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + Aktiviert den Safe-Modus. Deaktiviert OpenGL-Wellenformen und rotierende Vinyl-Widgets. Versuchen Sie diese Option, wenn Mixxx beim Starten abstürzt. + + + + [auto|always|never] Use colors on the console output. + [auto|always|never] Farbige Konsolenausgabe verwenden. + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + Legt die Ausführlichkeit der Befehlszeilenprotokollierung fest. +critical - Nur kritische/fatale Meldungen +warning - Wie oben + Warnungen +info - Wie oben + Informative Meldungen +debug - Wie oben + Debug-/Entwicklermeldungen +trace - Wie oben + Profiling-Meldungen + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + Bricht (SIGINT) Mixxx ab, wenn ein DEBUG_ASSERT zu false ausgewertet wird. Unter einem Debugger können Sie danach fortfahren. + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + Lädt die angegebene(n) Musikdatei(en) beim Start. Jede angegebene Datei wird in das nächste virtuelle Deck geladen. + + ColorPaletteEditor @@ -865,13 +948,13 @@ - + Set to full volume Auf volle Lautstärke setzen - + Set to zero volume Lautstärke auf Null setzen @@ -896,13 +979,13 @@ Rückwärts-Roll (Zensor) Taste - + Headphone listen button Kopfhörer-Taste - + Mute button Stummschalten-Taste @@ -918,25 +1001,25 @@ - + Mix orientation (e.g. left, right, center) Mix-Orientierung (z.B. Links, Rechts, Mitte) - + Set mix orientation to left Mix-Ausrichtung nach links setzen - + Set mix orientation to center Mix-Ausrichtung in die Mitte setzen - + Set mix orientation to right Mix-Ausrichtung nach rechts setzen @@ -980,36 +1063,6 @@ Toggle quantize mode Quantisierungs-Modus ein-/ausschalten - - - Increase internal master BPM by 1 - Interne Master-BPM um 1 erhöhen - - - - Decrease internal master BPM by 1 - Interne Master-BPM um 1 verringern - - - - Increase internal master BPM by 0.1 - Interne Master-BPM um 0,1 erhöhen - - - - Decrease internal master BPM by 0.1 - Interne Master-BPM um 0,1 verringern - - - - Toggle sync master - Synchronisations-Master ein-/ausschalten - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - 3-Status-Umschalter für Sync-Modus (AUS, FOLLOWER, MASTER) - One-time beat sync (tempo only) @@ -1021,7 +1074,7 @@ Einmalige Beat-Sync (Nur Phase) - + Toggle keylock mode Tonhöhensperre-Modus ein-/ausschalten @@ -1031,199 +1084,199 @@ Equalizer - + Vinyl Control Vinyl-Steuerung - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) Vinyl-Steuerung Cueing-Modus umschalten (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) Vinyl-Steuerung Modus umschalten (ABS/REL/CONST) - + Pass through external audio into the internal mixer Externe Audiosignale in den internen Mixer senden - + Cues Cues - + Cue button Cue-Taste - + Set cue point Cue-Punkt setzen - + Go to cue point Zu Cue-Punkt gehen - + Go to cue point and play Zu Cue-Punkt gehen und wiedergeben - + Go to cue point and stop Zum Cue-Punkt gehen und stoppen - + Preview from cue point Vorhören von Cue-Punkt - + Cue button (CDJ mode) Cue-Taste (CDJ-Modus) - + Stutter cue Stotter-Cue - + Hotcues Hotcues - + Set, preview from or jump to hotcue %1 Setzen, vorhören von oder springen zu Hotcue %1 - + Clear hotcue %1 Hotcue %1 löschen - + Set hotcue %1 Hotcue %1 setzen - + Jump to hotcue %1 Zu Hotcue %1 springen - + Jump to hotcue %1 and stop Zu Hotcue %1 springen und stoppen - + Jump to hotcue %1 and play Zu Hotcue %1 springen und wiedergeben - + Preview from hotcue %1 Vorhören von Hotcue %1 - - + + Hotcue %1 Hotcue %1 - + Looping Looping - + Loop In button Loop-In Taste - + Loop Out button Loop-Out Taste - + Loop Exit button Loop Beenden-Taste - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 32 - + 64 64 - + Move loop forward by %1 beats Loop um %1 Beats vorwärts verschieben - + Move loop backward by %1 beats Loop um %1 Beats rückwärts verschieben - + Create %1-beat loop %1-Beat Loop erzeugen - + Create temporary %1-beat loop roll Temporären %1-Beat Loop-Roll erzeugen - + Library Bibliothek @@ -1334,20 +1387,20 @@ - - + + Volume Fader Lautstärke-Fader - + Full Volume Volle Lautstärke - + Zero Volume Lautstärke Null @@ -1363,7 +1416,7 @@ - + Mute Stummschalten @@ -1374,7 +1427,7 @@ - + Headphone Listen Kopfhörer-Vorhören @@ -1395,25 +1448,25 @@ - + Orientation Orientierung - + Orient Left Links orientieren - + Orient Center Mittig orientieren - + Orient Right Rechts orientieren @@ -1512,52 +1565,6 @@ Sync Synchronisation - - - Sync Mode - Synchronisationsmodus - - - - Internal Sync Master - Interner Sync-Master - - - - Toggle Internal Sync Master - Internen Sync-Master ein-/ausschalten - - - - - Internal Master BPM - Interne Master-BPM - - - - Internal Master BPM +1 - Interne Master-BPM +1 - - - - Internal Master BPM -1 - Interne Master-BPM -1 - - - - Internal Master BPM +0.1 - Interne Master-BPM +0,1 - - - - Internal Master BPM -0.1 - Interne Master-BPM -0,1 - - - - Sync Master - Sync-Master - Beat Sync One-Shot @@ -1574,37 +1581,37 @@ Einmalige Phase-Sync - + Pitch control (does not affect tempo), center is original pitch Tonhöhensteuerung (verändert Tempo nicht), Mitte ist originale Tonhöhe - + Pitch Adjust Tonhöhenanpassung - + Adjust pitch from speed slider pitch Verändert die Tonhöhe, ausgehend von der Tonhöhe der Geschwindigkeits-Schieberegler - + Match musical key Tonart synchronisieren - + Match Key Tonart anpassen - + Reset Key Tonart zurücksetzen - + Resets key to original Auf Original-Tonart zurücksetzen @@ -1645,466 +1652,466 @@ Tiefen-Equalizer - + Toggle Vinyl Control Vinyl-Steuerung ein-/ausschalten - + Toggle Vinyl Control (ON/OFF) Vinyl-Steuerung ein-/ausschalten - + Vinyl Control Mode Vinyl-Steuerungsmodus - + Vinyl Control Cueing Mode Vinyl-Steuerung Cueing-Modus - + Vinyl Control Passthrough Vinyl-Steuerung Passthrough - + Vinyl Control Next Deck Vinyl-Steuerung nächstes Deck - + Single deck mode - Switch vinyl control to next deck Einzeldeck-Modus - Vinyl-Steuerung zum nächsten Deck wechseln - + Cue Cue - + Set Cue Cue setzen - + Go-To Cue Zum Cue gehen - + Go-To Cue And Play Zu Cue gehen und wiedergeben - + Go-To Cue And Stop Zum Cue gehen und stoppen - + Preview Cue Vorhören Cue - + Cue (CDJ Mode) Cue (CDJ-Modus) - + Stutter Cue Stotter-Cue - + Go to cue point and play after release Zu Cue-Punkt gehen und nach dem Loslassen wiedergeben - + Clear Hotcue %1 Hotcue %1 löschen - + Set Hotcue %1 Hotcue %1 setzen - + Jump To Hotcue %1 Zu Hotcue %1 springen - + Jump To Hotcue %1 And Stop Zu Hotcue %1 springen und stoppen - + Jump To Hotcue %1 And Play Zu Hotcue %1 springen und wiedergeben - + Preview Hotcue %1 Vorhören Hotcue %1 - + Loop In Loop In-Knopf - + Loop Out Loop-Out - + Loop Exit Loop beenden - + Reloop/Exit Loop Reloop/Loop beenden - + Loop Halve Loop halbieren - + Loop Double Loop verdoppeln - + 1/32 1/32 - + 1/16 1/16 - + 1/8 1/8 - + 1/4 1/4 - + Move Loop +%1 Beats Loop um +%1 Beats verschieben - + Move Loop -%1 Beats Loop um -%1 Beats verschieben - + Loop %1 Beats %1 Beats loopen - + Loop Roll %1 Beats Loop-Roll %1 Beats - + Add to Auto DJ Queue (bottom) Zur Auto-DJ Warteschlange hinzufügen (Ende) - + Append the selected track to the Auto DJ Queue Ausgewählten Track in Auto-DJ Warteschlange anstellen - + Add to Auto DJ Queue (top) Zur Auto-DJ Warteschlange hinzufügen (Anfang) - + Prepend selected track to the Auto DJ Queue Ausgewählten Track in Auto-DJ Warteschlange voranstellen - + Load Track Track laden - + Load selected track Ausgewählten Track laden - + Load selected track and play Ausgewählten Track laden und wiedergeben - - + + Record Mix Mix aufnehmen - + Toggle mix recording Mix-Aufnahme ein-/ausschalten - + Effects Effekte - + Quick Effects Quick-Effekte - + Deck %1 Quick Effect Super Knob Deck %1 Quick-Effekt Super-Drehregler - + Quick Effect Super Knob (control linked effect parameters) Quick-Effekt Super-Drehregler (Verknüpfte Effekt-Parameter steuern) - - + + Quick Effect Quick-Effekt - + Clear effect rack Effekt-Rack leeren - + Clear Effect Rack Effekt-Rack leeren - + Clear Unit Einheit leeren - + Clear effect unit Effekteinheit leeren - + Toggle Unit Einheit ein-/ausschalten - + Dry/Wet Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. Passt die Balance zwischen dem originalen (dry) und dem bearbeiteten (wet) Signal an. - + Super Knob Super-Drehregler - + Next Chain Nächste Effektkette - + Assign Zuweisen - + Clear Löschen - + Clear the current effect Aktuellen Effekt löschen - + Toggle Ein-/ausschalten - + Toggle the current effect Aktuellen Effekt ein-/ausschalten - + Next Nächster - + Switch to next effect Zum nächsten Effekt wechseln - + Previous Vorheriger - + Switch to the previous effect Zum vorherigen Effekt wechseln - + Next or Previous Nächster oder Vorheriger - + Switch to either next or previous effect Zum nächsten oder vorherigen Effekt wechseln - - + + Parameter Value Parameterwert - - + + Microphone Ducking Strength Mikrofon-Dämpfungsstärke - + Microphone Ducking Mode Mikrofon-Dämpfungsmodus - + Gain Verstärkung - + Gain knob Verstärkung-Regler - + Shuffle the content of the Auto DJ queue Den Inhalt der Auto-DJ Warteschlange zufällig wiedergeben - + Skip the next track in the Auto DJ queue Den nächsten Track in der Auto-DJ Warteschlange überspringen - + Auto DJ Toggle Auto-DJ Ein-/Ausschalter - + Toggle Auto DJ On/Off Auto-DJ ein-/ausschalten - + Microphone & Auxiliary Show/Hide Mikrofon & Aux ein-/ausblenden - + Show/hide the microphone & auxiliary section Mikrofon- & Aux-Bereich ein-/ausblenden - + 4 Effect Units Show/Hide 4 Effekteinheiten ein-/ausblenden - + Switches between showing 2 and 4 effect units Wechselt zwischen der Anzeige von 2 und 4 Effekteinheiten - + Mixer Show/Hide Mixer ein-/ausblenden - + Show or hide the mixer. Den Mixer anzeigen oder verbergen. - + Cover Art Show/Hide (Library) Cover-Bild ein-ausblenden (Bibliothek) - + Show/hide cover art in the library Cover-Bild in der Bibliothek ein-/ausblenden - + Library Maximize/Restore Bibliothek maximieren/wiederherstellen - + Maximize the track library to take up all the available screen space. Die Track-Bibliothek auf den verfügbaren Bildschirmplatz maximieren. - + Effect Rack Show/Hide Effekt-Rack ein-/ausblenden - + Show/hide the effect rack Effekt-Rack ein-/ausblenden - + Waveform Zoom Out Wellenform verkleinern @@ -2129,93 +2136,93 @@ Einmalige Beat-Sync von Tempo (und Phase bei aktivierter Quantisierung) - + Playback Speed Wiedergabegeschwindigkeit - + Playback speed control (Vinyl "Pitch" slider) Wiedergabegeschwindigkeit-Steuerelement (Vinyl-"Pitch"-Schieberegler) - + Pitch (Musical key) Pitch (Tonart) - + Increase Speed Geschwindigkeit erhöhen - + Adjust speed faster (coarse) Geschwindigkeit erhöhen (grob) - - + + Increase Speed (Fine) Geschwindigkeit erhöhen (fein) - + Adjust speed faster (fine) Geschwindigkeit erhöhen (fein) - + Decrease Speed Geschwindigkeit verringern - + Adjust speed slower (coarse) Geschwindigkeit verringern (grob) - + Adjust speed slower (fine) Geschwindigkeit verringern (fein) - + Temporarily Increase Speed Geschwindigkeit vorübergehend erhöhen - + Temporarily increase speed (coarse) Geschwindigkeit vorübergehend erhöhen (grob) - + Temporarily Increase Speed (Fine) Geschwindigkeit vorübergehend erhöhen (fein) - + Temporarily increase speed (fine) Geschwindigkeit vorübergehend erhöhen (fein) - + Temporarily Decrease Speed Geschwindigkeit vorübergehend verringern - + Temporarily decrease speed (coarse) Geschwindigkeit vorübergehend verringern (grob) - + Temporarily Decrease Speed (Fine) Vorübergehend die Geschwindigkeit verringern (fein) - + Temporarily decrease speed (fine) Vorübergehend die Geschwindigkeit verringern (fein) @@ -2272,806 +2279,872 @@ Sync / Sync-Sperre - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed Geschwindigkeit - + Pitch (Musical Key) Pitch (Tonart) - + Increase Pitch Tonhöhe erhöhen - + Increases the pitch by one semitone Erhöht die Tonhöhe um einen Halbton - + Increase Pitch (Fine) Tonhöhe erhöhen (Fein) - + Increases the pitch by 10 cents Erhöht die Tonhöhe um 10 Cent - + Decrease Pitch Tonhöhe verringern - + Decreases the pitch by one semitone Verringert die Tonhöhe um einen Halbton - + Decrease Pitch (Fine) Tonhöhe verringern (Fein) - + Decreases the pitch by 10 cents Verringert die Tonhöhe um 10 Cent - + Keylock Tonhöhensperre - + CUP (Cue + Play) CUP (Cue + Wiedergabe) - + Shift cue points earlier Cue-Punkte nach vorn verschieben - + Shift cue points 10 milliseconds earlier Cue-Punkte 10 Millisekunden nach vorn verschieben - + Shift cue points earlier (fine) Cue-Punkte nach vorn verschieben (fein) - + Shift cue points 1 millisecond earlier Cue-Punkte 1 Millisekunde nach vorn verschieben - + Shift cue points later Cue-Punkte nach hinten verschieben - + Shift cue points 10 milliseconds later Cue-Punkte 10 Millisekunden nach hinten verschieben - + Shift cue points later (fine) Cue-Punkte nach hinten verschieben (fein) - + Shift cue points 1 millisecond later Cue-Punkte 1 Millisekunde nach hinten verschieben - + Hotcues %1-%2 Hotcues %1-%2 - + Intro / Outro Markers Intro/Outro-Marker - + Intro Start Marker Intro Start-Marker - + Intro End Marker Intro End-Marker - + Outro Start Marker Outro Start-Marker - + Outro End Marker Outro End-Marker - + intro start marker Intro-Startmarker - + intro end marker Intro-Endmarker - + outro start marker Outro-Startmarker - + outro end marker Outro-Endmarker - + Activate %1 [intro/outro marker %1 aktivieren - + Jump to or set the %1 [intro/outro marker Springen zu oder setzen von %1 - + Set %1 [intro/outro marker %1 setzen - + Set or jump to the %1 [intro/outro marker Setzen von oder springen zu %1 - + Clear %1 [intro/outro marker %1 löschen - + Clear the %1 [intro/outro marker Löschen von %1 - + Loop Selected Beats Ausgewählte Beats loopen - + Create a beat loop of selected beat size Einen Beat-Loop der ausgewählten Beat-Länge erstellen - + Loop Roll Selected Beats Loop-Roll ausgewählte Beats - + Create a rolling beat loop of selected beat size Einen Beat-Loop-Roll der ausgewählten Beat-Länge erstellen - + Loop Beats Loop Beats - + Loop Roll Beats Loop-Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position Loop ein-/ausschalten und zum Loop-In Punkt springen, wenn sich der Loop hinter der Wiedergabeposition befindet - + Reloop And Stop Reloop und Stop - + Enable loop, jump to Loop In point, and stop Loop aktivieren, zum Loop-In Punkt springen und stoppen - + Halve the loop length Länge des Loops halbieren - + Double the loop length Länge des Loops verdoppeln - + Beat Jump / Loop Move Beat-Sprung / Loop verschieben - + Jump / Move Loop Forward %1 Beats Beat-Sprung / Loop verschieben %1 Beats vorwärts - + Jump / Move Loop Backward %1 Beats Beat-Sprung / Loop verschieben %1 Beats rückwärts - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats Um %1 Beats vorwärts springen, oder wenn ein Loop aktiviert ist, den Loop um %1 Beats vorwärts verschieben - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats Um %1 Beats rückwärts springen, oder wenn ein Loop aktiviert ist, den Loop um %1 Beats rückwärts verschieben - + Beat Jump / Loop Move Forward Selected Beats Beat-Sprung / Loop vorwärts verschieben um gewählte Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats Um die gewählte Anzahl von Beats vorwärts springen, oder wenn ein Loop aktiviert ist, den Loop um die gewählte Anzahl von Beats vorwärts verschieben - + Beat Jump / Loop Move Backward Selected Beats Beat-Sprung / Loop rückwärts verschieben um gewählte Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats Um die gewählte Anzahl von Beats rückwärts springen, oder wenn ein Loop aktiviert ist, den Loop um die gewählte Anzahl von Beats rückwärts verschieben - + Beat Jump / Loop Move Forward Beat-Sprung / Loop vorwärts verschieben - + Beat Jump / Loop Move Backward Beat-Sprung / Loop rückwärts verschieben - + Loop Move Forward Loop vorwärts verschieben - + Loop Move Backward Loop rückwärts verschieben - + Navigation Navigation - + Move up Nach oben bewegen - + Equivalent to pressing the UP key on the keyboard Entspricht dem Drücken der PFEIL HOCH-Taste auf der Tastatur - + Move down Nach unten bewegen - + Equivalent to pressing the DOWN key on the keyboard Entspricht dem Drücken der PFEIL RUNTER-Taste auf der Tastatur - + Move up/down Nach oben/unten bewegen - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys Mit einem Drehregler vertikal in beide Richtungen bewegen, entspricht dem Drücken der PFEIL HOCH/PFEIL RUNTER Tasten - + Scroll Up Nach oben scrollen - + Equivalent to pressing the PAGE UP key on the keyboard Entspricht dem Drücken der BILD HOCH-Taste auf der Tastatur - + Scroll Down Nach unten scrollen - + Equivalent to pressing the PAGE DOWN key on the keyboard Entspricht dem Drücken der BILD RUNTER-Taste auf der Tastatur - + Scroll up/down Nach oben/unten scrollen - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys Mit einem Drehregler vertikal in beide Richtungen scrollen, entspricht dem Drücken der BILD HOCH/BILD RUNTER Tasten - + Move left Nach links bewegen - + Equivalent to pressing the LEFT key on the keyboard Entspricht dem Drücken der PFEIL LINKS-Taste auf der Tastatur - + Move right Nach rechts bewegen - + Equivalent to pressing the RIGHT key on the keyboard Entspricht dem Drücken der PFEIL RECHTS-Taste auf der Tastatur - + Move left/right Nach links/rechts bewegen - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys Mit einem Drehregler horizontal in beide Richtungen bewegen, entspricht dem Drücken der PFEIL LINKS/PFEIL RECHTS Tasten - + Move focus to right pane Fokus in rechten Fensterausschnitt bewegen - + Equivalent to pressing the TAB key on the keyboard Entspricht dem Drücken der TAB-Taste auf der Tastatur - + Move focus to left pane Fokus in linken Fensterausschnitt bewegen - + Equivalent to pressing the SHIFT+TAB key on the keyboard Entspricht dem Drücken der UMSCHALT+TAB-Taste auf der Tastatur - + Move focus to right/left pane Fokus in rechten/linken Fensterausschnitt bewegen - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys Mit einem Drehregler den Fokus einen Fensterausschnitt nach links oder rechts bewegen, entspricht dem Drücken der TAB/UMSCHALT+TAB Tasten - + Go to the currently selected item Gehe zum aktuell ausgewählten Element - + Choose the currently selected item and advance forward one pane if appropriate Wähle das aktuell ausgewählte Element und gehe ggf. um ein Fensterausschnitt vor - + Load Track and Play Track laden und wiedergeben - + Add to Auto DJ Queue (replace) Zur Auto-DJ Warteschlange hinzufügen (Ersetzen) - + Replace Auto DJ Queue with selected tracks Auto-DJ Warteschlange mit ausgewählten Tracks ersetzen - + Select next search history Nächste Suchhistorie auswählen - + Selects the next search history entry Wählt den nächsten Eintrag der Suchhistorie aus - + Select previous search history Vorherige Suchhistorie auswählen - + Selects the previous search history entry Wählt den vorherigen Eintrag der Suchhistorie aus - + Move selected search entry Ausgewählten Sucheintrag verschieben - + Moves the selected search history item into given direction and steps Bewegt das ausgewählte Element der Suchhistorie in die angegebene Richtung und Schritte - + Deck %1 Quick Effect Enable Button Deck %1 Quick-Effekt Aktivierungstaste - + Quick Effect Enable Button Quick-Effekt Aktivierungstaste - + Enable or disable effect processing Aktivieren oder Deaktivieren der Effektverarbeitung - + Super Knob (control effects' Meta Knobs) Super-Drehregler (Meta-Drehregler der Effekte steuern) - + Mix Mode Toggle Mix-Modus-Umschalter - + Toggle effect unit between D/W and D+W modes Effekteinheit zwischen D/W und D+W-Modi umschalten - + Next chain preset Nächste Effektketten-Voreinstellung - + Previous Chain Vorherige Effektkette - + Previous chain preset Vorherige Effektketten-Voreinstellung - + Next/Previous Chain Nächste/Vorherige Effektkette - + Next or previous chain preset Nächste oder vorherige Effektketten-Voreinstellung - - + + Show Effect Parameters Effektparameter anzeigen - + Effect Unit Assignment Zuordnung Effekteinheit - + Meta Knob Meta-Drehregler - + Effect Meta Knob (control linked effect parameters) Effekt Meta-Drehregler (Verlinkte Effekt-Parameter steuern) - + Meta Knob Mode Meta-Drehregler-Modus - + Set how linked effect parameters change when turning the Meta Knob. Legt fest wie sich verknüpfte Effekt-Parameter ändern wenn der Meta-Drehregler gedreht wird. - + Meta Knob Mode Invert Meta-Drehregler-Modus invertieren - + Invert how linked effect parameters change when turning the Meta Knob. Invertiert wie sich verknüpfte Effekt-Parameter ändern wenn der Meta-Drehregler betätigt wird. - - + + Button Parameter Value Tasten-Parameterwert - + Microphone / Auxiliary Mikrofon / Aux - + Microphone On/Off Mikrofon ein-/ausschalten - + Microphone on/off Mikrofon ein-/ausschalten - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) Mikrofon-Dämpfungsmodus umschalten (AUS, AUTO, MANUELL) - + Auxiliary On/Off Aux ein-/ausschalten - + Auxiliary on/off Aux ein-/ausschalten - + Auto DJ Auto-DJ - + Auto DJ Shuffle Auto-DJ Zufallswiedergabe - + Auto DJ Skip Next Auto-DJ nächsten Track überspringen - + Auto DJ Add Random Track Auto-DJ zufälligen Track hinzufügen - + Add a random track to the Auto DJ queue Zufälligen Track zur Auto-DJ Warteschlange hinzufügen - + Auto DJ Fade To Next Auto-DJ zu nächstem Track überblenden - + Trigger the transition to the next track Löst die Überblendung zum nächsten Track aus - + User Interface Benutzeroberfläche - + Samplers Show/Hide Sampler ein-/ausblenden - + Show/hide the sampler section Sampler-Bereich ein-/ausblenden - + Start/Stop Live Broadcasting Starten/Stoppen der Liveübertragung - + Stream your mix over the Internet. Streamen Sie Ihren Mix über das Internet. - + Start/stop recording your mix. Starten/Stoppen Sie die Aufnahme Ihres Mixes. - - + + Samplers Sampler - + Vinyl Control Show/Hide Vinyl-Steuerung ein-/ausblenden - + Show/hide the vinyl control section Vinyl-Steuerung-Bereich ein-/ausblenden - + Preview Deck Show/Hide Vorhör-Deck ein-/ausblenden - + Show/hide the preview deck Vorhör-Deck ein-/ausblenden - + Toggle 4 Decks 4 Decks ein-/ausblenden - + Switches between showing 2 decks and 4 decks. Wechselt zwischen der Anzeige von 2 Decks und 4 Decks. - + Cover Art Show/Hide (Decks) Cover-Bild ein-/ausblenden (Decks) - + Show/hide cover art in the main decks Cover-Bild in den Decks ein-/ausblenden - + Vinyl Spinner Show/Hide Drehendes Vinyl ein-/ausblenden - + Show/hide spinning vinyl widget Drehendes Vinyl-Widget ein-/ausblenden - + Vinyl Spinners Show/Hide (All Decks) Drehendes Vinyl ein-/ausblenden (Alle Decks) - + Show/Hide all spinnies Drehendes Vinyl ein-/ausblenden - + Toggle Waveforms Wellenformen ein-/ausschalten - + Show/hide the scrolling waveforms. Laufende Wellenformen ein-/ausblenden. - + Waveform zoom Wellenform-Vergrößerung - + Waveform Zoom Wellenform-Vergrößerung - + Zoom waveform in Wellenform vergrößern - + Waveform Zoom In Wellenform vergrößern - + Zoom waveform out Wellenform verkleinern - + Star Rating Up Sterne-Bewertung hoch - + Increase the track rating by one star Erhöht die Bewertung des Tracks um einen Stern - + Star Rating Down Sterne-Bewertung runter - + Decrease the track rating by one star Verringert die Bewertung des Tracks um einen Stern @@ -3160,32 +3233,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. Die von diesem Controller-Mapping bereitgestellten Funktionen werden deaktiviert, bis das Problem behoben ist. - + You can ignore this error for this session but you may experience erratic behavior. Sie können den Fehler für diese Sitzung ignorieren, es kann aber zu unvorhergesehenem Verhalten kommen. - + Try to recover by resetting your controller. Versuchen Sie, Ihren Controller durch aus-/anschalten zurückzusetzen. - + Controller Mapping Error Fehler im Controller-Mapping - + The mapping for your controller "%1" is not working properly. Das Mapping für Ihren Controller "%1" funktioniert nicht richtig. - + The script code needs to be fixed. Der Skript-Code muss korrigiert werden. @@ -3221,133 +3294,133 @@ CrateFeature - + Remove Entfernen - - + + Create New Crate Neue Plattenkiste erstellen - + Rename Umbenennen - - + + Lock Sperren - + Export Crate as Playlist Plattenkiste als Wiedergabeliste exportieren - + Export Track Files Track-Dateien exportieren - + Duplicate Duplizieren - + Analyze entire Crate Gesamte Plattenkiste analysieren - + Auto DJ Track Source Auto-DJ Track-Quelle - + Enter new name for crate: Einen neuen Namen für Plattenkiste eingeben: - - + + Crates Plattenkisten - - + + Import Crate Plattenkiste importieren - + Export Crate Plattenkiste exportieren - + Unlock Entsperren - + An unknown error occurred while creating crate: Bei der Erstellung der Plattenkiste ist ein unbekannter Fehler aufgetreten: - + Rename Crate Plattenkiste umbenennen - - + + Export to Engine Prime Exportieren nach Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. Legen Sie eine Plattenkiste an für Ihren nächsten Auftritt, für Ihre liebsten Electro-House Track oder für Ihre am häufigsten nachgefragten Tracks. - - + + Renaming Crate Failed Umbenennen der Plattenkiste fehlgeschlagen - + Crate Creation Failed Erstellung der Plattenkiste fehlgeschlagen - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U-Wiedergabeliste (*.m3u);;M3U8-Wiedergabeliste (*.m3u8);;PLS-Wiedergabeliste (*.pls);;Text-CSV (*.csv);;Lesbarer Text (*.txt) - + Crates are a great way to help organize the music you want to DJ with. Plattenkisten sind eine gute Möglichkeit die Musik zu organisieren die Sie auflegen wollen. - + Crates let you organize your music however you'd like! Plattenkisten ermöglichen es Ihre Musik so zu organisieren wie Sie möchten! - + A crate cannot have a blank name. Der Name einer Plattenkiste darf nicht leer sein. - + A crate by that name already exists. Eine Plattenkiste mit diesem Namen existiert bereits. @@ -3417,39 +3490,39 @@ DlgAbout - + Mixxx %1.%2 Development Team Mixxx %1.%2 Entwicklerteam - + With contributions from: Mit Beiträgen von: - + And special thanks to: Und besonderen Dank an: - + Past Developers Frühere Entwickler - + Past Contributors Frühere Mitwirkende - + Official Website Offizielle Webseite - + Donate - + Spenden @@ -4917,32 +4990,32 @@ Einstellungen anwenden und fortfahren? DlgPrefControlsDlg - + Skin Skin - + Tool tips Kurzhilfen - + Select from different color schemes of a skin if available. Wählen Sie aus verschiedenen Farbschemata eines Skins, falls verfügbar. - + Color scheme Farbschema - + Locales determine country and language specific settings. Gebietsschemata bestimmen landes- und sprachspezifische Einstellungen. - + Locale Sprache @@ -4952,52 +5025,42 @@ Einstellungen anwenden und fortfahren? Benutzeroberfläche-Einstellungen - + HiDPI / Retina scaling HiDPI / Retina Skalierung - + Change the size of text, buttons, and other items. Die Größe von Text, Tasten und andere Elemente ändern. - - Adopt scale factor from the operating system - Skalierungsfaktor vom Betriebssystem übernehmen - - - - Auto Scaling - Automatische Skalierung - - - + Screen saver Bildschirmschoner - + Start in full-screen mode Startet im Vollbild-Modus - + Full-screen mode Vollbild-Modus - + Off Aus - + Library only Nur in Bibliothek - + Library and Skin Bibliothek und Skin @@ -5469,7 +5532,7 @@ Sie können jederzeit Tracks auf dem Bildschirm ziehen und ablegen, um ein Deck Main EQ - + Haupt-Equalizer @@ -5630,39 +5693,39 @@ Sie können jederzeit Tracks auf dem Bildschirm ziehen und ablegen, um ein Deck DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. Die minimale Größe des ausgewählten Skins ist größer als Ihre Bildschirmauflösung. - + Allow screensaver to run Bildschirmschoner erlauben - + Prevent screensaver from running Bildschirmschoner unterdrücken - + Prevent screensaver while playing Bildschirmschoner während der Wiedergabe unterdrücken - + This skin does not support color schemes Dieses Skin unterstützt keine Farbschemen - + Information Information - - Mixxx must be restarted before the new locale setting will take effect. - Mixxx muss neu gestartet werden, damit die neuen Spracheinstellungen wirksam werden. + + Mixxx must be restarted before the new locale or scaling settings will take effect. + @@ -5881,62 +5944,62 @@ und ermöglicht es Ihnen die Tonhöhe für harmonisches Mixen anzupassen. DlgPrefLibrary - + Music Directory Added Musikverzeichnis hinzugefügt - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? Sie haben ein oder mehrere Musikverzeichnisse hinzugefügt. Die Tracks in diesen Verzeichnissen werden nicht verfügbar sein, bis Sie Ihre Bibliothek erneut durchsuchen lassen. Möchten Sie jetzt erneut durchsuchen lassen? - + Scan Scannen - + Choose a music directory Wählen Sie ein Musik-Verzeichnis - + Confirm Directory Removal Entfernen des Verzeichnisses bestätigen - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. Mixxx wird dieses Verzeichnis nicht länger auf neue Tracks beobachten. Was möchten Sie mit den Tracks aus diesem Verzeichnis und dessen Unterverzeichnissen tun?<ul><li>Alle Tracks aus diesem Verzeichnis und dessen Unterverzeichnissen ausblenden.</li><li>Alle Metadaten für diese Tracks dauerhaft aus Mixxx löschen.</li><li>Tracks unverändert in Ihrer Bibliothek lassen.</li></ul>Ausblenden der Tracks speichert ihre Metadaten für den Fall, dass Sie diese zukünftig erneut hinzufügen. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. Metadaten beinhalten alle Track-Details (Interpret, Titel, Wiedergabezähler usw.) sowie Beatgrids, Hotcues und Loops. Diese Entscheidung betrifft nur die Mixxx-Bibliothek. Keine Dateien auf der Festplatte werden geändert oder gelöscht. - + Hide Tracks Tracks verbergen - + Delete Track Metadata Track-Metadaten löschen - + Leave Tracks Unchanged Tracks unverändert lassen - + Relink music directory to new location Musik-Verzeichnis an seinem neuen Speicherort neu verknüpfen - + Select Library Font Schriftart der Bibliothek auswählen @@ -6942,32 +7005,32 @@ Die Ziel-Lautheit ist ungefähr und nimmt an das Track-Vorverstärkung und Maste DlgPrefWaveform - + Filtered Gefiltert - + HSV HSV - + RGB RGB - + OpenGL not available OpenGL nicht verfügbar - + dropped frames ausgelassene Einzelbilder - + Cached waveforms occupy %1 MiB on disk. Zwischengespeicherte Wellenformen belegen %1 MiB auf der Festplatte. @@ -7183,72 +7246,72 @@ Wählen Sie aus verschiedenen Arten der Wellenform-Anzeige, welche sich in erste Bibliothek - + Interface Benutzeroberfläche - + Waveforms Wellenformen - + Auto DJ Auto-DJ - + Equalizers Equalizer - + Decks Decks - + Colors Farben - + Crossfader Crossfader - + Effects Effekte - + LV2 Plugins LV2-Plugins - + Recording Aufnehmen - + Beat Detection Beat-Erkennung - + Key Detection Tonart-Erkennung - + Normalization Normalisierung - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> <font color='#BB0000'><b>Einige Einstellungsseiten haben Fehler. Um die Änderungen anzuwenden, beheben Sie bitte zuerst die Fehler.</b></font> @@ -7258,12 +7321,12 @@ Wählen Sie aus verschiedenen Arten der Wellenform-Anzeige, welche sich in erste Vinyl-Steuerung - + Live Broadcasting Liveübertragung - + Modplug Decoder Modplug Dekodierer @@ -7404,123 +7467,123 @@ Wählen Sie aus verschiedenen Arten der Wellenform-Anzeige, welche sich in erste Wählen Sie die bestmögliche Übereinstimmung - - + + Track Track - - + + Year Jahr - + Title Titel - - + + Artist Interpret - - + + Album Album - + Album Artist Album-Interpret - + Fetching track data from the MusicBrainz database Track-Daten aus der MusicBrainz-Datenbank abrufen - + Mixxx could not find this track in the MusicBrainz database. Mixxx konnte diesen Track nicht in der MusicBrainz-Datenbank finden. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. API-Schlüssel anfordern - + Submit Submits audio fingerprints to the MusicBrainz database. Senden - + New Column Neue Spalte - + New Item Neues Element - + &Previous &Zurück - + &Next &Weiter - + &Apply &Anwenden - + &Close S&chließen - + Status: %1 Status: %1 - + HTTP Status: %1 HTTP Status: %1 - + Code: %1 Code: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx kann aus einem unbekannten Grund keine Verbindung zu %1 herstellen. - + Mixxx can't connect to %1. Mixxx kann sich nicht mit %1 verbinden. - + Original tags Original-Tags - + Suggested tags Vorgeschlagene Tags @@ -7914,17 +7977,17 @@ Das führt oft zu Beatgrids mit höherer Qualität, wird aber nicht so gut bei T EngineBuffer - + Soundtouch (faster) Soundtouch (schneller) - + Rubberband (better) Rubberband (besser) - + Unknown (bad value) Unbekannt (fehlerhafter Wert) @@ -8025,38 +8088,38 @@ Das führt oft zu Beatgrids mit höherer Qualität, wird aber nicht so gut bei T ITunesFeature - + iTunes iTunes - - + + Select your iTunes library Wählen Sie Ihre iTunes-Bibliothek - + (loading) iTunes (lade) iTunes - + Use Default Library Standard-Bibliothek verwenden - + Choose Library... Bibliothek auswählen … - + Error Loading iTunes Library Fehler beim Laden der iTunes-Bibliothek - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. Beim Laden der iTunes-Bibliothek ist ein Fehler aufgetreten. Einige Ihrer iTunes-Tracks oder Wiedergabelisten wurden möglicherweise nicht geladen. @@ -8064,13 +8127,13 @@ Das führt oft zu Beatgrids mit höherer Qualität, wird aber nicht so gut bei T LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. Abgesicherter Modus aktiviert - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8079,57 +8142,57 @@ support. Unterstützung. - + activate aktivieren - + toggle umschalten - + right rechts - + left links - + right small wenig rechts - + left small wenig links - + up hoch - + down runter - + up small wenig hoch - + down small wenig runter - + Shortcut Tastenkombination @@ -8150,22 +8213,22 @@ Unterstützung. LibraryFeature - + Import Playlist Wiedergabeliste importieren - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Wiedergabeliste-Dateien (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? Datei überschreiben? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8179,27 +8242,27 @@ Möchten Sie es wirklich überschreiben? LibraryScannerDlg - + Library Scanner Bibliothek-Scanner - + It's taking Mixxx a minute to scan your music library, please wait... Mixxx benötigt einen Moment um Ihre Musikbibliothek zu scannen, bitte warten … - + Cancel Abbrechen - + Scanning: Scannen: - + Scanning cover art (safe to cancel) Scanne Cover-Bilder (kann sicher abgebrochen werden) @@ -8316,185 +8379,185 @@ Möchten Sie es wirklich überschreiben? MixxxMainWindow - + Sound Device Busy Audiogerät beschäftigt - + <b>Retry</b> after closing the other application or reconnecting a sound device <b>Wiederholen</b> nach dem Schließen der anderen Anwendung oder dem erneuten Verbinden eines Audiogerätes - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. Mixxx's Audiogeräte-Einstellungen <b>neu konfigurieren</b>. - - + + Get <b>Help</b> from the Mixxx Wiki. Erhalten Sie <b>Hilfe</b> aus dem Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. Mixxx <b>beenden</b>. - + Retry Wiederholen - + skin Skin - - + + Reconfigure Neu konfigurieren - + Help Hilfe - - + + Exit Beenden - - + + Mixxx was unable to open all the configured sound devices. Mixxx konnte nicht alle konfigurierten Audiogeräte öffnen. - + Sound Device Error Audiogeräte-Fehler - + <b>Retry</b> after fixing an issue <b>Wiederholen</b> nach Fehlerbehebung - + No Output Devices Keine Ausgabegeräte - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. Mixxx wurde ohne Tonausgabe-Geräte konfiguriert. Die Audio-Verarbeitung wird ohne ein konfiguriertes Ausgabegerät deaktiviert werden. - + <b>Continue</b> without any outputs. <b>Weiter</b> ohne jegliche Ausgabegeräte. - + Continue Weiter - + Load track to Deck %1 Track in Deck %1 laden - + Deck %1 is currently playing a track. Deck %1 spielt derzeit einen Track. - + Are you sure you want to load a new track? Möchten Sie wirklich einen neuen Track laden? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. Es ist kein Eingabegerät für diese Vinyl-Steuerung ausgewählt. Bitte wählen Sie zuerst ein Eingabegerät in den Sound-Hardware-Einstellungen. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. Es ist kein Eingabegerät für diese Passthrough-Steuerung ausgewählt. Bitte wählen Sie zuerst ein Eingabegerät in den Sound-Hardware-Einstellungen. - + There is no input device selected for this microphone. Do you want to select an input device? Es ist kein Eingabegerät für dieses Mikrofon ausgewählt. Wollen Sie ein Eingabegerät auswählen? - + There is no input device selected for this auxiliary. Do you want to select an input device? Es ist kein Eingabegerät für diesen Aux ausgewählt. Wollen Sie ein Eingabegerät auswählen? - + Error in skin file Fehler in Skin-Datei - + The selected skin cannot be loaded. Das gewählte Skin kann nicht geladen werden. - + OpenGL Direct Rendering Direktes Rendern mit OpenGL - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. Direktes Rendern ist auf Ihrem System nicht aktiviert.<br><br>Dies bedeutet, dass die Wellenform-Anzeige sehr langsam sein wird <br><b>und möglicherweise Ihre CPU stark belastet</b>. Entweder aktualisieren Sie Ihre<br>Konfiguration, um direktes Rendern zu aktivieren oder deaktivieren<br>die Wellenform-Anzeige in den Mixxx-Einstellungen durch die Auswahl von<br>"Leer" als Wellenform-Anzeige im Bereich 'Benutzeroberfläche'. - - - + + + Confirm Exit Beenden bestätigen - + A deck is currently playing. Exit Mixxx? Ein Deck spielt derzeit. Mixxx beenden? - + A sampler is currently playing. Exit Mixxx? Ein Sampler spielt derzeit. Mixxx beenden? - + The preferences window is still open. Das Einstellungen-Fenster ist noch geöffnet. - + Discard any changes and exit Mixxx? Alle Änderungen verwerfen und Mixxx schließen? @@ -8567,43 +8630,43 @@ Wollen Sie ein Eingabegerät auswählen? PlaylistFeature - + Lock Sperren - + Playlists Wiedergabelisten - + Unlock Entsperren - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. Wiedergabelisten sind geordnete Listen von Tracks, mit denen Sie Ihre DJ-Sets planen können. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. Es kann notwendig sein, einige Tracks in Ihrer vorbereiteten Wiedergabeliste zu überspringen oder einige andere Tracks hinzuzufügen, um die Energie Ihres Publikums aufrechtzuerhalten. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. Einige DJs stellen Wiedergabelisten zusammen bevor sie live auftreten, während andere es bevorzugen sie nebenbei zu erstellen. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. Achten Sie bei der Verwendung einer Wiedergabeliste während einer Live-DJ-Set immer darauf wie das Publikum auf die von Ihnen gespielte Musik reagiert. - + Create New Playlist Neue Wiedergabeliste erstellen @@ -8611,59 +8674,59 @@ Wollen Sie ein Eingabegerät auswählen? QMessageBox - + Upgrading Mixxx Aktualisieren von Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? Mixxx unterstützt nun die Anzeige von Cover-Bildern. Willst du deine Bibliothek jetzt nach Cover-Dateien scannen? - + Scan Scannen - + Later Später - + Upgrading Mixxx from v1.9.x/1.10.x. Aktualisierung von Mixxx v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. Mixxx hat eine neue und verbesserte Beat-Erkennung. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. Wenn Sie Tracks laden, kann Mixxx diese erneut analysieren und neue, genauere Beatgrids erzeugen. Dadurch werden automatische Beat-Synchronisierung und Looping zuverlässiger funktionieren. - + This does not affect saved cues, hotcues, playlists, or crates. Dies hat keine Auswirkungen auf Cues, Hotcues, Wiedergabelisten oder Plattenkisten. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. Wenn Sie nicht wollen das Mixxx Ihre Tracks erneut analysiert, wählen Sie "Aktuelle Beatgrids erhalten". Sie können dies jederzeit im Bereich "Beat-Erkennung" in den Einstellungen ändern. - + Keep Current Beatgrids Aktuelle Beatgrids erhalten - + Generate New Beatgrids Neue Beatgrids erzeugen @@ -8847,7 +8910,7 @@ Willst du deine Bibliothek jetzt nach Cover-Dateien scannen? Die Verwendung von Opus bei anderen Abtastraten als 48 kHz wird vom Opus-Encoder nicht unterstützt. Bitte verwenden Sie 48000 Hz in den "Sound-Hardware"-Einstellungen oder wechseln Sie zu einer anderen Kodierung. - + Encoder Kodierer @@ -10003,12 +10066,12 @@ Ganz rechts: Ende der Effektperiode Überblendung des Rauschens mit dem unverarbeiteten Signal - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. <html>Mixxx kann ohne den FDK-AAC-Encoder nicht in AAC oder HE-AAC aufnehmen oder streamen. Um in AAC oder AAC+ aufnehmen oder streamen zu können, müssen Sie <b>2libfdk-aac2</b> herunterladen und auf Ihrem System installieren.</html> - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. Die installierte AAC-Kodierungsbibliothek unterstützt nicht HE-AAC, sondern nur einfaches AAC. Konfigurieren Sie in den Voreinstellungen ein anderes Kodierungsformat. @@ -10146,54 +10209,54 @@ Ganz rechts: Ende der Effektperiode RekordboxFeature - - - + + + Rekordbox Rekordbox - + Playlists Wiedergabelisten - + Folders Ordner - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: Liest Datenbanken, die für Pioneer CDJ / XDJ-Player mit dem Rekordbox Export-Modus exportiert wurden.<br/>Rekordbox kann nur auf USB- oder SD-Geräte mit einem FAT- oder HFS-Dateisystem exportieren.<br/>Mixxx kann eine Datenbank von jedem Gerät lesen, das die Datenbankordner enthält (<tt>PIONEER</tt> und <tt>Contents</tt>).<br/>Nicht unterstützt werden Rekordbox-Datenbanken, die auf ein externes Gerät verschoben wurden über<br/><i>Voreinstellungen > Erweitert > Datenbankverwaltung</i>.<br/><br/>Die folgenden Daten werden gelesen: - + Hot cues Hotcues - + Loops (only the first loop is currently usable in Mixxx) Loops (nur der erste Loop ist derzeit in Mixxx nutzbar) - + Check for attached Rekordbox USB / SD devices (refresh) Nach angeschlossenen USB / SD Rekordbox-Geräten suchen (aktualisieren) - + Beatgrids Beatgrids - + Memory cues Memory-Cues - + (loading) Rekordbox (lade) Rekordbox @@ -10202,7 +10265,7 @@ Ganz rechts: Ende der Effektperiode RhythmboxFeature - + Rhythmbox Rhythmbox @@ -10253,34 +10316,34 @@ Ganz rechts: Ende der Effektperiode SeratoFeature - - - + + + Serato Serato - + Reads the following from the Serato Music directory and removable devices: Liest Folgendes aus dem Serato Musik-Verzeichnis und von Wechseldatenträgern: - + Tracks Tracks - + Crates Plattenkisten - + Check for Serato databases (refresh) Nach Serato Datenbanken suchen (aktualisieren) - + (loading) Serato (lade) Serato @@ -10303,12 +10366,12 @@ Ganz rechts: Ende der Effektperiode Verlauf - + Unlock Entsperren - + Lock Sperren @@ -10630,7 +10693,7 @@ Ganz rechts: Ende der Effektperiode Double-click - + Doppelklick @@ -11267,6 +11330,31 @@ Ganz rechts: Ende der Effektperiode Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. Sendet das Audiosignal des gewählten Kanals zu dem in Einstellungen -> Sound-Hardware ausgewählten Kopfhörerausgang. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -11290,7 +11378,7 @@ Ganz rechts: Ende der Effektperiode Opens separate artwork viewer. - + Öffnet separate Cover-Bild Anzeige @@ -12412,12 +12500,12 @@ Verwenden Sie diese Option, um nur das verarbeitete (Wet) Signal mit EQ- und Fil Opens the track properties editor - + Öffnet den Editor der Track-Eigenschaften Opens the track context menu. - + Öffnet das Track-Kontextmenü @@ -12444,11 +12532,6 @@ Verwenden Sie diese Option, um nur das verarbeitete (Wet) Signal mit EQ- und Fil Old Synchronize Altes Synchronisieren - - - (This skin should be updated to use Master Sync!) - (Dieses Skin sollte aktualisiert werden, um Master-Sync zu verwenden!) - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12464,16 +12547,6 @@ Verwenden Sie diese Option, um nur das verarbeitete (Wet) Signal mit EQ- und Fil Decks can't sync to samplers and samplers can only sync to decks. Decks können nicht mit Samplern und Sampler nur mit Decks synchronisiert werden. - - - Enable Master Sync - Master-Sync aktivieren - - - - Tap to sync the tempo to other playing tracks or the master clock. - Tippen um das Tempo zu anderen spielenden Tracks oder der Master-Clock zu synchronisieren. - Hold for at least a second to enable sync lock for this deck. @@ -12489,16 +12562,6 @@ Verwenden Sie diese Option, um nur das verarbeitete (Wet) Signal mit EQ- und Fil Resets the key to the original track key. Tonart auf die Original-Tonart des Tracks zurücksetzen. - - - Enable Sync Clock Master - Sync-Clock-Master aktivieren - - - - When enabled, this device will serve as the master clock for all other decks. - Wenn aktiviert, wird dieses Gerät als Master-Clock für alle anderen Decks dienen. - Speed Control @@ -13052,22 +13115,22 @@ Verwenden Sie diese Option, um nur das verarbeitete (Wet) Signal mit EQ- und Fil TraktorFeature - + Traktor Traktor - + (loading) Traktor (lade) Traktor - + Error Loading Traktor Library Fehler beim Laden der Traktor-Bibliothek - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. Beim Laden der Traktor-Bibliothek ist ein Fehler aufgetreten. Einige Ihrer Traktor-Tracks oder Wiedergabelisten wurden möglicherweise nicht geladen. @@ -13679,20 +13742,20 @@ Verwenden Sie diese Option, um nur das verarbeitete (Wet) Signal mit EQ- und Fil Weiterleiten - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible Bereit zu spielen, analysiere … - - + + Loading track... Text on waveform overview when file is cached from source Track wird geladen … - + Finalizing... Text on waveform overview during finalizing of waveform analysis Fertigstellen … @@ -13863,9 +13926,9 @@ Verwenden Sie diese Option, um nur das verarbeitete (Wet) Signal mit EQ- und Fil Genre - - Folder - Ordner + + Directory + @@ -14107,155 +14170,160 @@ Verwenden Sie diese Option, um nur das verarbeitete (Wet) Signal mit EQ- und Fil BPM zurücksetzen - + + Update ReplayGain from Deck Gain + + + + Deck %1 Deck %1 - + Sampler %1 Sampler %1 - + Importing metadata of %n track(s) from file tags Importieren der Metadaten von %n Track aus Datei-TagsImportieren der Metadaten von %n Tracks aus Datei-Tags - + Marking metadata of %n track(s) to be exported into file tags Markieren der Metadaten von %n Track, die in Datei-Tags exportiert werden sollenMarkieren der Metadaten von %n Tracks, die in Datei-Tags exportiert werden sollen - - + + Create New Playlist Neue Wiedergabeliste erstellen - + Enter name for new playlist: Einen Namen für neue Wiedergabeliste eingeben: - + New Playlist Neue Wiedergabeliste - - - + + + Playlist Creation Failed Erstellung der Wiedergabeliste fehlgeschlagen - + A playlist by that name already exists. Eine Wiedergabeliste mit diesem Namen gibt es bereits. - + A playlist cannot have a blank name. Eine Wiedergabeliste muss einen Namen haben. - + An unknown error occurred while creating playlist: Beim Erstellen der Wiedergabeliste ist ein Fehler aufgetreten: - + Add to New Crate Zu neuer Plattenkiste hinzufügen - + Scaling BPM of %n track(s) Skalieren der BPM von %n TrackSkalieren der BPM von %n Tracks - + Locking BPM of %n track(s) Sperren der BPM von %n TrackSperren der BPM von %n Tracks - + Unlocking BPM of %n track(s) Entsperren der BPM von %n TrackEntsperren der BPM von %n Tracks - + Setting color of %n track(s) Setzen der Farbe von %n TrackSetzen der Farbe von %n Tracks - + Resetting play count of %n track(s) Zurücksetzen des Wiedergabezählers von %n TrackZurücksetzen des Wiedergabezählers von %n Tracks - + Resetting beats of %n track(s) Zurücksetzen der Beats von %n TrackZurücksetzen der Beats von %n Tracks - + Clearing rating of %n track(s) Löschen der Bewertung von %n TrackLöschen der Bewertung von %n Tracks - + Removing main cue from %n track(s) Entfernen des Cue-Punktes von %n TrackEntfernen des Cue-Punktes von %n Tracks - + Removing outro cue from %n track(s) Entfernen der Outro-Cues von %n TrackEntfernen der Outro-Cues von %n Tracks - + Removing intro cue from %n track(s) Entfernen der Intro-Cues von %n TrackEntfernen der Intro-Cues von %n Tracks - + Removing loop cues from %n track(s) Entfernen der Loop-Cues von %n TrackEntfernen der Loop-Cues von %n Tracks - + Removing hot cues from %n track(s) Entfernen der Hotcues von %n TrackEntfernen der Hotcues von %n Tracks - + Resetting keys of %n track(s) Zurücksetzen der Tonarten von %n TrackZurücksetzen der Tonarten von %n Tracks - + Resetting replay gain of %n track(s) Zurücksetzen des ReplayGain von %n TrackZurücksetzen des ReplayGain von %n Tracks - + Resetting waveform of %n track(s) Zurücksetzen der Wellenform von %n TrackZurücksetzen der Wellenform von %n Tracks - + Resetting all performance metadata of %n track(s) Zurücksetzen aller Leistungsmetadaten von %n TrackZurücksetzen aller Leistungsmetadaten von %n Tracks - + Setting cover art of %n track(s) Setzen des Cover-Bilds von %n TrackSetzen des Cover-Bilds von %n Tracks - + Reloading cover art of %n track(s) Cover-Bild von %n Track neu ladenCover-Bild von %n Tracks neu laden @@ -14263,7 +14331,7 @@ Verwenden Sie diese Option, um nur das verarbeitete (Wet) Signal mit EQ- und Fil WTrackTableView - + ESC Focus ESC @@ -14300,133 +14368,55 @@ Verwenden Sie diese Option, um nur das verarbeitete (Wet) Signal mit EQ- und Fil (GL ES) - - main - - - Starts Mixxx in full-screen mode - Startet Mixxx im Vollbild-Modus - - - - Use a custom locale for loading translations. (e.g 'fr') - Verwenden Sie ein benutzerdefiniertes Gebietsschema für das Laden von Übersetzungen (z.B. 'de') - - - - Top-level directory where Mixxx should look for settings. Default is: - Übergeordnetes Verzeichnis, in dem Mixxx nach Einstellungen suchen soll. Standard ist: - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - Übergeordnetes Verzeichnis, in dem Mixxx nach seinen Ressourcendateien wie z. B. MIDI-Mappings suchen soll, wobei der Standard-Installationsort überschrieben wird. - - - - Path the timeline is written to - Pfad, in den die Zeitleiste geschrieben wird - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - Lässt Mixxx alle Controller-Daten, die es empfängt und Skript-Funktionen die es lädt anzeigen/protokollieren - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - Aktiviert den Entwicklermodus. Enthält zusätzliche Protokollinformationen, Statistiken zur Leistung und ein Menü für Entwicklerwerkzeuge. - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - Aktiviert den Safe-Modus. Deaktiviert OpenGL-Wellenformen und rotierende Vinyl-Widgets. Versuchen Sie diese Option, wenn Mixxx beim Starten abstürzt. - - - - [auto|always|never] Use colors on the console output. - [auto|always|never] Farbige Konsolenausgabe verwenden. - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - Legt die Ausführlichkeit der Befehlszeilenprotokollierung fest. -critical - Nur kritische/fatale Meldungen -warning - Wie oben + Warnungen -info - Wie oben + Informative Meldungen -debug - Wie oben + Debug-/Entwicklermeldungen -trace - Wie oben + Profiling-Meldungen - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - Legt die Protokollierungsstufe fest, mit welcher der Protokollpuffer in mixxx.log geschrieben wird. LEVEL ist einer der oben unter --logLevel definierten Werte. - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - Bricht (SIGINT) Mixxx ab, wenn ein DEBUG_ASSERT zu false ausgewertet wird. Unter einem Debugger können Sie danach fortfahren. - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - Lädt die angegebene(n) Musikdatei(en) beim Start. Jede angegebene Datei wird in das nächste virtuelle Deck geladen. - - mixxx::CoreServices - + fonts Schriftarten - + database Datenbank - + effects Effekte - + audio interface Audio-Interface - + decks Decks - + library Bibliothek - + Choose music library directory Verzeichnis für die Musikbibliothek auswählen - + controllers Controller - + Cannot open database Kann Datenbank nicht öffnen - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14505,7 +14495,7 @@ Zum Beenden OK drücken. Im gewählten Verzeichnis existiert bereits eine Datenbank. Exportierte Tracks werden in diese Datenbank eingefügt. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. Im gewählten Verzeichnis ist bereits eine Datenbank vorhanden, aber es gab ein Problem beim Laden der Datenbank. Der Export ist in dieser Situation möglicherweise nicht erfolgreich. @@ -14562,62 +14552,62 @@ Zum Beenden OK drücken. mixxx::hid::DeviceCategory - + HID Interface %1: HID Gerät %1: - + Generic HID Pointer Standard HID Pointer - + Generic HID Mouse Standard HID Maus - + Generic HID Joystick Standard HID Joystick - + Generic HID Game Pad Standard HID Gamepad - + Generic HID Keyboard Standard HID Tastatur - + Generic HID Keypad Standard HID Keypad - + Generic HID Multi-axis Controller Standard HID Mehrachsen-Controller - + Unknown HID Desktop Device: Unbekanntes HID Desktop-Gerät: - + Apple HID Infrared Control Apple HID Infrarot-Steuerung - + Unknown Apple HID Device: Unbekanntes Apple HID Gerät: - + Unknown HID Device: Unbekanntes HID Gerät: @@ -14635,7 +14625,7 @@ Zum Beenden OK drücken. No effect loaded. - + Kein Effekt geladen. \ No newline at end of file diff --git a/res/translations/mixxx_de_DE.qm b/res/translations/mixxx_de_DE.qm new file mode 100644 index 0000000000000000000000000000000000000000..fbf8e41dcd0fdace0a6c2b622e8de20cae15129d GIT binary patch literal 23319 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 literal 0 HcmV?d00001 diff --git a/res/translations/mixxx_de_DE.ts b/res/translations/mixxx_de_DE.ts index 55c4658052c..b4f9b289210 100644 --- a/res/translations/mixxx_de_DE.ts +++ b/res/translations/mixxx_de_DE.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Kisten - + Remove Crate as Track Source Diese Kiste als Titel-Quelle enfernen - + Auto DJ Auto-DJ - + Add Crate as Track Source Kiste als Titel-Quelle hinzufügen @@ -43,24 +43,24 @@ BansheeFeature - + Banshee Banshee - - + + Error loading Banshee database Fehler beim Laden der Banshee-Datenbank - + Banshee database file not found at - + There was an error loading your Banshee database at Fehler beim Laden der Banshee-Datenbank bei @@ -70,32 +70,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Zu Auto-DJ-Liste hinzufügen (unten) - + Add to Auto DJ Queue (top) Zu Auto-DJ-Liste hinzufügen (oben) - + Add to Auto DJ Queue (replace) - + Import Playlist Abspielliste importieren - + Playlist Creation Failed Erstellen der Wiedergabeliste fehlgeschlagen - + An unknown error occurred while creating playlist: Ein unbekannter Fehler ist während des Erstellens der Plattenkiste aufgetreten: @@ -103,144 +103,144 @@ BasePlaylistFeature - + New Playlist Neue Wiedergabeliste - + Add to Auto DJ Queue (bottom) Zu Auto-DJ-Liste hinzufügen (unten) - - + + Create New Playlist Neue Wiedergabeliste erstellen - + Add to Auto DJ Queue (top) Zu Auto-DJ-Liste hinzufügen (oben) - + Remove Entfernen - + Rename Umbenennen - + Lock Sperren - + Duplicate Duplizieren - - + + Import Playlist Abspielliste importieren - + Export Track Files Musik-Dateien exportieren - + Analyze entire Playlist Gesamte Abspielliste analysieren - + Enter new name for playlist: Neuen Namen für Abspielliste eingeben: - + Duplicate Playlist Abspielliste duplizieren - - + + Enter name for new playlist: Gib einen Namen für die Wiedergabeliste ein: - - + + Export Playlist Abspielliste exportieren - + Add to Auto DJ Queue (replace) - + Rename Playlist Abspielliste umbenennen - - + + Renaming Playlist Failed Fehler beim Umbenennen der Abspielliste - - - + + + A playlist by that name already exists. Eine Wiedergabeliste mit diesem Namen existiert bereits. - - - + + + A playlist cannot have a blank name. Eine Wiedergabeliste muss einen Namen haben. - + _copy //: Appendix to default name when duplicating a playlist - - - - - - + + + + + + Playlist Creation Failed Erstellen der Wiedergabeliste fehlgeschlagen - - + + An unknown error occurred while creating playlist: Ein unbekannter Fehler ist während des Erstellens der Plattenkiste aufgetreten: - + M3U Playlist (*.m3u) M3U-Liste (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) @@ -261,7 +261,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Titel konnte nicht geladen werden. @@ -513,7 +513,7 @@ - + Computer @@ -533,7 +533,7 @@ - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -646,12 +646,12 @@ Datei erstellt - + Mixxx Library - + Could not load the following file because it is in use by Mixxx or another application. @@ -682,6 +682,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -864,13 +942,13 @@ - + Set to full volume - + Set to zero volume @@ -895,13 +973,13 @@ - + Headphone listen button - + Mute button @@ -917,25 +995,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -979,36 +1057,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1020,7 +1068,7 @@ - + Toggle keylock mode @@ -1030,199 +1078,199 @@ - + Vinyl Control Vinyl-Steuerung - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 32 - + 64 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library @@ -1333,20 +1381,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1362,7 +1410,7 @@ - + Mute @@ -1373,7 +1421,7 @@ - + Headphone Listen @@ -1394,25 +1442,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1511,52 +1559,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1573,37 +1575,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1644,466 +1646,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) Zu Auto-DJ-Liste hinzufügen (unten) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) Zu Auto-DJ-Liste hinzufügen (oben) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix Mix aufnehmen - + Toggle mix recording - + Effects Effekte - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next - + Switch to next effect - + Previous - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2128,93 +2130,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2271,806 +2273,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ Auto-DJ - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3159,32 +3227,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3220,133 +3288,133 @@ CrateFeature - + Remove Entfernen - - + + Create New Crate Erstelle neue Plattenkiste - + Rename Umbenennen - - + + Lock Sperren - + Export Crate as Playlist - + Export Track Files Musik-Dateien exportieren - + Duplicate Duplizieren - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates Kisten - - + + Import Crate - + Export Crate - + Unlock - + An unknown error occurred while creating crate: - + Rename Crate - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) - + Crates are a great way to help organize the music you want to DJ with. - + Crates let you organize your music however you'd like! - + A crate cannot have a blank name. Eine Plattenkiste muss einen Namen haben. - + A crate by that name already exists. Eine Plattenkiste mit diesem Namen existiert bereits. @@ -3416,37 +3484,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: Mit Beiträgen von: - + And special thanks to: Und besonderen Dank an: - + Past Developers Frühere Entwickler - + Past Contributors Frühere Beitragende - + Official Website - + Donate @@ -4876,32 +4944,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin - + Tool tips - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4911,52 +4979,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off - + Library only - + Library and Skin @@ -5567,38 +5625,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5817,62 +5875,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6876,32 +6934,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7115,72 +7173,72 @@ Select from different types of displays for the waveform, which differ primarily - + Interface - + Waveforms - + Auto DJ Auto-DJ - + Equalizers - + Decks - + Colors - + Crossfader Crossfader - + Effects Effekte - + LV2 Plugins - + Recording - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7190,12 +7248,12 @@ Select from different types of displays for the waveform, which differ primarily Vinyl-Steuerung - + Live Broadcasting Live-Übertragung - + Modplug Decoder @@ -7336,123 +7394,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Jahr - + Title Titel - - + + Artist Interpret - - + + Album Album - + Album Artist Album-Interpret - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7844,17 +7902,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7955,38 +8013,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7994,13 +8052,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8008,57 +8066,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut Kürzel @@ -8079,22 +8137,22 @@ support. LibraryFeature - + Import Playlist Abspielliste importieren - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8105,27 +8163,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8241,181 +8299,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry - + skin - - + + Reconfigure - + Help - - + + Exit - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8486,43 +8544,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Sperren - + Playlists - + Unlock - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist Neue Wiedergabeliste erstellen @@ -8530,58 +8588,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8765,7 +8823,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9891,12 +9949,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10034,54 +10092,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10090,7 +10148,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10141,34 +10199,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates Kisten - + Check for Serato databases (refresh) - + (loading) Serato @@ -10191,12 +10249,12 @@ Fully right: end of the effect period - + Unlock - + Lock Sperren @@ -11155,6 +11213,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12330,11 +12413,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12350,16 +12428,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12375,16 +12443,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12938,22 +12996,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13565,20 +13623,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13749,8 +13807,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Genre - - Folder + + Directory @@ -13993,155 +14051,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 - + Sampler %1 Sampler %1 zeigen - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Neue Wiedergabeliste erstellen - + Enter name for new playlist: Gib einen Namen für die Wiedergabeliste ein: - + New Playlist Neue Wiedergabeliste - - - + + + Playlist Creation Failed Erstellen der Wiedergabeliste fehlgeschlagen. - + A playlist by that name already exists. Eine Wiedergabeliste mit diesem Namen existiert bereits. - + A playlist cannot have a blank name. Eine Wiedergabeliste muss einen Namen haben. - + An unknown error occurred while creating playlist: Ein unbekannter Fehler ist während des Erstellens der Plattenkiste aufgetreten: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14149,7 +14212,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus Escape @@ -14186,128 +14249,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14383,7 +14373,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14440,62 +14430,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: @@ -14513,7 +14503,7 @@ Click OK to exit. No effect loaded. - + Kein Effekt geladen. \ No newline at end of file diff --git a/res/translations/mixxx_el.qm b/res/translations/mixxx_el.qm index 40a551bd1af9f513712d324447a1e899b3b3c53f..4e5112d1ad23d05b1d7a8649c64617496b04dd4c 100644 GIT binary patch delta 6642 zcmXY$c|c9+|HnViz31F>_lr=dj3g>rkX?+BQfcgpG?cBZjcqKKl2$b%6eGrxF(gLz zp^|E{g%-C)Ho^zhh`RvbgtFpzCU&WtV_H9N)9f?{^2Rjk1 zPvP8_%z5$y=tgu{3%V2a8q8U6>t}xl=C;+ICO!y_X9^+YFbbC$p0e71_{yNg6^nmAql;=I((OlJCY z{Lbu`aCU1?G`a^-Tr$y^nMR`DCDVZDOdHO+gt&UyL~ z=Mx(e-b1sAN)pvr*kdM%9x!9Gp_~g}l4vwd{C$;AylhKi|JC@?L=uOOf{M;?=FBH? zga?sb9A}TCoY(eozN#b9FAG{4XC{-61);ey)n+pJS`x?OLsIKGfA34;j67oBM3Yfm zlt47$JekM@UlNzV36tGPjK>S>iNviCsPlEsT?L#EE|a(mn%IKhcf-L}oFnnKTB3th zBpwVU3JoUl2%LEO7|!}a5(~nKtjBY@rE+e_HS)o=yPU7Lkk|;5SSNG3;X%`Nk)HF~ zax~=$lNKy4v`O zy7c@^lwCz#dPCwvB00gJTm|+(6T!;5&o+b}dI3Mmoy=UM6l|1pL$uY-~C|c0e4#-wJk|;d5m}qG!h3{LAN?=DbU9n=W3oTFjLadcY zDNB%rqN6xt1xnu{!0CpXX{1AMXh+H>A|E^2>HP;p??Ss?{6o}XKJC4LOr)Ph2k+vA zzuD8_X|sr4M9}H=aQA?3>93`Ipqdc6I2OPA9i~cKJoldqRomqeMK0xBJcRDrLa?EK z(DTv1BYif~n}xw}HaGg9^E48Z8tIGa1}}eVdNU7+y@JWzu|VZrCjS9B^_m^i9EZf? z7n#WfiM1Mc0lC+iSy^r)*7Y=Vum6FVMI!4RbO~->&jwE3gQBsU4YTb?RMC!2Jh+@# z_r5GVJ%yO6mdzF3BF+oIRv4^5!RE#eA!e1$7G7dRkK}0^BwJ(WXl875K;bydPW}iV zsEA^f(>!4b3)bjX2?d>GUrty;!&$PfTG;##SDDxS7|1hHHmvy`qV$fkzyuX)OqML{ zKPcp#r!2x!k7!7eEtpn8bfj7q+vGvC;Jqw9I0Zh@ozwNYnMUTiO}5P)^31;>+cx|S zQAB^)Z(HD0?NVj?m-Zzp?95rTM0WJfZRGYfvh&A25zWk&m2}!o)T2&TQm~omhd#2B ziZY^$TGqvBSqwG`sMWT^5CL%iaKIIen4zf>) zjz~mVvd{b5z%oIyrkn{x=M&}P^~G?FG`X|`iAVe-S2vjEtL55cM8}*^xqioLVj4fW zQynxgEK=^$7x`fF0{PI)V?X&{wlxpbufY`S^mI?3Pqor z$=}?xM{^P;e|vNXI-H||=!h45{VXVEP9#Rp1nv4N2-s2R_)8JKC|l?rf%{Ia6#Uw^ z!1D=0fWeQLHcFV0{SJMCLRg^2^TFGNAKsw5>JK)+!~%Tk-f;UPX(iS z;FQlN3ZHToSDVQ?Its~$r$J=_Li+f}=mTyG89rx`T7T!PzF;Qv*eYzDx0#s7C?P8w znn?Ig*q?~tp+?Smb2(oeG?O_E77nJoNAN@%F+l#X`6wJr#r?INK^au&49byDnt>f~ zy+_CiK^pk3pKx@+_ej}egfoX~h(`IC$=XjA&gFI?dU#eSmBHqABZO-x^UR}4sG1Uj zXdffoT!WOK=Eb>lgm5!$9RxLQ74GE*z(z^JqxI-?=I-TOvO=hP(*&owE4--O1n=G; zyf(tN7WafVbr7I`h|nOJSSh@VMq21{Rur$`zBSi5pR5!+d9OlQuQQW%aunT0!qn+0 zqDKaNXmhIAYtt@hGN8dcV3aBLKWT+b>>zpu>4`Sli=LZpiQZfm2ZiCr(N<F05aIPb}#YL&dh}zB-mvu&*R+NaV!Z1J0L5xd-Q(ZYI#vg$I zZC{zmT)T?N!;6V5e&Ⓢ@lLi|a$g14*D=fq0-apD4Z$XU;y(`egA$10IY> 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 diff --git a/res/translations/mixxx_el.ts b/res/translations/mixxx_el.ts index d361a678506..59e2c80b993 100644 --- a/res/translations/mixxx_el.ts +++ b/res/translations/mixxx_el.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Κιβώτια - + Remove Crate as Track Source Αφαίρεση κιβωτίου ως πηγή κομματιών - + Auto DJ Αυτόματος DJ - + Add Crate as Track Source Προσθήκη κιβωτίου ως πηγή κομματιών @@ -43,25 +43,25 @@ BansheeFeature - + Banshee Banshee - - + + Error loading Banshee database Σφάλμα κατά τη φόρτωση της βάσης δεδομένων Banshee - + Banshee database file not found at Δεν βρέθηκε η βάση δεδομένων Banshee σε - + There was an error loading your Banshee database at Υπήρξε κάποιο σφάλμα κατά τη φόρτωση της βάσης δεδομένων Banshee σε @@ -71,32 +71,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Προσθήκη στη λίστα του Αυτόματου DJ (στο τέλος) - + Add to Auto DJ Queue (top) Προσθήκη στη λίστα του Αυτόματου DJ (στην αρχή) - + Add to Auto DJ Queue (replace) Προσθήκη στη λίστα του Αυτόματου DJ (Αντικατάσταση) - + Import Playlist Εισαγωγή λίστας αναπαραγωγής - + Playlist Creation Failed Η δημιουργία λίστας αναπαραγωγής απέτυχε - + An unknown error occurred while creating playlist: Προέκυψε άγνωστο σφάλμα κατά τη δημιουργία λίστας: @@ -104,144 +104,144 @@ BasePlaylistFeature - + New Playlist Νέα Λίστα Αναπαραγωγής - + Add to Auto DJ Queue (bottom) Προσθήκη στη λίστα του Αυτόματου DJ (στο τέλος) - - + + Create New Playlist Δημιουργία νέας λίστας αναπαραγωγής - + Add to Auto DJ Queue (top) Προσθήκη στη λίστα του Αυτόματου DJ (στην αρχή) - + Remove Αφαίρεση - + Rename Μετονομασία - + Lock Κλείδωμα - + Duplicate Κλωνοποίηση - - + + Import Playlist Εισαγωγή λίστας αναπαραγωγής - + Export Track Files Εξαγωγή αρχείων ήχου - + Analyze entire Playlist Ανάλυση ολόκληρης της λίστας αναπαραγωγής - + Enter new name for playlist: Εισάγετε νέο όνομα για τη λίστα αναπαραγωγής: - + Duplicate Playlist Κλωνοποίηση λίστας αναπαραγωγής - - + + Enter name for new playlist: Εισάγετε όνομα για τη νέα λίστα αναπαραγωγής: - - + + Export Playlist Εξαγωγή λίστας αναπαραγωγής - + Add to Auto DJ Queue (replace) Προσθήκη στη λίστα του Αυτόματου DJ (Αντικατάσταση) - + Rename Playlist Μετονομασία λίστας αναπαραγωγής - - + + Renaming Playlist Failed Η μετονομασία της λίστας αναπαραγωγής απέτυχε - - - + + + A playlist by that name already exists. Μια λίστα αναπαραγωγής με αυτό το όνομα υπάρχει ήδη. - - - + + + A playlist cannot have a blank name. Η λίστα αναπαραγωγής δεν μπορεί να έχει κενό όνομα. - + _copy //: Appendix to default name when duplicating a playlist _αντίγραφο - - - - - - + + + + + + Playlist Creation Failed Η δημιουργία λίστας αναπαραγωγής απέτυχε - - + + An unknown error occurred while creating playlist: Προέκυψε άγνωστο σφάλμα κατά τη δημιουργία λίστας: - + M3U Playlist (*.m3u) Λίστα αναπαραγωγής M3U (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Λίστα αναπαραγωγής M3U (*.m3u);;Λίστα αναπαραγωγής M3U8 (*.m3u8);;Λίστα αναπαραγωγής PLS (*.pls);;Κείμενο CSV (*.csv);;Απλό κείμενο (*.txt) @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. H φόρτωση του κομματιού απέτυχε. @@ -514,7 +514,7 @@ - + Computer Υπολογιστής @@ -534,7 +534,7 @@ Σάρωση - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. Ο "Υπολογιστής" σας επιτρέπει την πλοήγηση σε, προβολή και φόρτωση κομματιών από φακέλους στο σκληρό σας δίσκο και τις εξωτερικές σας συσκευές. @@ -647,12 +647,12 @@ Δημιουργία αρχείου - + Mixxx Library Βιβλιοθήκη του Mixxx - + Could not load the following file because it is in use by Mixxx or another application. Αδυναμία φόρτωσης του ακόλουθου αρχείου λόγω χρήσης του από το Mixxx ή άλλη εφαρμογή. @@ -683,6 +683,84 @@ Το αρχείο '%1' είναι άδειο και δεν ήταν δυνατόν να φορτωθεί. + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -865,13 +943,13 @@ - + Set to full volume Ρύθμιση σε πλήρη ένταση - + Set to zero volume Ρύθμιση σε μηδενική ένταση @@ -896,13 +974,13 @@ Κουμπί αντίστροφης κύλισης (Λογοκρισία) - + Headphone listen button Κουμπί για ακρόαση ακουστικών - + Mute button Κουμπί σίγασης @@ -918,25 +996,25 @@ - + Mix orientation (e.g. left, right, center) Προσανατολισμός μείξης (π.χ. αρ., δεξ., κέντρο) - + Set mix orientation to left Ρύθμιση προσανατολισμού μείξης προς τα αριστερά - + Set mix orientation to center Ρύθμιση προσανατολισμού μείξης προς το κέντρο - + Set mix orientation to right Ρύθμιση προσανατολισμού μείξης προς τα δεξιά @@ -980,36 +1058,6 @@ Toggle quantize mode Ενεργ./Απενεργ. λειτουργίας κβαντισμού - - - Increase internal master BPM by 1 - Αύξηση εσωτερικού κύριου BPM κατά 1 - - - - Decrease internal master BPM by 1 - Μείωση εσωτερικού κύριου BPM κατά 1 - - - - Increase internal master BPM by 0.1 - Αύξηση εσωτερικού κύριου BPM κατά 0.1 - - - - Decrease internal master BPM by 0.1 - Μείωση εσωτερικού κύριου BPM κατά 0.1 - - - - Toggle sync master - Ενεργ./Απενεργ. κύριου συγχρονισμού - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - Μεταβολή λειτουργίας συγχρονισμού 3 καταστάσεων (ΑΝΕΝΕΡΓΟ, ΒΟΗΘΗΤΙΚΟ, ΚΥΡΙΟ) - One-time beat sync (tempo only) @@ -1022,7 +1070,7 @@ - + Toggle keylock mode Ενεργ./Απενεργ. λειτουργίας κλειδώματος ύψους @@ -1032,199 +1080,199 @@ Ισοσταθμιστές - + Vinyl Control Έλεγχος βινυλίου - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) Ενεργ./Απενεργ. λειτουργίας cueing ελέγχου-βινυλίου (ΑΝΕΝΕΡΓΟ/ΕΝΑ/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) Τρόπος ελέγχου-βινυλίου (ΑΠΟΛ/ΣΧΕΤ/ΣΤΑΘ) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping Επανάληψη - + Loop In button Κουμπί Εισόδου στην Επανάληψη - + Loop Out button Κουμπί Εξόδου από την Επανάληψη - + Loop Exit button Κουμπί για έξοδο από τον βρόχο (loop) - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 32 - + 64 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library Βιβλιοθήκη @@ -1335,20 +1383,20 @@ - - + + Volume Fader Ποτενσιόμετρο Έντασης - + Full Volume Πλήρης Ένταση - + Zero Volume Μηδενική ένταση @@ -1364,7 +1412,7 @@ - + Mute Σίγαση @@ -1375,7 +1423,7 @@ - + Headphone Listen @@ -1396,25 +1444,25 @@ - + Orientation Προσανατολισμός - + Orient Left - + Orient Center - + Orient Right @@ -1513,52 +1561,6 @@ Sync Συγχρονισμός - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - Εσωτερικό Κύριο BPM - - - - Internal Master BPM +1 - Εσωτερικό Κύριο BPM +1 - - - - Internal Master BPM -1 - Εσωτερικό Κύριο BPM -1 - - - - Internal Master BPM +0.1 - Εσωτερικό Κύριο BPM +0.1 - - - - Internal Master BPM -0.1 - Εσωτερικό Κύριο BPM -0.1 - - - - Sync Master - - Beat Sync One-Shot @@ -1575,37 +1577,37 @@ - + Pitch control (does not affect tempo), center is original pitch Έλεγχος τόνου (δεν επηρεάζει το ρυθμό), το κέντρο αντιστοιχεί στον αρχικό τόνο - + Pitch Adjust Ρύθμιση Τόνου - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1646,466 +1648,466 @@ Χαμηλός Ισοσταθμιστής - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 1/32 - + 1/16 1/16 - + 1/8 1/8 - + 1/4 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) Προσθήκη στη λίστα του Αυτόματου DJ (στο τέλος) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) Προσθήκη στη λίστα του Αυτόματου DJ (στην αρχή) - + Prepend selected track to the Auto DJ Queue - + Load Track Άνοιγμα κομματιού - + Load selected track Φόρτωση του διαλεγμένου κομματιού - + Load selected track and play Φόρτωση του επιλεγμένου κομματιού και αναπαραγωγή - - + + Record Mix Εγγραφή μίξης - + Toggle mix recording - + Effects Εφέ - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear Εκκαθάριση - + Clear the current effect - + Toggle - + Toggle the current effect - + Next Επόμενο - + Switch to next effect - + Previous Προηγούμενο - + Switch to the previous effect Εναλλαγή στο προηγούμενο εφέ - + Next or Previous Επόμενο ή Προηγούμενο - + Switch to either next or previous effect Εναλλαγή είτε στο επόμενο είτε στο προηγούμενο εφέ - - + + Parameter Value Τιμή Παραμέτρου - - + + Microphone Ducking Strength Ισχύς "Βύθισης" Μικροφώνου - + Microphone Ducking Mode Λειτουργία "Βύθισης" Μικροφώνου - + Gain Ενίσχυση - + Gain knob Κουμπί ρύθμισης του gain - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle Εναλλαγή Aυτόματου DJ - + Toggle Auto DJ On/Off Θέστε τον Αυτόματο DJ εντός/εκτός λειτουργίας - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore Μεγιστοποίηση/Επαναφορά Βιβλιοθήκης - + Maximize the track library to take up all the available screen space. Μεγιστοποίηση της βιλιοθήκης αρχείων ώστε να καταλαμβάνει ολόκληρο τον διαθέσιμο χώρο της οθόνης - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2130,93 +2132,93 @@ - + Playback Speed Ταχύτητα αναπαραγωγής - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed Αύξηση ταχύτητας - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) Αύξηση Ταχύτητας (Ακριβής) - + Adjust speed faster (fine) - + Decrease Speed Ελάττωση ταχύτητας - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed Προσωρινή αύξηση ταχύτητας - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed Προσωρινή μείωση ταχύτητας - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2273,806 +2275,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) Προσθήκη στη λίστα του Αυτόματου DJ (Αντικατάσταση) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off Μικρόφωνο ανοιχτό/κλειστό - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ Αυτόματος DJ - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track Ενεργοποίηση μετάβασης στο επόμενο κομμάτι - + User Interface Διεπαφή χρήστη - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section Εμφάνιση/ Απόκρυψη ενότητας για τον έλεγχο βινυλίου - + Preview Deck Show/Hide - + Show/hide the preview deck Εμφάνιση/ Απόκρυψη του deck προεπισκόπησης - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3161,32 +3229,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3222,133 +3290,133 @@ CrateFeature - + Remove Αφαίρεση - - + + Create New Crate - + Rename Μετονομασία - - + + Lock Κλείδωμα - + Export Crate as Playlist - + Export Track Files Εξαγωγή αρχείων ήχου - + Duplicate Κλωνοποίηση - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates Κιβώτια - - + + Import Crate Εισαγωγή Κιβωτίου - + Export Crate Εξαγωγή Κιβωτίου - + Unlock Ξεκλείδωμα - + An unknown error occurred while creating crate: Προκλήθηκε άγνωστο σφάλμα κατά την δημιουργία του κιβωτίου: - + Rename Crate Μετονομασία Κιβωτίου - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed Η Μετονομασία του Κιβωτίου Απέτυχε - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Λίστα αναπαραγωγής M3U (*.m3u);;Λίστα αναπαραγωγής M3U8 (*.m3u8);;Λίστα αναπαραγωγής PLS (*.pls);;Κείμενο CSV (*.csv);;Απλό κείμενο (*.txt) - + Crates are a great way to help organize the music you want to DJ with. Τα κιβώτια ειναι ενας φοβερός τρόπος που βοηθάει την οργάνωση της μουσικής που θέλετε να αναπαράγετε - + Crates let you organize your music however you'd like! Τα κιβώτια σας επιτρέπουν να οργανώσετε τη μουσική σας όπως σας αρέσει! - + A crate cannot have a blank name. Το όνομα ενός Κιβωτίου δε μπορεί να είναι Κενό - + A crate by that name already exists. Υπάρχει ήδη κιβώτιο με αυτό το όνομα. @@ -3418,37 +3486,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4879,32 +4947,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin Skin - + Tool tips Tool tips - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale Γλώσσα @@ -4914,52 +4982,42 @@ Apply settings and continue? Προτιμήσεις Διεπαφής - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off Κλειστό - + Library only - + Library and Skin @@ -5570,38 +5628,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information Πληροφορίες - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5820,62 +5878,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added Προστέθηκε Μουσικός Κατάλογος - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? Προσθέσατε έναν ή περισσότερους μουσικούς καταλόγους. Τα κομμάτια σε αυτούς τους καταλόγους δεν θα είναι διαθέσιμα μέχρι να επανασαρωθεί η συλλογή σας. Θέλετε να γίνει τώρα επανασάρωση; - + Scan Σάρωση - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6879,32 +6937,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered Φιλτραρισμένη - + HSV HSV - + RGB RGB - + OpenGL not available Η OpenGL δεν είναι διαθέσιμη - + dropped frames απορριφθέντα καρέ - + Cached waveforms occupy %1 MiB on disk. @@ -7118,72 +7176,72 @@ Select from different types of displays for the waveform, which differ primarily Βιβλιοθήκη - + Interface Διεπαφή - + Waveforms - + Auto DJ Αυτόματος DJ - + Equalizers Ισοσταθμιστές - + Decks - + Colors - + Crossfader Crossfader - + Effects Εφέ - + LV2 Plugins - + Recording Ηχογράφηση - + Beat Detection - + Key Detection - + Normalization Κανονικοποίηση - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7193,12 +7251,12 @@ Select from different types of displays for the waveform, which differ primarily Έλεγχος βινυλίου - + Live Broadcasting Ζωντανή Εκπομπή - + Modplug Decoder @@ -7339,123 +7397,123 @@ Select from different types of displays for the waveform, which differ primarily Επιλογή καλύτερου δυνατού ως ταίρι - - + + Track Κομμάτι - - + + Year Έτος - + Title Τίτλος - - + + Artist Καλλιτέχνης - - + + Album Άλμπουμ - + Album Artist Καλλιτέχνης δίσκου - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply &Εφαρμογή - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7847,17 +7905,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7958,38 +8016,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes iTunes - - + + Select your iTunes library Επιλέξτε την συλλογή του iTunes σας - + (loading) iTunes (φορτώνεται) iTunes - + Use Default Library Χρησιμοποιήστε την Προεπιλεγμένη Συλλογή - + Choose Library... Επιλέξτε Συλλογή - + Error Loading iTunes Library Σφάλμα στην Φόρτωση της Συλλογής του iTunes - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. Προκλήθηκε ένα σφάλμα κατά την φόρτωση της συλλογής του iTunes. Κάποια από τα κομμάτια ή τις λίστες αναπαραγωγής του iTunes μπορεί να μη φορτώθηκαν. @@ -7997,13 +8055,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8011,57 +8069,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8082,22 +8140,22 @@ support. LibraryFeature - + Import Playlist Εισαγωγή λίστας αναπαραγωγής - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Αρχεία Λίστας (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8108,27 +8166,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Σαρωτής της Συλλογής - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel Άκυρο - + Scanning: - + Scanning cover art (safe to cancel) @@ -8244,181 +8302,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy Συσκευή Ήχου Απασχολημένη - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry Επανάληψη - + skin - - + + Reconfigure Επαναρύθμιση - + Help Βοήθεια - - + + Exit Έξοδος - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue Συνέχεια - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file Σφάλμα στο αρχείο skin - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Επιβεβαίωση εξόδου - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. Το παράθυρο επιλογών είναι ακόμα ανοιχτό - + Discard any changes and exit Mixxx? Απαλοιφή αλλαγών και έξοδος του Mixxx; @@ -8489,43 +8547,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Κλείδωμα - + Playlists Λίστες Αναπαραγωγής - + Unlock Ξεκλείδωμα - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist Δημιουργία νέας λίστας αναπαραγωγής @@ -8533,58 +8591,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx Γίνεται αναβάθμιση του Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Σάρωση - + Later Αργότερα - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8768,7 +8826,7 @@ Do you want to scan your library for cover files now? - + Encoder Κωδικοποιητής @@ -9894,12 +9952,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10037,54 +10095,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists Λίστες Αναπαραγωγής - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10093,7 +10151,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox Rhythmbox @@ -10144,34 +10202,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates Κιβώτια - + Check for Serato databases (refresh) - + (loading) Serato @@ -10194,12 +10252,12 @@ Fully right: end of the effect period Ιστορικό - + Unlock Ξεκλείδωμα - + Lock Κλείδωμα @@ -11158,6 +11216,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12333,11 +12416,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12353,16 +12431,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12378,16 +12446,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12941,22 +12999,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor Traktor - + (loading) Traktor (φορτώνεται) Traktor - + Error Loading Traktor Library Σφάλμα Φόρτωσης της Συλλογής του Traktor - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. Προκλήθηκε ένα σφάλμα κατά την ανάγνωση της συλλογής του Traktor. Κάποια από τα κομμάτια ή τις λίστες αναπαραγωγής του Traktor μπορεί να μη φορτώθηκαν. @@ -13568,20 +13626,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Διέλευση - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13752,8 +13810,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Είδος - - Folder + + Directory @@ -13996,155 +14054,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 Deck %1 - + Sampler %1 Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Δημιουργία νέας λίστας αναπαραγωγής - + Enter name for new playlist: Εισάγετε όνομα για τη νέα λίστα αναπαραγωγής: - + New Playlist Νέα Λίστα Αναπαραγωγής - - - + + + Playlist Creation Failed Η δημιουργία λίστας αναπαραγωγής απέτυχε - + A playlist by that name already exists. Μια λίστα αναπαραγωγής με αυτό το όνομα υπάρχει ήδη. - + A playlist cannot have a blank name. Η λίστα αναπαραγωγής δεν μπορεί να έχει κενό όνομα. - + An unknown error occurred while creating playlist: Προέκυψε άγνωστο σφάλμα κατά τη δημιουργία λίστας: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14152,7 +14215,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14189,128 +14252,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory Επιλογή καταλόγου μουσικής συλλογής - + controllers - + Cannot open database Αδυναμία ανοίγματος της βάσης δεδομένων - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14389,7 +14379,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14446,62 +14436,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_el_GR.ts b/res/translations/mixxx_el_GR.ts index d492306d933..82e419847fd 100644 --- a/res/translations/mixxx_el_GR.ts +++ b/res/translations/mixxx_el_GR.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Κιβώτια - + Remove Crate as Track Source Αφαίρεσε το πακέτο από τις πηγές ήχου - + Auto DJ Αυτόματος DJ - + Add Crate as Track Source Πρόσεθεσε το πακέτο στις πηγές ήχου @@ -43,25 +43,25 @@ BansheeFeature - + Banshee εφαρμογή Banshee - - + + Error loading Banshee database Καποιο λάθος συνέβη κατα τη φορτωση της βασης δεδομενων Banshee. - + Banshee database file not found at Δέν βρέθηκε το αρχείο δεδομένων Banshee σε - + There was an error loading your Banshee database at Καποιο λάθος συνέβη κατα τη φορτωση της βασης δεδομενων Banshee σε @@ -71,33 +71,33 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Προσθήκη στη σειρά προτεραιότητας Auto DJ (τέλος) - + Add to Auto DJ Queue (top) Προσθήκη στη σειρά προτεραιότητας Auto DJ (κορυφή) - + Add to Auto DJ Queue (replace) - + Import Playlist Εισαγωγή λίστας Αναπαραγωγής - Playlist - + Playlist Creation Failed Απέτυχε η κατασκευή λίστας Αναπαραγωγής. - + An unknown error occurred while creating playlist: Ενα αγνωστο λάθος παρουσιάστηκε κατα την κατασκευή της λιστας αναπαραγωγής @@ -105,145 +105,145 @@ BasePlaylistFeature - + New Playlist Νέα λίστα Αναπαραγωγής - Playlist - + Add to Auto DJ Queue (bottom) Προσθήκη στη σειρά προτεραιότητας Auto DJ (τέλος) - - + + Create New Playlist Δημιουργία Νέας λίστας Αναπαραγωγής - Playlist - + Add to Auto DJ Queue (top) Προσθήκη στη σειρά προτεραιότητας Auto DJ (κορυφή) - + Remove Διαγραφή - + Rename Μετονομασία - + Lock Κλείδωμα - + Duplicate Διπλότυπο - - + + Import Playlist Εισαγωγή λίστας Αναπαραγωγής - Playlist - + Export Track Files - + Analyze entire Playlist Ανάλυση Ολόκληρης της λίστας Αναπαραγωγής - + Enter new name for playlist: Δώσε το νέο όνομα της λίστας αναπαραγωγής: - + Duplicate Playlist Διπλότυπη λίστα Αναπαραγωγής - - + + Enter name for new playlist: Δώσε το όνομα για νέα λιστα αναπαραγωγής: - - + + Export Playlist Εξαγωγή της λίστας Αναπαργωγής - + Add to Auto DJ Queue (replace) - + Rename Playlist Μετονομασία της λίστας Αναπαραγωγής - - + + Renaming Playlist Failed Απέτυχε η Μετονομασία της λίστας Αναπαραγωγής - - - + + + A playlist by that name already exists. Μία λίστα αναπαραγωγής με αυτό το όνομα υπάρχει ήδη. - - - + + + A playlist cannot have a blank name. Μια λίστα αναπαραγωγής δεν μπορεί να εχει κενό όνομα. - + _copy //: Appendix to default name when duplicating a playlist _αντιγραφή - - - - - - + + + + + + Playlist Creation Failed Απέτυχε η κατασκευή λίστας Αναπαραγωγής. - - + + An unknown error occurred while creating playlist: Ενα αγνωστο λάθος παρουσιάστηκε κατα την κατασκευή της λιστας αναπαραγωγής - + M3U Playlist (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) @@ -264,7 +264,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Αδύνατο να φόρτωθεί το συγκεκριμένο κομμάτι. @@ -516,7 +516,7 @@ - + Computer @@ -536,7 +536,7 @@ - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -649,12 +649,12 @@ - + Mixxx Library - + Could not load the following file because it is in use by Mixxx or another application. @@ -685,6 +685,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -867,13 +945,13 @@ - + Set to full volume - + Set to zero volume @@ -898,13 +976,13 @@ - + Headphone listen button - + Mute button @@ -920,25 +998,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -982,36 +1060,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1023,7 +1071,7 @@ - + Toggle keylock mode @@ -1033,199 +1081,199 @@ - + Vinyl Control - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 - + 1 - + 2 - + 4 - + 8 - + 16 - + 32 - + 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library @@ -1336,20 +1384,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1365,7 +1413,7 @@ - + Mute @@ -1376,7 +1424,7 @@ - + Headphone Listen @@ -1397,25 +1445,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1514,52 +1562,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1576,37 +1578,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1647,467 +1649,467 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) Προσθήκη στη σειρά προτεραιότητας Auto DJ (τέλος) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) Προσθήκη στη σειρά προτεραιότητας Auto DJ (κορυφή) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix - + Toggle mix recording - + Effects - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next - + Switch to next effect - + Previous - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2132,93 +2134,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2275,806 +2277,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ Αυτόματος DJ - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3163,32 +3231,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3224,133 +3292,133 @@ CrateFeature - + Remove Διαγραφή - - + + Create New Crate - + Rename Μετονομασία - - + + Lock Κλείδωμα - + Export Crate as Playlist - + Export Track Files - + Duplicate Διπλότυπο - + Analyze entire Crate Ανάλυση ολόκληρου του Κιβώτιου - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates Κιβώτια - - + + Import Crate Εισαγωγή Κιβώτιου - + Export Crate Εξαγωγή Κιβωτίου - + Unlock Ξεκλείδωμα - + An unknown error occurred while creating crate: Ένα άγνωστο λάθος προκλήθηκε κατά την δημιουργία του κιβωτίου: - + Rename Crate Μετονομασία Κιβωτίου - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed Η Μετονομασία του Κιβωτίου Απέτυχε. - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) - + Crates are a great way to help organize the music you want to DJ with. - + Crates let you organize your music however you'd like! - + A crate cannot have a blank name. - + A crate by that name already exists. @@ -3420,37 +3488,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4880,32 +4948,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin - + Tool tips - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4915,52 +4983,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off - + Library only - + Library and Skin @@ -5571,38 +5629,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5821,62 +5879,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6880,32 +6938,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7119,72 +7177,72 @@ Select from different types of displays for the waveform, which differ primarily - + Interface - + Waveforms - + Auto DJ Αυτόματος DJ - + Equalizers - + Decks - + Colors - + Crossfader - + Effects - + LV2 Plugins - + Recording - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7194,12 +7252,12 @@ Select from different types of displays for the waveform, which differ primarily - + Live Broadcasting - + Modplug Decoder @@ -7340,123 +7398,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Έτος - + Title Τίτλος - - + + Artist Καλιτέχνης - - + + Album Άλμπουμ - + Album Artist Καλιτέχνης του Αλμπουμ - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7848,17 +7906,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7959,38 +8017,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7998,13 +8056,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8012,57 +8070,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8083,22 +8141,22 @@ support. LibraryFeature - + Import Playlist Εισαγωγή λίστας Αναπαραγωγής - Playlist - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8109,27 +8167,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8245,181 +8303,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry - + skin - - + + Reconfigure - + Help - - + + Exit - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8490,43 +8548,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Κλείδωμα - + Playlists - + Unlock Ξεκλείδωμα - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist Δημιουργία Νέας λίστας Αναπαραγωγής - Playlist @@ -8534,58 +8592,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8769,7 +8827,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9895,12 +9953,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10038,54 +10096,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10094,7 +10152,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10145,34 +10203,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates Κιβώτια - + Check for Serato databases (refresh) - + (loading) Serato @@ -10195,12 +10253,12 @@ Fully right: end of the effect period - + Unlock Ξεκλείδωμα - + Lock Κλείδωμα @@ -11159,6 +11217,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12334,11 +12417,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12354,16 +12432,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12379,16 +12447,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12942,22 +13000,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13569,20 +13627,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13753,8 +13811,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Είδος - - Folder + + Directory @@ -13998,155 +14056,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 - + Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Δημιουργία Νέας λίστας Αναπαραγωγής - Playlist - + Enter name for new playlist: Δώσε το όνομα για νέα λιστα αναπαραγωγής: - + New Playlist Νέα λίστα Αναπαραγωγής - Playlist - - - + + + Playlist Creation Failed Απέτυχε η κατασκευή λίστας Αναπαραγωγής. - + A playlist by that name already exists. Μία λίστα αναπαραγωγής με αυτό το όνομα υπάρχει ήδη. - + A playlist cannot have a blank name. Μια λίστα αναπαραγωγής δεν μπορεί να εχει κενό όνομα. - + An unknown error occurred while creating playlist: Ενα αγνωστο λάθος παρουσιάστηκε κατα την κατασκευή της λιστας αναπαραγωγής - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14154,7 +14217,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14191,128 +14254,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14388,7 +14378,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14445,62 +14435,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_en_GB.qm b/res/translations/mixxx_en_GB.qm index 46ad7d18800b551aab30529b89fa61a94c34927b..e52fb095ed999cac51d07bc79f8bffb17ff2dfb1 100644 GIT binary patch delta 19102 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 delta 21442 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 AutoDJFeature - + Crates Crates - + Remove Crate as Track Source Remove Crate as Track Source - + Auto DJ Auto DJ - + Add Crate as Track Source Add Crate as Track Source @@ -43,25 +43,25 @@ BansheeFeature - + Banshee Banshee - - + + Error loading Banshee database Error loading Banshee database - + Banshee database file not found at Banshee database file not found at - + There was an error loading your Banshee database at There was an error loading your Banshee database at @@ -71,32 +71,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Add to Auto DJ Queue (bottom) - + Add to Auto DJ Queue (top) Add to Auto DJ Queue (top) - + Add to Auto DJ Queue (replace) Add to Auto DJ Queue (replace) - + Import Playlist Import Playlist - + Playlist Creation Failed Playlist Creation Failed - + An unknown error occurred while creating playlist: An unknown error occurred while creating playlist: @@ -104,144 +104,144 @@ BasePlaylistFeature - + New Playlist New Playlist - + Add to Auto DJ Queue (bottom) Add to Auto DJ Queue (bottom) - - + + Create New Playlist Create New Playlist - + Add to Auto DJ Queue (top) Add to Auto DJ Queue (top) - + Remove Remove - + Rename Rename - + Lock Lock - + Duplicate Duplicate - - + + Import Playlist Import Playlist - + Export Track Files Export Track Files - + Analyze entire Playlist Analyse entire Playlist - + Enter new name for playlist: Enter new name for playlist: - + Duplicate Playlist Duplicate Playlist - - + + Enter name for new playlist: Enter name for new playlist: - - + + Export Playlist Export Playlist - + Add to Auto DJ Queue (replace) Add to Auto DJ Queue (replace) - + Rename Playlist Rename Playlist - - + + Renaming Playlist Failed Renaming Playlist Failed - - - + + + A playlist by that name already exists. A playlist by that name already exists. - - - + + + A playlist cannot have a blank name. A playlist cannot have a blank name. - + _copy //: Appendix to default name when duplicating a playlist _copy - - - - - - + + + + + + Playlist Creation Failed Playlist Creation Failed - - + + An unknown error occurred while creating playlist: An unknown error occurred while creating playlist: - + M3U Playlist (*.m3u) M3U Playlist (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U Playlist (*.m3u);; M3U8 Playlist (*.m3u8);; PLS Playlist (*.pls);; Text CSV (*.csv);; Readable Text (*.txt) @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Couldn't load track. @@ -514,7 +514,7 @@ - + Computer Computer @@ -534,7 +534,7 @@ Scan - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -647,12 +647,12 @@ File Created - + Mixxx Library Mixxx Library - + Could not load the following file because it is in use by Mixxx or another application. Could not load the following file because it is in use by Mixxx or another application. @@ -683,6 +683,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -865,13 +943,13 @@ - + Set to full volume Set to full volume - + Set to zero volume Set to zero volume @@ -896,13 +974,13 @@ Reverse roll (Censor) button - + Headphone listen button Headphone listen button - + Mute button Mute button @@ -918,25 +996,25 @@ - + Mix orientation (e.g. left, right, center) Mix orientation (e.g. left, right, center) - + Set mix orientation to left Set mix orientation to left - + Set mix orientation to center Set mix orientation to center - + Set mix orientation to right Set mix orientation to right @@ -980,36 +1058,6 @@ Toggle quantize mode Toggle quantize mode - - - Increase internal master BPM by 1 - Increase internal master BPM by 1 - - - - Decrease internal master BPM by 1 - Decrease internal master BPM by 1 - - - - Increase internal master BPM by 0.1 - Increase internal master BPM by 0.1 - - - - Decrease internal master BPM by 0.1 - Decrease internal master BPM by 0.1 - - - - Toggle sync master - Toggle sync master - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - One-time beat sync (tempo only) @@ -1021,7 +1069,7 @@ One-time beat sync (phase only) - + Toggle keylock mode Toggle keylock mode @@ -1031,199 +1079,199 @@ Equalizers - + Vinyl Control Vinyl Control - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer Pass through external audio into the internal mixer - + Cues Cues - + Cue button Cue button - + Set cue point Set cue point - + Go to cue point Go to cue point - + Go to cue point and play Go to cue point and play - + Go to cue point and stop Go to cue point and stop - + Preview from cue point Preview from cue point - + Cue button (CDJ mode) Cue button (CDJ mode) - + Stutter cue Stutter cue - + Hotcues Hotcues - + Set, preview from or jump to hotcue %1 Set, preview from or jump to hotcue %1 - + Clear hotcue %1 Clear hotcue %1 - + Set hotcue %1 Set hotcue %1 - + Jump to hotcue %1 Jump to hotcue %1 - + Jump to hotcue %1 and stop Jump to hotcue %1 and stop - + Jump to hotcue %1 and play Jump to hotcue %1 and play - + Preview from hotcue %1 Preview from hotcue %1 - - + + Hotcue %1 Hotcue %1 - + Looping Looping - + Loop In button Loop In button - + Loop Out button Loop Out button - + Loop Exit button Loop Exit button - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 32 - + 64 64 - + Move loop forward by %1 beats Move loop forward by %1 beats - + Move loop backward by %1 beats Move loop backward by %1 beats - + Create %1-beat loop Create %1-beat loop - + Create temporary %1-beat loop roll Create temporary %1-beat loop roll - + Library Library @@ -1334,20 +1382,20 @@ - - + + Volume Fader Volume Fader - + Full Volume Full Volume - + Zero Volume Zero Volume @@ -1363,7 +1411,7 @@ - + Mute Mute @@ -1374,7 +1422,7 @@ - + Headphone Listen Headphone Listen @@ -1395,25 +1443,25 @@ - + Orientation Orientation - + Orient Left Orient Left - + Orient Center Orient Center - + Orient Right Orient Right @@ -1512,52 +1560,6 @@ Sync Sync - - - Sync Mode - Sync Mode - - - - Internal Sync Master - Internal Sync Master - - - - Toggle Internal Sync Master - Toggle Internal Sync Master - - - - - Internal Master BPM - Internal Master BPM - - - - Internal Master BPM +1 - Internal Master BPM +1 - - - - Internal Master BPM -1 - Internal Master BPM -1 - - - - Internal Master BPM +0.1 - Internal Master BPM +0.1 - - - - Internal Master BPM -0.1 - Internal Master BPM -0.1 - - - - Sync Master - Sync Master - Beat Sync One-Shot @@ -1574,37 +1576,37 @@ Sync Phase One-Shot - + Pitch control (does not affect tempo), center is original pitch Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust Pitch Adjust - + Adjust pitch from speed slider pitch Adjust pitch from speed slider pitch - + Match musical key Match musical key - + Match Key Match Key - + Reset Key Reset Key - + Resets key to original Resets key to original @@ -1645,466 +1647,466 @@ Low EQ - + Toggle Vinyl Control Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode Vinyl Control Mode - + Vinyl Control Cueing Mode Vinyl Control Cueing Mode - + Vinyl Control Passthrough Vinyl Control Passthrough - + Vinyl Control Next Deck Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck Single deck mode - Switch vinyl control to next deck - + Cue Cue - + Set Cue Set Cue - + Go-To Cue Go-To Cue - + Go-To Cue And Play Go-To Cue And Play - + Go-To Cue And Stop Go-To Cue And Stop - + Preview Cue Preview Cue - + Cue (CDJ Mode) Cue (CDJ Mode) - + Stutter Cue Stutter Cue - + Go to cue point and play after release Go to cue point and play after release - + Clear Hotcue %1 Clear Hotcue %1 - + Set Hotcue %1 Set Hotcue %1 - + Jump To Hotcue %1 Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play Jump To Hotcue %1 And Play - + Preview Hotcue %1 Preview Hotcue %1 - + Loop In Loop In - + Loop Out Loop Out - + Loop Exit Loop Exit - + Reloop/Exit Loop Reloop/Exit Loop - + Loop Halve Loop Halve - + Loop Double Loop Double - + 1/32 1/32 - + 1/16 1/16 - + 1/8 1/8 - + 1/4 1/4 - + Move Loop +%1 Beats Move Loop +%1 Beats - + Move Loop -%1 Beats Move Loop -%1 Beats - + Loop %1 Beats Loop %1 Beats - + Loop Roll %1 Beats Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) Add to Auto DJ Queue (bottom) - + Append the selected track to the Auto DJ Queue Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) Add to Auto DJ Queue (top) - + Prepend selected track to the Auto DJ Queue Prepend selected track to the Auto DJ Queue - + Load Track Load Track - + Load selected track Load selected track - + Load selected track and play Load selected track and play - - + + Record Mix Record Mix - + Toggle mix recording Toggle mix recording - + Effects Effects - + Quick Effects Quick Effects - + Deck %1 Quick Effect Super Knob Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect Quick Effect - + Clear effect rack Clear effect rack - + Clear Effect Rack Clear Effect Rack - + Clear Unit Clear Unit - + Clear effect unit Clear effect unit - + Toggle Unit Toggle Unit - + Dry/Wet Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob Super Knob - + Next Chain Next Chain - + Assign Assign - + Clear Clear - + Clear the current effect Clear the current effect - + Toggle Toggle - + Toggle the current effect Toggle the current effect - + Next Next - + Switch to next effect Switch to next effect - + Previous Previous - + Switch to the previous effect Switch to the previous effect - + Next or Previous Next or Previous - + Switch to either next or previous effect Switch to either next or previous effect - - + + Parameter Value Parameter Value - - + + Microphone Ducking Strength Microphone Ducking Strength - + Microphone Ducking Mode Microphone Ducking Mode - + Gain Gain - + Gain knob Gain knob - + Shuffle the content of the Auto DJ queue Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue Skip the next track in the Auto DJ queue - + Auto DJ Toggle Auto DJ Toggle - + Toggle Auto DJ On/Off Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore Library Maximize/Restore - + Maximize the track library to take up all the available screen space. Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide Effect Rack Show/Hide - + Show/hide the effect rack Show/hide the effect rack - + Waveform Zoom Out Waveform Zoom Out @@ -2129,93 +2131,93 @@ One-time beat sync tempo (and phase with quantize enabled) - + Playback Speed Playback Speed - + Playback speed control (Vinyl "Pitch" slider) Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) Pitch (Musical key) - + Increase Speed Increase Speed - + Adjust speed faster (coarse) Adjust speed faster (coarse) - - + + Increase Speed (Fine) Increase Speed (Fine) - + Adjust speed faster (fine) Adjust speed faster (fine) - + Decrease Speed Decrease Speed - + Adjust speed slower (coarse) Adjust speed slower (coarse) - + Adjust speed slower (fine) Adjust speed slower (fine) - + Temporarily Increase Speed Temporarily Increase Speed - + Temporarily increase speed (coarse) Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) Temporarily increase speed (fine) - + Temporarily Decrease Speed Temporarily Decrease Speed - + Temporarily decrease speed (coarse) Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) Temporarily decrease speed (fine) @@ -2272,806 +2274,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock Keylock - + CUP (Cue + Play) CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker Intro Start Marker - + Intro End Marker Intro End Marker - + Outro Start Marker Outro Start Marker - + Outro End Marker Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats Loop Selected Beats - + Create a beat loop of selected beat size Create a beat loop of selected beat size - + Loop Roll Selected Beats Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop Reloop And Stop - + Enable loop, jump to Loop In point, and stop Enable loop, jump to Loop In point, and stop - + Halve the loop length Halve the loop length - + Double the loop length Double the loop length - + Beat Jump / Loop Move Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation Navigation - + Move up Move up - + Equivalent to pressing the UP key on the keyboard Equivalent to pressing the UP key on the keyboard - + Move down Move down - + Equivalent to pressing the DOWN key on the keyboard Equivalent to pressing the DOWN key on the keyboard - + Move up/down Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left Move left - + Equivalent to pressing the LEFT key on the keyboard Equivalent to pressing the LEFT key on the keyboard - + Move right Move right - + Equivalent to pressing the RIGHT key on the keyboard Equivalent to pressing the RIGHT key on the keyboard - + Move left/right Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button Quick Effect Enable Button - + Enable or disable effect processing Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes Toggle effect unit between D/W and D+W modes - + Next chain preset Next chain preset - + Previous Chain Previous Chain - + Previous chain preset Previous chain preset - + Next/Previous Chain Next/Previous Chain - + Next or previous chain preset Next or previous chain preset - - + + Show Effect Parameters Show Effect Parameters - + Effect Unit Assignment - + Meta Knob Meta Knob - + Effect Meta Knob (control linked effect parameters) Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary Microphone / Auxiliary - + Microphone On/Off Microphone On/Off - + Microphone on/off Microphone on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off Auxiliary On/Off - + Auxiliary on/off Auxiliary on/off - + Auto DJ Auto DJ - + Auto DJ Shuffle Auto DJ Shuffle - + Auto DJ Skip Next Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next Auto DJ Fade To Next - + Trigger the transition to the next track Trigger the transition to the next track - + User Interface User Interface - + Samplers Show/Hide Samplers Show/Hide - + Show/hide the sampler section Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide Vinyl Control Show/Hide - + Show/hide the vinyl control section Show/hide the vinyl control section - + Preview Deck Show/Hide Preview Deck Show/Hide - + Show/hide the preview deck Show/hide the preview deck - + Toggle 4 Decks Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom Waveform zoom - + Waveform Zoom Waveform Zoom - + Zoom waveform in Zoom waveform in - + Waveform Zoom In Waveform Zoom In - + Zoom waveform out Zoom waveform out - + Star Rating Up Star Rating Up - + Increase the track rating by one star Increase the track rating by one star - + Star Rating Down Star Rating Down - + Decrease the track rating by one star Decrease the track rating by one star @@ -3160,32 +3228,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. The script code needs to be fixed. @@ -3221,133 +3289,133 @@ CrateFeature - + Remove Remove - - + + Create New Crate Create New Crate - + Rename Rename - - + + Lock Lock - + Export Crate as Playlist - + Export Track Files Export Track Files - + Duplicate Duplicate - + Analyze entire Crate Analyse entire Crate - + Auto DJ Track Source Auto DJ Track Source - + Enter new name for crate: Enter new name for crate: - - + + Crates Crates - - + + Import Crate Import Crate - + Export Crate Export Crate - + Unlock Unlock - + An unknown error occurred while creating crate: An unknown error occurred while creating crate: - + Rename Crate Rename Crate - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed Renaming Crate Failed - + Crate Creation Failed Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U Playlist (*.m3u);; M3U8 Playlist (*.m3u8);; PLS Playlist (*.pls);; Text CSV (*.csv);; Readable Text (*.txt) - + Crates are a great way to help organize the music you want to DJ with. Crates are a great way to help organize the music you want to DJ with. - + Crates let you organize your music however you'd like! Crates let you organize your music however you'd like! - + A crate cannot have a blank name. A crate cannot have a blank name. - + A crate by that name already exists. A crate by that name already exists. @@ -3417,37 +3485,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: With contributions from: - + And special thanks to: And special thanks to: - + Past Developers Past Developers - + Past Contributors Past Contributors - + Official Website - + Donate @@ -4912,32 +4980,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin Skin - + Tool tips Tool tips - + Select from different color schemes of a skin if available. Select from different color schemes of a skin if available. - + Color scheme Color scheme - + Locales determine country and language specific settings. Locales determine country and language specific settings. - + Locale Locale @@ -4947,52 +5015,42 @@ Apply settings and continue? Interface Preferences - + HiDPI / Retina scaling HiDPI / Retina scaling - + Change the size of text, buttons, and other items. Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - Adopt scale factor from the operating system - - - - Auto Scaling - Auto Scaling - - - + Screen saver Screen saver - + Start in full-screen mode Start in full-screen mode - + Full-screen mode Full-screen mode - + Off Off - + Library only Library only - + Library and Skin Library and Skin @@ -5626,39 +5684,39 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run Allow screensaver to run - + Prevent screensaver from running Prevent screensaver from running - + Prevent screensaver while playing Prevent screensaver while playing - + This skin does not support color schemes This skin does not support color schemes - + Information Information - - Mixxx must be restarted before the new locale setting will take effect. - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. + @@ -5876,62 +5934,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added Music Directory Added - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan Scan - + Choose a music directory Choose a music directory - + Confirm Directory Removal Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories? <ul><li>Hide all tracks from this directory and subdirectories.</li> <li>Delete all metadata for these tracks from Mixxx permanently.</li> <li>Leave the tracks unchanged in your library.</li></ul> Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks Hide Tracks - + Delete Track Metadata Delete Track Metadata - + Leave Tracks Unchanged Leave Tracks Unchanged - + Relink music directory to new location Relink music directory to new location - + Select Library Font Select Library Font @@ -6937,32 +6995,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered Filtered - + HSV HSV - + RGB RGB - + OpenGL not available OpenGL not available - + dropped frames dropped frames - + Cached waveforms occupy %1 MiB on disk. Cached waveforms occupy %1 MiB on disk. @@ -7178,72 +7236,72 @@ Select from different types of displays for the waveform, which differ primarily Library - + Interface Interface - + Waveforms Waveforms - + Auto DJ Auto DJ - + Equalizers Equalizers - + Decks Decks - + Colors Colors - + Crossfader Crossfader - + Effects Effects - + LV2 Plugins LV2 Plugins - + Recording Recording - + Beat Detection Beat Detection - + Key Detection Key Detection - + Normalization Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7253,12 +7311,12 @@ Select from different types of displays for the waveform, which differ primarily Vinyl Control - + Live Broadcasting Live Broadcasting - + Modplug Decoder Modplug Decoder @@ -7399,123 +7457,123 @@ Select from different types of displays for the waveform, which differ primarily Select best possible match - - + + Track Track - - + + Year Year - + Title Title - - + + Artist Artist - - + + Album Album - + Album Artist Album Artist - + Fetching track data from the MusicBrainz database Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. Get API-Key - + Submit Submits audio fingerprints to the MusicBrainz database. Submit - + New Column New Column - + New Item New Item - + &Previous &Previous - + &Next &Next - + &Apply &Apply - + &Close &Close - + Status: %1 Status: %1 - + HTTP Status: %1 HTTP Status: %1 - + Code: %1 Code: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. Mixxx can't connect to %1. - + Original tags Original tags - + Suggested tags Suggested tags @@ -7907,17 +7965,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) Soundtouch (faster) - + Rubberband (better) Rubberband (better) - + Unknown (bad value) Unknown (bad value) @@ -8018,38 +8076,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes iTunes - - + + Select your iTunes library Select your iTunes library - + (loading) iTunes (loading) iTunes - + Use Default Library Use Default Library - + Choose Library... Choose Library... - + Error Loading iTunes Library Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -8057,13 +8115,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. Safe Mode Enabled - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8072,57 +8130,57 @@ support. support. - + activate activate - + toggle toggle - + right right - + left left - + right small right small - + left small left small - + up up - + down down - + up small up small - + down small down small - + Shortcut Shortcut @@ -8143,22 +8201,22 @@ support. LibraryFeature - + Import Playlist Import Playlist - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Playlist Files (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8172,27 +8230,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... It's taking Mixxx a minute to scan your music library, please wait... - + Cancel Cancel - + Scanning: Scanning: - + Scanning cover art (safe to cancel) Scanning cover art (safe to cancel) @@ -8309,185 +8367,185 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. <b>Exit</b> Mixxx. - + Retry Retry - + skin - - + + Reconfigure Reconfigure - + Help Help - - + + Exit Exit - - + + Mixxx was unable to open all the configured sound devices. Mixxx was unable to open all the configured sound devices. - + Sound Device Error Sound Device Error - + <b>Retry</b> after fixing an issue <b>Retry</b> after fixing an issue - + No Output Devices No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. <b>Continue</b> without any outputs. - + Continue Continue - + Load track to Deck %1 Load track to Deck %1 - + Deck %1 is currently playing a track. Deck %1 is currently playing a track. - + Are you sure you want to load a new track? Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file Error in skin file - + The selected skin cannot be loaded. The selected skin cannot be loaded. - + OpenGL Direct Rendering OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Confirm Exit - + A deck is currently playing. Exit Mixxx? A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. The preferences window is still open. - + Discard any changes and exit Mixxx? Discard any changes and exit Mixxx? @@ -8560,43 +8618,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Lock - + Playlists Playlists - + Unlock Unlock - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist Create New Playlist @@ -8604,59 +8662,59 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Scan - + Later Later - + Upgrading Mixxx from v1.9.x/1.10.x. Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. When you load tracks, Mixxx can re-analyse them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. If you do not want Mixxx to re-analyse your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids Keep Current Beatgrids - + Generate New Beatgrids Generate New Beatgrids @@ -8840,7 +8898,7 @@ Do you want to scan your library for cover files now? Using Opus at samplerates other than 48 kHz is not supported by the Opus encoder. Please use 48000 Hz in "Sound Hardware" preferences or switch to a different encoding. - + Encoder Encoder @@ -9992,12 +10050,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10135,54 +10193,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists Playlists - + Folders Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids Beatgrids - + Memory cues Memory cues - + (loading) Rekordbox (loading) Rekordbox @@ -10191,7 +10249,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox Rhythmbox @@ -10242,34 +10300,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: Reads the following from the Serato Music directory and removable devices: - + Tracks Tracks - + Crates Crates - + Check for Serato databases (refresh) Check for Serato databases (refresh) - + (loading) Serato (loading) Serato @@ -10292,12 +10350,12 @@ Fully right: end of the effect period History - + Unlock Unlock - + Lock Lock @@ -11256,6 +11314,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12433,11 +12516,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize Old Synchronize - - - (This skin should be updated to use Master Sync!) - (This skin should be updated to use Master Sync!) - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12453,16 +12531,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - Enable Master Sync - - - - Tap to sync the tempo to other playing tracks or the master clock. - Tap to sync the tempo to other playing tracks or the master clock. - Hold for at least a second to enable sync lock for this deck. @@ -12478,16 +12546,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. Resets the key to the original track key. - - - Enable Sync Clock Master - Enable Sync Clock Master - - - - When enabled, this device will serve as the master clock for all other decks. - When enabled, this device will serve as the master clock for all other decks. - Speed Control @@ -13041,22 +13099,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor Traktor - + (loading) Traktor (loading) Traktor - + Error Loading Traktor Library Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13668,20 +13726,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Passthrough - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13852,8 +13910,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Genre - - Folder + + Directory @@ -14096,155 +14154,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Reset BPM - + + Update ReplayGain from Deck Gain + + + + Deck %1 Deck %1 - + Sampler %1 Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Create New Playlist - + Enter name for new playlist: Enter name for new playlist: - + New Playlist New Playlist - - - + + + Playlist Creation Failed Playlist Creation Failed - + A playlist by that name already exists. A playlist by that name already exists. - + A playlist cannot have a blank name. A playlist cannot have a blank name. - + An unknown error occurred while creating playlist: An unknown error occurred while creating playlist: - + Add to New Crate Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14252,7 +14315,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus ESC @@ -14289,128 +14352,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects.(GL ES) - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory Choose music library directory - + controllers - + Cannot open database Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14489,7 +14479,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14546,62 +14536,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse Generic HID Mouse - + Generic HID Joystick Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_eo.ts b/res/translations/mixxx_eo.ts index 896585455e3..8cd053b7cc7 100644 --- a/res/translations/mixxx_eo.ts +++ b/res/translations/mixxx_eo.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates - + Remove Crate as Track Source - + Auto DJ Aŭtomata DĴ - + Add Crate as Track Source @@ -43,24 +43,24 @@ BansheeFeature - + Banshee Banshe - - + + Error loading Banshee database - + Banshee database file not found at - + There was an error loading your Banshee database at @@ -69,32 +69,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) - + Add to Auto DJ Queue (top) - + Add to Auto DJ Queue (replace) - + Import Playlist Importi ludliston - + Playlist Creation Failed - + An unknown error occurred while creating playlist: @@ -102,144 +102,144 @@ BasePlaylistFeature - + New Playlist - + Add to Auto DJ Queue (bottom) - - + + Create New Playlist - + Add to Auto DJ Queue (top) - + Remove Forigi - + Rename Alinomi - + Lock Ŝlosi - + Duplicate - - + + Import Playlist Importi ludliston - + Export Track Files - + Analyze entire Playlist - + Enter new name for playlist: - + Duplicate Playlist - - + + Enter name for new playlist: - - + + Export Playlist - + Add to Auto DJ Queue (replace) - + Rename Playlist - - + + Renaming Playlist Failed - - - + + + A playlist by that name already exists. - - - + + + A playlist cannot have a blank name. - + _copy //: Appendix to default name when duplicating a playlist - - - - - - + + + + + + Playlist Creation Failed - - + + An unknown error occurred while creating playlist: - + M3U Playlist (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Oni ne povis ŝargi la kanton. @@ -512,7 +512,7 @@ - + Computer @@ -532,7 +532,7 @@ - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -645,12 +645,12 @@ - + Mixxx Library Biblioteko de Mixxx - + Could not load the following file because it is in use by Mixxx or another application. Ne povis ŝarĝi la sekvan dosieron ĉar ĝi estas uzata de Miksss aŭ de alia aplikaĵo. @@ -681,6 +681,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -863,13 +941,13 @@ - + Set to full volume - + Set to zero volume @@ -894,13 +972,13 @@ - + Headphone listen button - + Mute button @@ -916,25 +994,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -978,36 +1056,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1019,7 +1067,7 @@ - + Toggle keylock mode @@ -1029,199 +1077,199 @@ - + Vinyl Control - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 32 - + 64 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library Biblioteko @@ -1332,20 +1380,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1361,7 +1409,7 @@ - + Mute @@ -1372,7 +1420,7 @@ - + Headphone Listen @@ -1393,25 +1441,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1510,52 +1558,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1572,37 +1574,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1643,466 +1645,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix - + Toggle mix recording - + Effects - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next Sekva - + Switch to next effect - + Previous - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2127,93 +2129,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2270,806 +2272,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ Aŭtomata DĴ - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3158,32 +3226,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3219,133 +3287,133 @@ CrateFeature - + Remove Forigi - - + + Create New Crate - + Rename Alinomi - - + + Lock Ŝlosi - + Export Crate as Playlist - + Export Track Files - + Duplicate - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates - - + + Import Crate - + Export Crate - + Unlock Malŝlosi - + An unknown error occurred while creating crate: - + Rename Crate - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) - + Crates are a great way to help organize the music you want to DJ with. - + Crates let you organize your music however you'd like! - + A crate cannot have a blank name. - + A crate by that name already exists. @@ -3415,37 +3483,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4875,32 +4943,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin - + Tool tips - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4910,52 +4978,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off - + Library only - + Library and Skin @@ -5566,38 +5624,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5816,62 +5874,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6875,32 +6933,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7114,72 +7172,72 @@ Select from different types of displays for the waveform, which differ primarily Biblioteko - + Interface - + Waveforms - + Auto DJ Aŭtomata DĴ - + Equalizers - + Decks - + Colors - + Crossfader - + Effects - + LV2 Plugins - + Recording - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7189,12 +7247,12 @@ Select from different types of displays for the waveform, which differ primarily - + Live Broadcasting - + Modplug Decoder @@ -7335,123 +7393,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Jaro - + Title Titolo - - + + Artist Artisto - - + + Album Albumo - + Album Artist Albuma Artisto - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7843,17 +7901,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7954,38 +8012,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7993,13 +8051,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8007,57 +8065,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8078,22 +8136,22 @@ support. LibraryFeature - + Import Playlist Importi ludliston - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8104,27 +8162,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8240,181 +8298,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry - + skin - - + + Reconfigure - + Help - - + + Exit - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8485,43 +8543,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Ŝlosi - + Playlists - + Unlock Malŝlosi - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist @@ -8529,58 +8587,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8764,7 +8822,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9890,12 +9948,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10033,54 +10091,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10089,7 +10147,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10140,34 +10198,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates - + Check for Serato databases (refresh) - + (loading) Serato @@ -10190,12 +10248,12 @@ Fully right: end of the effect period - + Unlock Malŝlosi - + Lock Ŝlosi @@ -11154,6 +11212,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12329,11 +12412,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12349,16 +12427,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12374,16 +12442,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12937,22 +12995,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13564,20 +13622,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13748,8 +13806,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Ĝenro - - Folder + + Directory @@ -13992,155 +14050,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 - + Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist - + Enter name for new playlist: - + New Playlist - - - + + + Playlist Creation Failed - + A playlist by that name already exists. - + A playlist cannot have a blank name. - + An unknown error occurred while creating playlist: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14148,7 +14211,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14185,128 +14248,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14382,7 +14372,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14439,62 +14429,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_es.qm b/res/translations/mixxx_es.qm index 7519022f1a05e2dadd2602fcaf442ee2d05f6857..71a7a0f07ba237f576d37110375220d2014935e1 100644 GIT binary patch delta 92504 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

!`9f5H@F6m;%)o2EfCo+uA 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 wm%P>mySJCv1#< AutoDJFeature - + Crates Cajas - + Remove Crate as Track Source Quitar cajón como fuente de pistas - + Auto DJ Auto DJ - + Add Crate as Track Source Usar cajón como fuente de pistas @@ -43,25 +43,25 @@ BansheeFeature - + Banshee Banshee - - + + Error loading Banshee database Error al cargar la base de datos de Banshee - + Banshee database file not found at No se ha encontrado la base de datos de Banshee en - + There was an error loading your Banshee database at Ha habido un error al cargar su base de datos de Banshee en @@ -71,32 +71,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Añadir a la cola de Auto DJ (al final) - + Add to Auto DJ Queue (top) Añadir a la cola de Auto DJ (al principio) - + Add to Auto DJ Queue (replace) Añadir a la cola de Auto DJ (reemplaza) - + Import Playlist Importar lista de reproducción - + Playlist Creation Failed Ha fallado la creación de la lista de reproducción - + An unknown error occurred while creating playlist: Se ha producido un error desconocido al crear la lista de reproducción: @@ -104,144 +104,144 @@ BasePlaylistFeature - + New Playlist Nueva lista de reproducción - + Add to Auto DJ Queue (bottom) Añadir a la cola de Auto DJ (al final) - - + + Create New Playlist Crear nueva lista de reproducción - + Add to Auto DJ Queue (top) Añadir a la cola de Auto DJ (al principio) - + Remove Quitar - + Rename Renombrar - + Lock Bloquear - + Duplicate Duplicar - - + + Import Playlist Importar lista de reproducción - + Export Track Files Exportar pistas - + Analyze entire Playlist Analizar toda la lista de reproducción - + Enter new name for playlist: Escriba un nuevo nombre para la lista de reproducción: - + Duplicate Playlist Duplicar lista de reproducción - - + + Enter name for new playlist: Escriba un nombre para la nueva lista de reproducción: - - + + Export Playlist Exportar lista de reproducción - + Add to Auto DJ Queue (replace) Añadir a la cola de Auto DJ (reemplaza) - + Rename Playlist Renombrar lista de reproducción - - + + Renaming Playlist Failed Ha fallado el renombrado de la lista de reproducción - - - + + + A playlist by that name already exists. Ya existe una lista de reproducción con ese nombre. - - - + + + A playlist cannot have a blank name. El nombre de la lista de reproducción no puede quedar en blanco. - + _copy //: Appendix to default name when duplicating a playlist _copia - - - - - - + + + + + + Playlist Creation Failed Ha fallado la creación de la lista de reproducción - - + + An unknown error occurred while creating playlist: Se ha producido un error desconocido al crear la lista de reproducción: - + M3U Playlist (*.m3u) Lista de reproducción M3U (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Lista de reproducción M3U (*.m3u);;Lista de reproducción M3U8 (*.m3u8);;Lista de reproducción PLS (*.pls);;Texto CSV (*.csv);;Texto legible (*.txt) @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. No se ha podido cargar la pista. @@ -327,7 +327,7 @@ Last Played - + Last Played @@ -514,7 +514,7 @@ - + Computer Equipo @@ -534,7 +534,7 @@ Escanear - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. "Equipo" te permite navegar, ver y abrir las pistas de las carpetas del disco duro o de dispositivos externos. @@ -647,12 +647,12 @@ Fecha creación - + Mixxx Library Biblioteca de Mixxx - + Could not load the following file because it is in use by Mixxx or another application. No se ha podido cargar el siguiente archivo debido a que Mixxx u otra aplicación lo esta usando. @@ -670,18 +670,101 @@ The file '%1' could not be found. - + The file '%1' could not be found. The file '%1' could not be loaded. - + The file '%1' could not be loaded. The file '%1' is empty and could not be loaded. + The file '%1' is empty and could not be loaded. + + + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + Starts Mixxx in full-screen mode + + + + Use a custom locale for loading translations. (e.g 'fr') + Use a custom locale for loading translations. (e.g 'fr') + + + + Top-level directory where Mixxx should look for settings. Default is: + Top-level directory where Mixxx should look for settings. Default is: + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + [auto|always|never] Use colors on the console output. + [auto|always|never] Use colors on the console output. + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + ColorPaletteEditor @@ -714,17 +797,17 @@ Assign to Hotcue Number - + Assign to Hotcue Number Edited - + Edited Do you really want to remove the palette permanently? - + Do you really want to remove the palette permanently? @@ -737,7 +820,7 @@ %1 %2 - + %1 %2 @@ -865,13 +948,13 @@ - + Set to full volume Establecer a volumen máximo - + Set to zero volume Establecer a volumen cero @@ -896,13 +979,13 @@ Botón Reproduce hacia atrás (con censura) - + Headphone listen button Botón de escucha por Auriculares - + Mute button Botón de silencio @@ -918,25 +1001,25 @@ - + Mix orientation (e.g. left, right, center) Orientación de la mezcla (p. ej. izquierda, derecha, centro) - + Set mix orientation to left Establecer orientación de la mezcla hacia la izquierda - + Set mix orientation to center Establecer orientación de la mezcla al centro - + Set mix orientation to right Establecer orientación de la mezcla hacia la derecha @@ -980,36 +1063,6 @@ Toggle quantize mode Conmutar el modo de cuantización - - - Increase internal master BPM by 1 - Incrementar BPM maestro interno en 1 - - - - Decrease internal master BPM by 1 - Disminuir BPM maestro interno en 1 - - - - Increase internal master BPM by 0.1 - Incrementar BPM maestro interno en 0,1 - - - - Decrease internal master BPM by 0.1 - Disminuir BPM maestro interno en 0,1 - - - - Toggle sync master - Conmutar maestro de sincronización - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - Botón de modo de sincronización de 3 estados (Desactivado, Esclavo, Maestro) - One-time beat sync (tempo only) @@ -1021,7 +1074,7 @@ Sincronizar por unica vez (sólo la fase) - + Toggle keylock mode Conmutar bloqueo tonal @@ -1031,199 +1084,199 @@ Ecualizadores - + Vinyl Control Control de vinilo - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) Conmutar el modo de puntos cue del control de vinilo (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) Conmutar el control de vinilo (Absoluto/Relativo/Constante) - + Pass through external audio into the internal mixer Pasar audio externo al mezclador interno - + Cues Puntos cue - + Cue button Botón de Cue - + Set cue point Establecer punto de Cue - + Go to cue point Ir al Cue - + Go to cue point and play Ir al Cue y reproducir - + Go to cue point and stop Ir al punto de Cue y parar - + Preview from cue point Preescuchar desde punto Cue - + Cue button (CDJ mode) Boton Cue (modo CDJ) - + Stutter cue Reproducir Cue (Stutter) - + Hotcues Hotcues - + Set, preview from or jump to hotcue %1 Establecer, preescuchar o saltar al hotcue %1 - + Clear hotcue %1 Borrar hotcue %1 - + Set hotcue %1 Establecer Hotcue %1 - + Jump to hotcue %1 Saltar al hotcue %1 - + Jump to hotcue %1 and stop Saltar al hotcue %1 y parar - + Jump to hotcue %1 and play Saltar al hotcue %1 y reproducir - + Preview from hotcue %1 Preescucha Hotcue %1 - - + + Hotcue %1 Hotcue %1 - + Looping Repetición - + Loop In button Botón de inicio del bucle - + Loop Out button Botón de fin de bucle - + Loop Exit button Botón de salida de bucle - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 32 - + 64 64 - + Move loop forward by %1 beats Mover el bucle hacia adelante en %1 pulsaciones - + Move loop backward by %1 beats Mover el bucle hacia atrás en %1 pulsaciones - + Create %1-beat loop Crear bucle de %1 pulsaciones - + Create temporary %1-beat loop roll Crear bucle temporal corredizo de %1 pulsaciones - + Library Biblioteca @@ -1334,20 +1387,20 @@ - - + + Volume Fader Deslizador de Volumen - + Full Volume Volumen máximo - + Zero Volume Volumen cero @@ -1363,7 +1416,7 @@ - + Mute Silenciar @@ -1374,7 +1427,7 @@ - + Headphone Listen Escuchar por auriculares @@ -1395,25 +1448,25 @@ - + Orientation Orientación - + Orient Left Orientar a la izquierda - + Orient Center Orientar al centro - + Orient Right Orientar a la derecha @@ -1512,52 +1565,6 @@ Sync Sincronizar - - - Sync Mode - Modo de sincronización - - - - Internal Sync Master - Sincronización Maestra interno - - - - Toggle Internal Sync Master - Conmutar el modo de sincronización maestra interno - - - - - Internal Master BPM - BPM maestro interno - - - - Internal Master BPM +1 - BPM maestro interno +1 - - - - Internal Master BPM -1 - BPM maestro interno -1 - - - - Internal Master BPM +0.1 - BPM maestro interno +0,1 - - - - Internal Master BPM -0.1 - BPM maestro interno -0,1 - - - - Sync Master - Sicronización Maestra - Beat Sync One-Shot @@ -1574,37 +1581,37 @@ Sincronizar Fase al momento - + Pitch control (does not affect tempo), center is original pitch Control de velocidad (No afecta el tempo), al centro es la velocidad original - + Pitch Adjust Ajuste de velocidad - + Adjust pitch from speed slider pitch Ajuste la velocidad desde el deslizador de velocidad - + Match musical key Coincidir con clave musical - + Match Key Cuadrar tonalidad (clave) - + Reset Key Restablecer tonalidad - + Resets key to original Restablecer tonalidad a la original @@ -1622,22 +1629,22 @@ Main Output - + Main Output Main Output Balance - + Main Output Balance Main Output Delay - + Main Output Delay Main Output Gain - + Main Output Gain @@ -1645,466 +1652,466 @@ Ecualización de Graves - + Toggle Vinyl Control Conmutar el control del vinilo - + Toggle Vinyl Control (ON/OFF) Conmutar el control de vinilo (ON/OFF) - + Vinyl Control Mode Modo de control de vinilo - + Vinyl Control Cueing Mode Modo de Cue en Control por Vinilo - + Vinyl Control Passthrough Passthrough en Control por Vinilo - + Vinyl Control Next Deck siguiente plato en Control por vinilo - + Single deck mode - Switch vinyl control to next deck Modo de plato único - Cambia el control de vinilo al siguiente plato - + Cue Cue - + Set Cue Establecer punto cue - + Go-To Cue Ir al Cue - + Go-To Cue And Play Ir a Cue y reproducir - + Go-To Cue And Stop Ir al Cue y detener - + Preview Cue Preescuchar Cue - + Cue (CDJ Mode) Cue (modo CDJ) - + Stutter Cue Reproducir Cue (Stutter) - + Go to cue point and play after release Ir al cue y reproducir en soltar - + Clear Hotcue %1 Borrar hotcue %1 - + Set Hotcue %1 Establecer Hotcue %1 - + Jump To Hotcue %1 Saltar al hotcue %1 - + Jump To Hotcue %1 And Stop Saltar al hotcue %1 y parar - + Jump To Hotcue %1 And Play Saltar al hotcue %1 y reproducir - + Preview Hotcue %1 Preescuchar Hotcue %1 - + Loop In Inicio de bucle - + Loop Out Fin del bucle - + Loop Exit Salida del bucle - + Reloop/Exit Loop Repetir/Salir del bucle - + Loop Halve Reducir bucle a la mitad - + Loop Double Aumentar bucle al doble - + 1/32 1/32 - + 1/16 1/16 - + 1/8 1/8 - + 1/4 1/4 - + Move Loop +%1 Beats Mover bucle en +%1 pulsaciones - + Move Loop -%1 Beats Mover bucle en -%1 pulsaciones - + Loop %1 Beats Bucle de %1 pulsaciones - + Loop Roll %1 Beats Bucle corredizo de %1 pulsaciones - + Add to Auto DJ Queue (bottom) Añadir a la cola de Auto DJ (al final) - + Append the selected track to the Auto DJ Queue Añade las pistas seleccionadas al final de la cola de Auto DJ - + Add to Auto DJ Queue (top) Añadir a la cola de Auto DJ (al principio) - + Prepend selected track to the Auto DJ Queue Añade las pistas seleccionadas al principio de la cola de Auto DJ - + Load Track Cargar Pista - + Load selected track Carga la pista seleccionada - + Load selected track and play Carga la pista seleccionada y la reproduce - - + + Record Mix Grabar mezcla - + Toggle mix recording Conmuta la grabación de la mezcla - + Effects Efectos - + Quick Effects Efectos rápidos - + Deck %1 Quick Effect Super Knob Super rueda de efecto rápido del plato %1 - + Quick Effect Super Knob (control linked effect parameters) Super rueda de efecto rápido (parámetros de efecto asociado al control) - - + + Quick Effect Efecto rápido - + Clear effect rack Reestablecer unidad de efectos - + Clear Effect Rack Reestablecer unidad de efectos - + Clear Unit Limpiar unidad - + Clear effect unit Limpia la unidad de efectos - + Toggle Unit Conmutar la unidad - + Dry/Wet Directo/Alterado - + Adjust the balance between the original (dry) and processed (wet) signal. Ajuste entre señal directa (dry) y alterada (wet). - + Super Knob Rueda Súper - + Next Chain Siguiente cadena - + Assign Asignar - + Clear Borrar - + Clear the current effect Borrar el efecto actual - + Toggle Conmutar - + Toggle the current effect Conmutar el efecto actual - + Next Siguente - + Switch to next effect Cambiar al siguiente efecto - + Previous Anterior - + Switch to the previous effect Cambiar al efecto previo - + Next or Previous Siguiente o Anterior - + Switch to either next or previous effect Cambiar a cualquier efecto siguiente o anterior - - + + Parameter Value Valor de Parámetro - - + + Microphone Ducking Strength Intensidad de Atenuación de Micrófono - + Microphone Ducking Mode Modo de Atenuación de Micrófono - + Gain Ganancia - + Gain knob Rueda de Ganancia - + Shuffle the content of the Auto DJ queue Mezcla el contenido de la cola de Auto DJ - + Skip the next track in the Auto DJ queue Salta la siguiente pista de la cola de Auto DJ - + Auto DJ Toggle Conmutar Auto DJ - + Toggle Auto DJ On/Off Conmutar Auto DJ Encendido/Apagado - + Microphone & Auxiliary Show/Hide - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Mixer Show/Hide - + Show or hide the mixer. Mostrar u ocultar el mezclador. - + Cover Art Show/Hide (Library) - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Show/hide cover art in the library - + Library Maximize/Restore Maximizar/Restaurar Biblioteca - + Maximize the track library to take up all the available screen space. Maximizar la biblioteca para tomar todo el espacio disponible en pantalla. - + Effect Rack Show/Hide Mostrar/ocultar unidad de efectos - + Show/hide the effect rack Mostrar/ocultar unidad de efectos - + Waveform Zoom Out Alejar zoom de forma de onda @@ -2129,93 +2136,93 @@ toque para sincronizar solo una vez (el tempo y fase) - + Playback Speed Velocidad de reproducción - + Playback speed control (Vinyl "Pitch" slider) Control de velocidad de reproducción (El "Pitch de vinilo) - + Pitch (Musical key) Pitch (tonalidad) - + Increase Speed Incrementar Velocidad - + Adjust speed faster (coarse) Incrementar la velocidad (grueso) - - + + Increase Speed (Fine) Incrementar velocidad (fino) - + Adjust speed faster (fine) Incrementar la velocidad (fino) - + Decrease Speed Reducir Velocidad - + Adjust speed slower (coarse) Reducir la velocidad (grueso) - + Adjust speed slower (fine) Reducir la velocidad (fino) - + Temporarily Increase Speed Incrementar temporalmente la velocidad - + Temporarily increase speed (coarse) Incremento temporal de velocidad (grueso) - + Temporarily Increase Speed (Fine) Incremento temporal de velocidad (fino) - + Temporarily increase speed (fine) Incremento temporal de velocidad (fino) - + Temporarily Decrease Speed Reducir temporalmente la velocidad - + Temporarily decrease speed (coarse) Reducción temporal de velocidad (grueso) - + Temporarily Decrease Speed (Fine) Reducción temporal de velocidad (fino) - + Temporarily decrease speed (fine) Reducción temporal de velocidad (fino) @@ -2228,27 +2235,27 @@ Effect Unit %1 - + Effect Unit %1 Crossfader / Orientation - + Crossfader / Orientation Main Output gain - + Main Output gain Main Output balance - + Main Output balance Main Output delay - + Main Output delay @@ -2264,816 +2271,882 @@ BPM / Beatgrid - + BPM / Beatgrid Sync / Sync Lock + Sync / Sync Lock + + + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) - + Speed LFO - + Pitch (Musical Key) - + Pitch (Musical Key) - + Increase Pitch - + Increase Pitch - + Increases the pitch by one semitone - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Increases the pitch by 10 cents - + Decrease Pitch - + Decrease Pitch - + Decreases the pitch by one semitone - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Decreases the pitch by 10 cents - + Keylock Bloqueo tonal - + CUP (Cue + Play) CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro / Outro Markers - + Intro Start Marker - + Intro Start Marker - + Intro End Marker - + Intro End Marker - + Outro Start Marker - + Outro Start Marker - + Outro End Marker - + Outro End Marker - + intro start marker - + intro start marker - + intro end marker - + intro end marker - + outro start marker - + outro start marker - + outro end marker - + outro end marker - + Activate %1 [intro/outro marker - + Activate %1 - + Jump to or set the %1 [intro/outro marker - + Jump to or set the %1 - + Set %1 [intro/outro marker - + Set %1 - + Set or jump to the %1 [intro/outro marker - + Set or jump to the %1 - + Clear %1 [intro/outro marker - + Clear %1 - + Clear the %1 [intro/outro marker - + Clear the %1 - + Loop Selected Beats Bucle de las pulsaciones seleccionadas - + Create a beat loop of selected beat size Crear bucle con el tamaño de pulsaciones seleccionado - + Loop Roll Selected Beats Bucle corredizo de las pulsaciones seleccionadas - + Create a rolling beat loop of selected beat size Crear bucle corredizo con el tamaño de pulsaciones seleccionado - + Loop Beats - + Loop Beats - + Loop Roll Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position Activar / Desactivar bucle y saltar al inicio del bucle si está detrás de la posición de reproducción - + Reloop And Stop Reactivar bucle y detener - + Enable loop, jump to Loop In point, and stop Activar bucle, ir al inicio del bucle y detener - + Halve the loop length Reducir a la mitad la longitud del bucle - + Double the loop length Duplicar la longitud del bucle - + Beat Jump / Loop Move Salto de pulsaciones / Movimiento del bucle - + Jump / Move Loop Forward %1 Beats Saltar / Mover bucle hacia delante en %1 pulsaciones - + Jump / Move Loop Backward %1 Beats Saltar / Mover bucle hacia atrás en %1 pulsaciones - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats Saltar hacia adelante en %1 pulsaciones, o si el bucle está activado, moverlo hacia adelante en %1 pulsaciones - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats Saltar hacia atrás en %1 pulsaciones, o si el bucle está activado, moverlo hacia atrás en %1 pulsaciones - + Beat Jump / Loop Move Forward Selected Beats Saltar en pulsaciones / Mover el bucle adelante en la cantidad seleccionada - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats Salta hacia adelante la cantidad seleccionada de pulsaciones, o si el bucle está activado, lo mueve hacia adelante la cantidad seleccionada de pulsaciones - + Beat Jump / Loop Move Backward Selected Beats Saltar en pulsaciones / Mover el bucle atrás en la cantidad seleccionada - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats Salta hacia atrás la cantidad seleccionada de pulsaciones, o si el bucle está activado, lo mueve hacia atrás la cantidad seleccionada de pulsaciones - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Forward - + Loop Move Backward - + Loop Move Backward - + Navigation - + Navigation - + Move up Hacia arriba - + Equivalent to pressing the UP key on the keyboard Equivalente a pulsar la tecla flecha arriba en el teclado - + Move down Hacia abajo - + Equivalent to pressing the DOWN key on the keyboard Equivalente a pulsar la tecla abajo arriba en el teclado - + Move up/down Arriba/abajo - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys Mover verticalmente en qualquier dirección usando una rueda, como si se pulsaran las teclas flecha arriba/abajo - + Scroll Up Retrocede página - + Equivalent to pressing the PAGE UP key on the keyboard Equivalente a pulsar la tecla retrocede página arriba en el teclado - + Scroll Down Avance página - + Equivalent to pressing the PAGE DOWN key on the keyboard Equivalente a pulsar la tecla avance página en el teclado - + Scroll up/down Arriba/abajo página - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys Mover verticalmente en qualquier dirección usando una rueda, como si se pulsaran las teclas avance/retroceso página - + Move left Izquierda - + Equivalent to pressing the LEFT key on the keyboard Equivalente a pulsar la tecla flecha izquierda en el teclado - + Move right Derecha - + Equivalent to pressing the RIGHT key on the keyboard Equivalente a pulsar la tecla flecha derecha en el teclado - + Move left/right Izquierda/derecha - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys Mover verticalmente en qualquier dirección usando una rueda, como si se pulsaran las teclas flecha izquierda/derecha - + Move focus to right pane Mover al panel derecho - + Equivalent to pressing the TAB key on the keyboard Equivalente a pulsar la tecla Tabulador del teclado - + Move focus to left pane Mover el foco al panel izquierdo - + Equivalent to pressing the SHIFT+TAB key on the keyboard Equivalente a pulsar las teclas Mayúsculas+Tabulación en el teclado. - + Move focus to right/left pane Mover el foco al panel izquierdo/derecho - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys Mueve el foco al panel izquierdo o derecho usando una rueda, como si se pulsara tabulación/mayusculas+tabulación. - + Go to the currently selected item Ir al elemento actualmente seleccionado - + Choose the currently selected item and advance forward one pane if appropriate Selecciona el elemento actualmente seleccionado y avanza un panel, si corresponde - + Load Track and Play - + Load Track and Play - + Add to Auto DJ Queue (replace) Añadir a la cola de Auto DJ (reemplaza) - + Replace Auto DJ Queue with selected tracks Reemplaza la cola de Auto DJ con las pistas seleccionadas - + Select next search history - + Select next search history - + Selects the next search history entry - + Selects the next search history entry - + Select previous search history - + Select previous search history - + Selects the previous search history entry - + Selects the previous search history entry - + Move selected search entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button Botón rápido de activación de efecto de cubierta %1 - + Quick Effect Enable Button Botón de activación de efectos rápidos - + Enable or disable effect processing Activar o desactivar efectos - + Super Knob (control effects' Meta Knobs) Rueda Super (controla las ruedas Meta del efecto) - + Mix Mode Toggle Alternar modo de mezcla - + Toggle effect unit between D/W and D+W modes Cambia la unidad de efectos entre los modos D / W y D + W - + Next chain preset Siguiente preajuste de cadena - + Previous Chain Cadena anterior - + Previous chain preset Anterior preajuste de cadena - + Next/Previous Chain Cadena siguiente/anterior - + Next or previous chain preset Siguiente o anterior preajuste de cadena - - + + Show Effect Parameters Mostrar parámetros de efectos - + Effect Unit Assignment - + Effect Unit Assignment - + Meta Knob Rueda Meta - + Effect Meta Knob (control linked effect parameters) Rueda Meta del efecto (controla los parámetros del efecto asociados) - + Meta Knob Mode Modo de la rueda Meta - + Set how linked effect parameters change when turning the Meta Knob. Define como se comportan los parámetros del efecto enlazados al mover la rueda Meta. - + Meta Knob Mode Invert Modo rueda Meta Invertida - + Invert how linked effect parameters change when turning the Meta Knob. Invierte el sentido en el que se mueven los parámetros del efecto enlazados al girar la rueda Meta. - - + + Button Parameter Value - + Button Parameter Value - + Microphone / Auxiliary Micrófono/Auxiliar - + Microphone On/Off Micrófono Encendido/Apagado - + Microphone on/off Micrófono encendido/apagado - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) Conmutar modo de atenuación de micrófono (OFF, AUTO, MANUAL) - + Auxiliary On/Off Auxiliar Encendido/Apagado - + Auxiliary on/off Auxiliar encendido/apagado - + Auto DJ Auto DJ - + Auto DJ Shuffle Auto DJ Aleatorio - + Auto DJ Skip Next Quitar la siguiente en Auto DJ - + Auto DJ Add Random Track - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next Autodesvanecer a la siguiente en Auto DJ - + Trigger the transition to the next track Desencadenar la transición a la pista siguiente - + User Interface Interfaz de usuario - + Samplers Show/Hide Mostrar/Ocultar reproductor de muestras - + Show/hide the sampler section Mostrar/Ocultar la sección de reproductor de muestras - + Start/Stop Live Broadcasting - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. Emite tus mezclas por internet. - + Start/stop recording your mix. - + Start/stop recording your mix. - - + + Samplers - + Samplers - + Vinyl Control Show/Hide Mostrar/Ocultar Control de Vinilo - + Show/hide the vinyl control section Mostrar/ocultar la sección del control del vinilo - + Preview Deck Show/Hide Ocultar/Mostrar reproductor de preescucha - + Show/hide the preview deck Oculta/Muestra el reproductor de pre-escucha - + Toggle 4 Decks Conmuta el modo de 4 platos - + Switches between showing 2 decks and 4 decks. Cambia entre mostrar 2 platos o 4 platos. - + Cover Art Show/Hide (Decks) - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide Mostrar/ocultar vinilo - + Show/hide spinning vinyl widget Mostrar/ocultar el widget de vinilo giratorio - + Vinyl Spinners Show/Hide (All Decks) - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Show/Hide all spinnies - + Toggle Waveforms - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Show/hide the scrolling waveforms. - + Waveform zoom Cambia el zoom de la forma de onda - + Waveform Zoom Zoom de forma de onda - + Zoom waveform in Incrementa el zoom de la forma de onda - + Waveform Zoom In Acercar zoom de forma de onda - + Zoom waveform out Reduce el zoom de la forma de onda - + Star Rating Up - + Star Rating Up - + Increase the track rating by one star - + Increase the track rating by one star - + Star Rating Down - + Star Rating Down - + Decrease the track rating by one star - + Decrease the track rating by one star @@ -3160,32 +3233,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. Prueba de corregirlo reseteando la controladora. - + Controller Mapping Error - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. El código del script necesita ser reparado. @@ -3195,159 +3268,159 @@ Controller Mapping File Problem - + Controller Mapping File Problem The mapping for controller "%1" cannot be opened. - + The mapping for controller "%1" cannot be opened. The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. File: - + File: Error: - + Error: CrateFeature - + Remove Quitar - - + + Create New Crate Crear un nuevo cajón - + Rename Renombrar - - + + Lock Bloquear - + Export Crate as Playlist - + Export Crate as Playlist - + Export Track Files Exportar pistas - + Duplicate Duplicar - + Analyze entire Crate Analizar todo el cajón - + Auto DJ Track Source Fuente de pistas para Auto DJ - + Enter new name for crate: Escriba un nuevo nombre para el cajón: - - + + Crates Cajas - - + + Import Crate Importar cajón - + Export Crate Exportar cajón - + Unlock Desbloquear - + An unknown error occurred while creating crate: Ocurrió un error desconocido al crear el cajón: - + Rename Crate Renombrar cajón - - + + Export to Engine Prime - + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed No se pudo renombrar el cajón - + Crate Creation Failed Falló la creación del cajón - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Lista de reproducción M3U (*.m3u);;Lista de reproducción M3U8 (*.m3u8);;Lista de reproducción PLS (*.pls);;Texto CSV (*.csv);;Texto legible (*.txt) - + Crates are a great way to help organize the music you want to DJ with. Los Cajones son una muy buena opción para organizar la música para las sesiones de DJ. - + Crates let you organize your music however you'd like! Los cajones permiten organizar tu música como tu quieras! - + A crate cannot have a blank name. Los cajones no pueden carecer de nombre. - + A crate by that name already exists. Ya existe un cajón con ese nombre. @@ -3417,39 +3490,39 @@ DlgAbout - + Mixxx %1.%2 Development Team - + Mixxx %1.%2 Development Team - + With contributions from: Con contribuciones de: - + And special thanks to: Y un agradecimiento especial a: - + Past Developers Desarrolladores Anteriores - + Past Contributors Contribuyentes anteriores - + Official Website - + Official Website - + Donate - + Donate @@ -3474,12 +3547,12 @@ Git Version: - + Git Version: Platform: - + Platform: @@ -3549,12 +3622,12 @@ Analyzing %1% %2/%3 - + Analyzing %1% %2/%3 Analyzing %1/%2 - + Analyzing %1/%2 @@ -3567,57 +3640,67 @@ Random - + Random Fade - + Fade Enable Auto DJ Shortcut: Shift+F12 - + Enable Auto DJ + +Shortcut: Shift+F12 Disable Auto DJ Shortcut: Shift+F12 - + Disable Auto DJ + +Shortcut: Shift+F12 Trigger the transition to the next track Shortcut: Shift+F11 - + Trigger the transition to the next track + +Shortcut: Shift+F11 Skip the next track in the Auto DJ queue Shortcut: Shift+F10 - + Skip the next track in the Auto DJ queue + +Shortcut: Shift+F10 Shuffle the content of the Auto DJ queue Shortcut: Shift+F9 - + Shuffle the content of the Auto DJ queue + +Shortcut: Shift+F9 Repeat the playlist - + Repeat the playlist Determines the duration of the transition - + Determines the duration of the transition @@ -3627,22 +3710,22 @@ Shortcut: Shift+F9 Full Intro + Outro - + Full Intro + Outro Fade At Outro Start - + Fade At Outro Start Full Track - + Full Track Skip Silence - + Skip Silence @@ -3668,7 +3751,28 @@ Skip Silence: Play the whole track except for silence at the beginning and end. Begin crossfading from the selected number of seconds before the last sound. - + Auto DJ Fade Modes + +Full Intro + Outro: +Play the full intro and outro. Use the intro or outro length as the +crossfade time, whichever is shorter. If no intro or outro are marked, +use the selected crossfade time. + +Fade At Outro Start: +Start crossfading at the outro start. If the outro is longer than the +intro, cut off the end of the outro. Use the intro or outro length as +the crossfade time, whichever is shorter. If no intro or outro are +marked, use the selected crossfade time. + +Full Track: +Play the whole track. Begin crossfading from the selected number of +seconds before the end of the track. A negative crossfade time adds +silence between tracks. + +Skip Silence: +Play the whole track except for silence at the beginning and end. +Begin crossfading from the selected number of seconds before the +last sound. @@ -3688,12 +3792,12 @@ last sound. Enable - + Enable Disable - + Disable @@ -3746,26 +3850,31 @@ Si no hay fuentes de pistas configuradas, se añade una pista de la biblioteca.< When beat detection is enabled, Mixxx detects the beats per minute and beats of your tracks, automatically shows a beat-grid for them, and allows you to synchronize tracks using their beat information. - + When beat detection is enabled, Mixxx detects the beats per minute and beats of your tracks, +automatically shows a beat-grid for them, and allows you to synchronize tracks using their beat information. Enable fast beat detection. If activated Mixxx only analyzes the first minute of a track for beat information. This can speed up beat detection on slower computers but may result in lower quality beatgrids. - + Enable fast beat detection. +If activated Mixxx only analyzes the first minute of a track for beat information. +This can speed up beat detection on slower computers but may result in lower quality beatgrids. Converts beats detected by the analyzer into a fixed-tempo beatgrid. Use this setting if your tracks have a constant tempo (e.g. most electronic music). Often results in higher quality beatgrids, but will not do well on tracks that have tempo shifts. - + Converts beats detected by the analyzer into a fixed-tempo beatgrid. +Use this setting if your tracks have a constant tempo (e.g. most electronic music). +Often results in higher quality beatgrids, but will not do well on tracks that have tempo shifts. Re-analyze beatgrids imported from other DJ software - + Re-analyze beatgrids imported from other DJ software @@ -4009,7 +4118,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Keywheel - + Keywheel @@ -4070,7 +4179,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Re-queue Tracks - + Re-queue Tracks @@ -4101,7 +4210,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Add Random Tracks - + Add Random Tracks @@ -4154,22 +4263,22 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Opus - + Opus AAC - + AAC HE-AAC - + HE-AAC HE-AACv2 - + HE-AACv2 @@ -4519,7 +4628,7 @@ No pueden haber dos fuentes de emisión hacia el mismo servidor que usen el mism By hotcue number - + By hotcue number @@ -4532,43 +4641,43 @@ No pueden haber dos fuentes de emisión hacia el mismo servidor que usen el mism Color Preferences - + Color Preferences Colors - + Colors Edit… - + Edit… Track palette - + Track palette Loop default color - + Loop default color Hotcue palette - + Hotcue palette Hotcue default color - + Hotcue default color Replace… - + Replace… @@ -4613,62 +4722,62 @@ Apply settings and continue? Mapping has been edited - + Mapping has been edited Always overwrite during this session - + Always overwrite during this session Save As - + Save As Overwrite - + Overwrite Save user mapping - + Save user mapping Enter the name for saving the mapping to the user folder. - + Enter the name for saving the mapping to the user folder. Saving mapping failed - + Saving mapping failed A mapping cannot have a blank name and may not contain special characters. - + A mapping cannot have a blank name and may not contain special characters. A mapping file with that name already exists. - + A mapping file with that name already exists. missing - + missing built-in - + built-in Do you want to save the changes? - + Do you want to save the changes? @@ -4678,17 +4787,17 @@ Apply settings and continue? <font color='#BB0000'><b>If you use this mapping your controller may not work correctly. Please select another mapping or disable the controller.</b></font><br><br>This mapping was designed for a newer Mixxx Controller Engine and cannot be used on your current Mixxx installation.<br>Your Mixxx installation has Controller Engine version %1. This mapping requires a Controller Engine version >= %2.<br><br>For more information visit the wiki page on <a href='https://mixxx.org/wiki/doku.php/controller_engine_versions'>Controller Engine Versions</a>. - + <font color='#BB0000'><b>If you use this mapping your controller may not work correctly. Please select another mapping or disable the controller.</b></font><br><br>This mapping was designed for a newer Mixxx Controller Engine and cannot be used on your current Mixxx installation.<br>Your Mixxx installation has Controller Engine version %1. This mapping requires a Controller Engine version >= %2.<br><br>For more information visit the wiki page on <a href='https://mixxx.org/wiki/doku.php/controller_engine_versions'>Controller Engine Versions</a>. Mapping already exists. - + Mapping already exists. <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? @@ -4773,12 +4882,12 @@ Apply settings and continue? Load Mapping: - + Load Mapping: Mapping Info - + Mapping Info @@ -4798,7 +4907,7 @@ Apply settings and continue? Mapping Files: - + Mapping Files: @@ -4817,22 +4926,22 @@ Apply settings and continue? Mixxx uses "mappings" to connect messages from your controller to controls in Mixxx. If you do not see a mapping for your controller in the "Load Mapping" menu when you click on your controller on the left sidebar, you may be able to download one online from the %1. Place the XML (.xml) and Javascript (.js) file(s) in the "User Mapping Folder" then restart Mixxx. If you download a mapping in a ZIP file, extract the XML and Javascript file(s) from the ZIP file to your "User Mapping Folder" then restart Mixxx. - + Mixxx uses "mappings" to connect messages from your controller to controls in Mixxx. If you do not see a mapping for your controller in the "Load Mapping" menu when you click on your controller on the left sidebar, you may be able to download one online from the %1. Place the XML (.xml) and Javascript (.js) file(s) in the "User Mapping Folder" then restart Mixxx. If you download a mapping in a ZIP file, extract the XML and Javascript file(s) from the ZIP file to your "User Mapping Folder" then restart Mixxx. Mixxx DJ Hardware Guide - + Mixxx DJ Hardware Guide MIDI Mapping File Format - + MIDI Mapping File Format MIDI Scripting with Javascript - + MIDI Scripting with Javascript @@ -4855,12 +4964,12 @@ Apply settings and continue? Mappings - + Mappings Open User Mapping Folder - + Open User Mapping Folder @@ -4881,32 +4990,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin Apariencia - + Tool tips Consejos emergentes - + Select from different color schemes of a skin if available. Seleccione entre diferentes esquemas de color para las apariencias cuando estas lo permitan. - + Color scheme Esquema de colores - + Locales determine country and language specific settings. Configuración regional determina los ajustes específicos del país e idioma. - + Locale Configuración regional @@ -4916,52 +5025,42 @@ Apply settings and continue? Preferencias de interfaz - + HiDPI / Retina scaling HiDPI / escalado Retina - + Change the size of text, buttons, and other items. Cambia el tamaño del texto, botones y otros elementos. - - Adopt scale factor from the operating system - Usa el escalado definido en el sistema operativo - - - - Auto Scaling - Auto escalado - - - + Screen saver Salvapantallas - + Start in full-screen mode Iniciar en modo de pantalla completa - + Full-screen mode Modo de pantalla completa - + Off Desactivado - + Library only Sólo en la biblioteca - + Library and Skin Biblioteca y aparencia @@ -5049,47 +5148,47 @@ Apply settings and continue? mm:ss%1zz - Traditional - + mm:ss%1zz - Traditional mm:ss - Traditional (Coarse) - + mm:ss - Traditional (Coarse) s%1zz - Seconds - + s%1zz - Seconds sss%1zz - Seconds (Long) - + sss%1zz - Seconds (Long) s%1sss%2zz - Kiloseconds - + s%1sss%2zz - Kiloseconds Intro start - + Intro start Main cue - + Main cue First sound (skip silence) - + First sound (skip silence) Beginning of track - + Beginning of track @@ -5223,12 +5322,12 @@ Modo CUP: Time Format - + Time Format Intro start - + Intro start @@ -5237,33 +5336,38 @@ it will place it at the main cue point if the main cue point has been set previo This may be helpful for upgrading to Mixxx 2.3 from earlier versions. If this option is disabled, the intro start point is automatically placed at the first sound. - + When the analyzer places the intro start point automatically, +it will place it at the main cue point if the main cue point has been set previously. +This may be helpful for upgrading to Mixxx 2.3 from earlier versions. + +If this option is disabled, the intro start point is automatically placed at the first sound. Set intro start to main cue when analyzing tracks - + Set intro start to main cue when analyzing tracks Track load point - + Track load point Clone deck - + Clone deck Create a playing clone of the first playing deck by double-tapping a Load button on a controller or keyboard. You can always drag-and-drop tracks on screen to clone a deck. - + Create a playing clone of the first playing deck by double-tapping a Load button on a controller or keyboard. +You can always drag-and-drop tracks on screen to clone a deck. Double-press Load button to clone playing track - + Double-press Load button to clone playing track @@ -5429,7 +5533,7 @@ You can always drag-and-drop tracks on screen to clone a deck. Main EQ - + Main EQ @@ -5539,7 +5643,7 @@ You can always drag-and-drop tracks on screen to clone a deck. Effect load behavior - + Effect load behavior @@ -5590,39 +5694,39 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. El tamaño mínimo de la apariencia seleccionada es mas grande que la resolucion de su pantalla. - + Allow screensaver to run Permite el salvapantallas - + Prevent screensaver from running Evita que se active el salvapantallas - + Prevent screensaver while playing Evita el salvapantallas mientras reproduce - + This skin does not support color schemes Este skin no soporta esquemas de color - + Information Información - - Mixxx must be restarted before the new locale setting will take effect. - Mixxx debe reiniciarse para que los cambios en la configuración regional surtan efecto. + + Mixxx must be restarted before the new locale or scaling settings will take effect. + @@ -5636,7 +5740,8 @@ You can always drag-and-drop tracks on screen to clone a deck. When key detection is enabled, Mixxx detects the musical key of your tracks and allows you to pitch adjust them for harmonic mixing. - + When key detection is enabled, Mixxx detects the musical key of your tracks +and allows you to pitch adjust them for harmonic mixing. @@ -5681,7 +5786,7 @@ and allows you to pitch adjust them for harmonic mixing. Lancelot/Traditional - + Lancelot/Traditional @@ -5691,7 +5796,7 @@ and allows you to pitch adjust them for harmonic mixing. OpenKey/Traditional - + OpenKey/Traditional @@ -5840,62 +5945,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added Directorio de música agregado - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? Has agregado uno o más directorios de música. Las pistas de estos directorios no estarán disponibles hasta que vuelva a escanear la biblioteca. Le gustaría escanearla ahora? - + Scan Escanear - + Choose a music directory Elija un directorio de música - + Confirm Directory Removal Confirme la eliminación del directorio - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. Mixxx no seguirá observando el directorio por nuevas pistas. Que quiere hacer con las pistas de esta carpeta y subcarpetas que están en la biblioteca?<ul><li>Esconder las pistas de la carpeta y subcarpetas.</li><li>Borrar los metadatos de estas pistas de forma permanente.</li><li>Mantener las pistas en la biblioteca.</li></ul>Esconder las pistas permite guardar los metadatos en caso que quiera volverlas a la bibloteca. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. Metadatos significa todos los detalles de la pista (artista, titulo, cantidad de reproducciones, etc) como cuadrículas de tempo, hotcues y bucles. Este cambio solo afecta a la biblioteca de Mixxx. Ningun archivo en el disco será cambiado o eliminado. - + Hide Tracks Ocultar Pistas - + Delete Track Metadata Eliminar Metadatos de la pista - + Leave Tracks Unchanged Dejar pistas sin cambios - + Relink music directory to new location Reenlazar el directorio de musica en una nueva ubicación - + Select Library Font Seleccionar la Fuente para Biblioteca @@ -5956,7 +6061,7 @@ and allows you to pitch adjust them for harmonic mixing. Write Serato Metadata to files (experimental) - + Write Serato Metadata to files (experimental) @@ -5971,22 +6076,22 @@ and allows you to pitch adjust them for harmonic mixing. Settings Folder - + Settings Folder The Mixxx settings folder contains the library database, various configuration files, log files, track analysis data, as well as custom controller mappings. - + The Mixxx settings folder contains the library database, various configuration files, log files, track analysis data, as well as custom controller mappings. Edit those files only if you know what you are doing and only while Mixxx is not running. - + Edit those files only if you know what you are doing and only while Mixxx is not running. Open Mixxx Settings Folder - + Open Mixxx Settings Folder @@ -6051,28 +6156,28 @@ and allows you to pitch adjust them for harmonic mixing. Automatically write modified track metadata from the library into file tags - + Automatically write modified track metadata from the library into file tags Track Double-Click Action Sets default action when double-clicking a track in the library. - + Track Double-Click Action Add track to Auto DJ queue (bottom) - + Add track to Auto DJ queue (bottom) Add track to Auto DJ queue (top) - + Add track to Auto DJ queue (top) Ignore - + Ignore @@ -6092,12 +6197,12 @@ and allows you to pitch adjust them for harmonic mixing. Show Rekordbox Library - + Show Rekordbox Library Show Serato Library - + Show Serato Library @@ -6284,7 +6389,7 @@ and allows you to pitch adjust them for harmonic mixing. All settings take effect on next track load. Currently loaded tracks are not affected. For an explanation of these settings, see the %1 - + All settings take effect on next track load. Currently loaded tracks are not affected. For an explanation of these settings, see the %1 @@ -6298,27 +6403,27 @@ and allows you to pitch adjust them for harmonic mixing. Recordings directory invalid - + Recordings directory invalid Recordings directory must be set to an existing directory. - + Recordings directory must be set to an existing directory. Recordings directory must be set to a directory. - + Recordings directory must be set to a directory. Recordings directory not writable - + Recordings directory not writable You do not have write access to %1. Choose a recordings directory you have write access to. - + You do not have write access to %1. Choose a recordings directory you have write access to. @@ -6377,12 +6482,12 @@ and allows you to pitch adjust them for harmonic mixing. Recording Files - + Recording Files Directory: - + Directory: @@ -6580,17 +6685,17 @@ Este volumen de referencia es aproximado y asume que la ganancia y el nivel de s To enable Realtime scheduling (currently disabled), see the %1. - + To enable Realtime scheduling (currently disabled), see the %1. The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. Mixxx DJ Hardware Guide - + Mixxx DJ Hardware Guide @@ -6626,12 +6731,12 @@ Este volumen de referencia es aproximado y asume que la ganancia y el nivel de s Main output only - + Main output only Main and booth outputs - + Main and booth outputs @@ -6679,12 +6784,12 @@ Este volumen de referencia es aproximado y asume que la ganancia y el nivel de s Main Mix - + Main Mix Main Output Mode - + Main Output Mode @@ -6753,17 +6858,17 @@ Este volumen de referencia es aproximado y asume que la ganancia y el nivel de s Main Output Delay - + Main Output Delay Headphone Output Delay - + Headphone Output Delay Booth Output Delay - + Booth Output Delay @@ -6845,12 +6950,12 @@ Este volumen de referencia es aproximado y asume que la ganancia y el nivel de s Vinyl Type - + Vinyl Type Lead-In - + Lead-In @@ -6865,12 +6970,12 @@ Este volumen de referencia es aproximado y asume que la ganancia y el nivel de s Deck 3 - + Deck 3 Deck 4 - + Deck 4 @@ -6901,32 +7006,32 @@ Este volumen de referencia es aproximado y asume que la ganancia y el nivel de s DlgPrefWaveform - + Filtered Filtrada - + HSV HSV - + RGB RGB - + OpenGL not available OpenGL no disponible - + dropped frames fotogramas perdidos - + Cached waveforms occupy %1 MiB on disk. Formas de onda almacenadas en caché ocupan %1 MiB en el disco. @@ -7142,74 +7247,74 @@ Elija entre los distintos tipos de visualización para la forma de onda, que se Biblioteca - + Interface Interfaz - + Waveforms Formas de onda - + Auto DJ Auto DJ - + Equalizers Ecualizadores - + Decks Reproductores - + Colors - + Colors - + Crossfader Crossfader - + Effects Efectos - + LV2 Plugins Complementos LV2 - + Recording Grabando - + Beat Detection Detección de pulsaciones - + Key Detection Detección de tonalidad - + Normalization Normalización - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7217,12 +7322,12 @@ Elija entre los distintos tipos de visualización para la forma de onda, que se Control de vinilo - + Live Broadcasting Emisión en vivo - + Modplug Decoder Decodificador Modplug @@ -7262,7 +7367,7 @@ Elija entre los distintos tipos de visualización para la forma de onda, que se Recording to file: - + Recording to file: @@ -7272,7 +7377,7 @@ Elija entre los distintos tipos de visualización para la forma de onda, que se %1 MiB written in %2 - + %1 MiB written in %2 @@ -7280,74 +7385,74 @@ Elija entre los distintos tipos de visualización para la forma de onda, que se Replace Hotcue Color - + Replace Hotcue Color Replace cue color if … - + Replace cue color if … Hotcue index - + Hotcue index is - + is is not - + is not Current cue color - + Current cue color If you don't specify any conditions, the colors of all cues in the library will be replaced. - + If you don't specify any conditions, the colors of all cues in the library will be replaced. … by: - + … by: New cue color - + New cue color Selecting database rows... - + Selecting database rows... No colors changed! - + No colors changed! No cues matched the specified criteria. - + No cues matched the specified criteria. Confirm Color Replacement - + Confirm Color Replacement The colors of %1 cues in %2 tracks will be replaced. This change cannot be undone! Are you sure? - + The colors of %1 cues in %2 tracks will be replaced. This change cannot be undone! Are you sure? @@ -7363,123 +7468,123 @@ Elija entre los distintos tipos de visualización para la forma de onda, que se Seleccione la mejor coincidencia posible - - + + Track Pista - - + + Year Año - + Title Título - - + + Artist Artista - - + + Album Álbum - + Album Artist Artista del álbum - + Fetching track data from the MusicBrainz database Obteniendo datos de la pista desde la base de datos MusicBrainz - + Mixxx could not find this track in the MusicBrainz database. Mixxx no pudo encontrar esta pista en la base de datos de MusicBrainz. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. Obtener la clave de API - + Submit Submits audio fingerprints to the MusicBrainz database. Enviar - + New Column Nueva columna - + New Item Nuevo Item - + &Previous &Previo - + &Next &Siguiente - + &Apply &Aplicar - + &Close &Cerrar - + Status: %1 Estado: %1 - + HTTP Status: %1 Estado HTTP: %1 - + Code: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx no se puede conectar a %1 por una razón desconocida. - + Mixxx can't connect to %1. Mixxx no se puede conectar a %1. - + Original tags Etiquetas originales - + Suggested tags Etiquetas sugeridas @@ -7679,12 +7784,12 @@ Elija entre los distintos tipos de visualización para la forma de onda, que se Re-Import Metadata from file - + Re-Import Metadata from file Date added: - + Date added: @@ -7701,7 +7806,9 @@ Elija entre los distintos tipos de visualización para la forma de onda, que se Converts beats detected by the analyzer into a fixed-tempo beatgrid. Use this setting if your tracks have a constant tempo (e.g. most electronic music). Often results in higher quality beatgrids, but will not do well on tracks that have tempo shifts. - + Converts beats detected by the analyzer into a fixed-tempo beatgrid. +Use this setting if your tracks have a constant tempo (e.g. most electronic music). +Often results in higher quality beatgrids, but will not do well on tracks that have tempo shifts. @@ -7871,17 +7978,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) Soundtouch (rápido) - + Rubberband (better) Rubberband (mejor) - + Unknown (bad value) Desconocido (valor erróneo) @@ -7935,7 +8042,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h RGB Stacked - + RGB Stacked @@ -7982,38 +8089,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes iTunes - - + + Select your iTunes library Seleccione su biblioteca de iTunes - + (loading) iTunes (cargando) iTunes - + Use Default Library Usar la biblioteca predeterminada - + Choose Library... Escoger Biblioteca... - + Error Loading iTunes Library Error Cargando la Biblioteca de iTunes - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. Hubo un error cuando se leía la biblioteca de iTunes. Algunas de las pistas o de las listas de reproducción de iTunes tal vez no hayan sido leídas. @@ -8021,13 +8128,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. Modo Seguro Activado - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8036,57 +8143,57 @@ support. de OpenGL. - + activate activar - + toggle conmutar - + right derecha - + left izquierda - + right small derecha pequeño - + left small izquierda pequeño - + up arriba - + down abajo - + up small arriba pequeño - + down small abajo pequeño - + Shortcut Atajo @@ -8107,22 +8214,22 @@ de OpenGL. LibraryFeature - + Import Playlist Importar lista de reproducción - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Archivos de lista de reproducción (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? ¿Sobrescribir archivo? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8133,27 +8240,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Analizador de biblioteca - + It's taking Mixxx a minute to scan your music library, please wait... Mixxx necesita unos minutos para escanear la biblioteca de música. Por favor, espere... - + Cancel Cancelar - + Scanning: Analizando: - + Scanning cover art (safe to cancel) Escaneando las carátulas (se puede cancelar sin problemas) @@ -8181,12 +8288,12 @@ Do you really want to overwrite it? One or more MixxxControls specified in the outputs section of the loaded mapping were invalid. - + One or more MixxxControls specified in the outputs section of the loaded mapping were invalid. * Make sure the MixxxControls in question actually exist. Visit the manual for a complete list: - + * Make sure the MixxxControls in question actually exist. Visit the manual for a complete list: @@ -8221,7 +8328,7 @@ Do you really want to overwrite it? For help with database issues consult: - + For help with database issues consult: @@ -8259,7 +8366,7 @@ Do you really want to overwrite it? Export to Engine Prime - + Export to Engine Prime @@ -8270,183 +8377,185 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy El dispositivo de sonido está ocupado - + <b>Retry</b> after closing the other application or reconnecting a sound device <b>Reintente</b> luego de cerrar las otras aplicaciones o reconectar un dispositivo de sonido - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. <b>Reconfigure</b> las opciones del dispositivo de sonido de Mixxx. - - + + Get <b>Help</b> from the Mixxx Wiki. Obtenga <b>ayuda</b> del wiki de Mixxx. - - - + + + <b>Exit</b> Mixxx. <b>Salir</b> de Mixxx. - + Retry Reintentar - + skin - + skin - - + + Reconfigure Reconfigurar - + Help Ayuda - - + + Exit Salir - - + + Mixxx was unable to open all the configured sound devices. Mixxx no ha podido activar todos los dispositivos de sonido configurados. - + Sound Device Error Error del dispositivo de sonido - + <b>Retry</b> after fixing an issue <b>Reintenta</b> una vez corregido el problema - + No Output Devices No hay dispositivos de salida - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. Mixxx fue configurado sin ningún dispositivo de salida de audio. El procesamiento de audio estará desactivado mientras no se configure un dispositivo de audio de salida. - + <b>Continue</b> without any outputs. <b>Continuar</b> sin ninguna salida. - + Continue Continuar - + Load track to Deck %1 Cargar pista al plato %1 - + Deck %1 is currently playing a track. El plato %1 está reproduciendo una pista. - + Are you sure you want to load a new track? ¿Está seguro de cargar una pista nueva? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. No hay ningún dispositivo de entrada seleccionado para el control por vinilo. Por favor, seleccione un dispositivo de entrada en las preferencias de hardware de sonido. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. No hay ningún dispositivo de entrada seleccionado para el control passthrough. Por favor, seleccione un dispositivo de entrada en las preferencias de hardware de sonido. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this microphone. +Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + There is no input device selected for this auxiliary. +Do you want to select an input device? - + Error in skin file Error en el archivo de la apariencia - + The selected skin cannot be loaded. No se ha podido cargar la apariencia seleccionada. - + OpenGL Direct Rendering OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. El renderizado directo no está habilitado en su máquina. <br><br>Esto significa que las visualizaciones de forma de onda serán muy <br>lentas y pueden exigir mucho a su CPU<b>. Actualice su <br>configuración para habilitar la representación directa o desactiv<br> las visualizaciones de forma de onda en las preferencias de Mixxx seleccionando <br>"Vacío" como la pantalla de forma de onda en la sección 'Interfaz'. - - - + + + Confirm Exit Confirmar salida - + A deck is currently playing. Exit Mixxx? Un plato está reproduciendo. ¿Salir de Mixxx? - + A sampler is currently playing. Exit Mixxx? Un reproductor de muestras está en reproducción. ¿Salir de Mixxx? - + The preferences window is still open. La ventana de preferencias todavía está abierta. - + Discard any changes and exit Mixxx? ¿Descartar cambios y salir de Mixxx? @@ -8519,43 +8628,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Bloquear - + Playlists Listas de reproducción - + Unlock Desbloquear - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. Algunos DJ preparan listas de reproducción antes de tocar en vivo, pero otros prefieren hacerlo en el momento. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. Cuando uses una lista de reproducción en una actuación en vivo, recuerda siempre prestar mucha atención a cómo reacciona la audiencia con la música que has elegido reproducir. - + Create New Playlist Crear nueva lista de reproducción @@ -8563,59 +8672,59 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx Actualizando Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? Mixxx ha añadido soporte para mostrar carátulas. ¿Desea escanear la biblioteca ahora para encontrar las carátulas? - + Scan Escanear - + Later Después - + Upgrading Mixxx from v1.9.x/1.10.x. Actualizar Mixxx desde v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. Mixxx ahora tiene un nuevo y mejorado analizador de ritmo. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. Cuando cargas pistas, Mixxx puede reanalizarlas y generar cuadrículas de tempo nuevas y más precisas. Esto hará que la sincronización y los Loops sean más fiables. - + This does not affect saved cues, hotcues, playlists, or crates. Esto no afecta a los Cues, Hotcues, listas de reproducción o cajas guardados/as. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. Si no quieres que Mixxx reanalize tus pistas, elige "Mantener las cuadrículas de tempo actuales". Puedes cambiar esta configuración en cualquier momento desde la sección "Detección de Beats" de la ventana Preferencias. - + Keep Current Beatgrids Mantener las cuadrículas de tempo actuales - + Generate New Beatgrids Generar nuevas cuadrículas de tempo @@ -8731,7 +8840,7 @@ Do you want to scan your library for cover files now? Main - + Main @@ -8796,10 +8905,10 @@ Do you want to scan your library for cover files now? Using Opus at samplerates other than 48 kHz is not supported by the Opus encoder. Please use 48000 Hz in "Sound Hardware" preferences or switch to a different encoding. - + Using Opus at samplerates other than 48 kHz is not supported by the Opus encoder. Please use 48000 Hz in "Sound Hardware" preferences or switch to a different encoding. - + Encoder Codificador @@ -8815,7 +8924,11 @@ Do you want to scan your library for cover files now? %1 After clicking OK, you will see a file picker. Please select '%2' to proceed or click Cancel if you don't want to grant Mixxx access and abort this action. - + Your permission is required to access the following location: + +%1 + +After clicking OK, you will see a file picker. Please select '%2' to proceed or click Cancel if you don't want to grant Mixxx access and abort this action. @@ -8825,7 +8938,7 @@ After clicking OK, you will see a file picker. Please select '%2' to p Upgrading old Mixxx settings - + Upgrading old Mixxx settings @@ -8834,7 +8947,11 @@ After clicking OK, you will see a file picker. Please select '%2' to p To allow Mixxx to use your old library and settings, click the Open button in the file selection dialog. Mixxx will then move your old settings into the sandbox. This only needs to be done once. If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx will create a new music library and use default settings. - + Due to macOS sandboxing, Mixxx needs your permission to access your music library and settings from Mixxx versions before 2.3.0. After clicking OK, you will see a file selection dialog. + +To allow Mixxx to use your old library and settings, click the Open button in the file selection dialog. Mixxx will then move your old settings into the sandbox. This only needs to be done once. + +If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx will create a new music library and use default settings. @@ -9892,53 +10009,53 @@ Todo a la derecha: final del período Parameters of %1 - + Parameters of %1 Queen Mary University London - + Queen Mary University London Queen Mary Tempo and Beat Tracker - + Queen Mary Tempo and Beat Tracker Queen Mary Key Detector - + Queen Mary Key Detector SoundTouch BPM Detector (Legacy) - + SoundTouch BPM Detector (Legacy) Constrained VBR - + Constrained VBR CBR - + CBR Full VBR (bitrate ignored) - + Full VBR (bitrate ignored) White Noise - + White Noise Mix white noise with the input signal - + Mix white noise with the input signal @@ -9948,39 +10065,39 @@ Todo a la derecha: final del período Crossfade the noise with the dry signal - + Crossfade the noise with the dry signal - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. MP3 encoding is not supported. Lame could not be initialized - + MP3 encoding is not supported. Lame could not be initialized OGG recording is not supported. OGG/Vorbis library could not be initialized. - + OGG recording is not supported. OGG/Vorbis library could not be initialized. encoder failure - + encoder failure Failed to apply the selected settings. - + Failed to apply the selected settings. @@ -10094,63 +10211,63 @@ Todo a la derecha: final del período RekordboxFeature - - - + + + Rekordbox - + Rekordbox - + Playlists Listas de reproducción - + Folders - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Beatgrids - + Memory cues - + Memory cues - + (loading) Rekordbox - + (loading) Rekordbox RhythmboxFeature - + Rhythmbox Rhythmbox @@ -10175,7 +10292,7 @@ Todo a la derecha: final del período Mixxx Sampler Banks (*%1) - + Mixxx Sampler Banks (*%1) @@ -10201,36 +10318,36 @@ Todo a la derecha: final del período SeratoFeature - - - + + + Serato - + Serato - + Reads the following from the Serato Music directory and removable devices: - + Reads the following from the Serato Music directory and removable devices: - + Tracks Pistas - + Crates Cajas - + Check for Serato databases (refresh) - + Check for Serato databases (refresh) - + (loading) Serato - + (loading) Serato @@ -10238,12 +10355,12 @@ Todo a la derecha: final del período Join with previous (below) - + Join with previous (below) Finish current and start new - + Finish current and start new @@ -10251,12 +10368,12 @@ Todo a la derecha: final del período Historial - + Unlock Desbloquear - + Lock Bloquear @@ -10357,22 +10474,22 @@ Todo a la derecha: final del período Unknown stream encoding format! - + Unknown stream encoding format! Use a libshout version with %1 enabled - + Use a libshout version with %1 enabled Error setting stream encoding format! - + Error setting stream encoding format! Broadcasting at 96 kHz with Ogg Vorbis is not currently supported. Please try a different sample rate or switch to a different encoding. - + Broadcasting at 96 kHz with Ogg Vorbis is not currently supported. Please try a different sample rate or switch to a different encoding. @@ -10382,7 +10499,7 @@ Todo a la derecha: final del período Unsupported sample rate - + Unsupported sample rate @@ -10397,7 +10514,7 @@ Todo a la derecha: final del período Error: Shoutcast only supports MP3 and AAC encoders - + Error: Shoutcast only supports MP3 and AAC encoders @@ -10550,12 +10667,12 @@ Todo a la derecha: final del período Identifying track through Acoustid - + Identifying track through Acoustid Retrieving metadata from MusicBrainz - + Retrieving metadata from MusicBrainz @@ -10578,7 +10695,7 @@ Todo a la derecha: final del período Double-click - + Double-click @@ -10588,7 +10705,7 @@ Todo a la derecha: final del período Shift-key - + Shift-key @@ -10709,22 +10826,22 @@ Todo a la derecha: final del período Auxiliary Volume Meter - + Auxiliary Volume Meter Shows the current auxiliary volume. - + Shows the current auxiliary volume. Auxiliary Peak Indicator - + Auxiliary Peak Indicator Indicates when the signal on the auxiliary is clipping, - + Indicates when the signal on the auxiliary is clipping, @@ -10911,12 +11028,12 @@ Todo a la derecha: final del período Auxiliary Gain - + Auxiliary Gain Adjusts the pre-fader auxiliary gain. - + Adjusts the pre-fader auxiliary gain. @@ -11173,7 +11290,7 @@ Todo a la derecha: final del período (while previewing) - + (while previewing) @@ -11193,7 +11310,7 @@ Todo a la derecha: final del período Is latching the playing state. - + Is latching the playing state. @@ -11213,6 +11330,31 @@ Todo a la derecha: final del período Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. @@ -11223,27 +11365,27 @@ Todo a la derecha: final del período Tempo Range Display - + Tempo Range Display Displays the current range of the tempo slider. - + Displays the current range of the tempo slider. Delete selected hotcue. - + Delete selected hotcue. Opens separate artwork viewer. - + Opens separate artwork viewer. Select and configure a hardware device for this input - + Select and configure a hardware device for this input @@ -11253,196 +11395,196 @@ Todo a la derecha: final del período Big Spinny/Cover Art - + Big Spinny/Cover Art Show a big version of the Spinny or track cover art if enabled. - + Show a big version of the Spinny or track cover art if enabled. Main Output Peak Indicator - + Main Output Peak Indicator Indicates when the signal on the main output is clipping, - + Indicates when the signal on the main output is clipping, Main Output L Peak Indicator - + Main Output L Peak Indicator Indicates when the left signal on the main output is clipping, - + Indicates when the left signal on the main output is clipping, Main Output R Peak Indicator - + Main Output R Peak Indicator Indicates when the right signal on the main output is clipping, - + Indicates when the right signal on the main output is clipping, Main Channel L Volume Meter - + Main Channel L Volume Meter Shows the current volume for the left channel of the main output. - + Shows the current volume for the left channel of the main output. Shows the current volume for the right channel of the main output. - + Shows the current volume for the right channel of the main output. Main Output Gain - + Main Output Gain Adjusts the main output gain. - + Adjusts the main output gain. Determines the main output by fading between the left and right channels. - + Determines the main output by fading between the left and right channels. Adjusts the left/right channel balance on the main output. - + Adjusts the left/right channel balance on the main output. Crossfades the headphone output between the main mix and cueing (PFL or Pre-Fader Listening) signal. - + Crossfades the headphone output between the main mix and cueing (PFL or Pre-Fader Listening) signal. If activated, the main mix signal plays in the right channel, while the cueing signal plays in the left channel. - + If activated, the main mix signal plays in the right channel, while the cueing signal plays in the left channel. Show/hide Cover Art of the selected track in the library. - + Show/hide Cover Art of the selected track in the library. Show/hide the scrolling waveforms - + Show/hide the scrolling waveforms Show/hide the beatgrid controls section - + Show/hide the beatgrid controls section Hide all skin sections except the decks to have more screen space for the track library. - + Hide all skin sections except the decks to have more screen space for the track library. Volume Meters - + Volume Meters Show/hide volume meters for channels and master output. - + Show/hide volume meters for channels and master output. mix microphone input into the main output. - + mix microphone input into the main output. Auto: Automatically reduce music volume when microphone volume rises above threshold. - + Auto: Automatically reduce music volume when microphone volume rises above threshold. Adjust the amount the music volume is reduced with the Strength knob. - + Adjust the amount the music volume is reduced with the Strength knob. Auto: Sets how much to reduce the music volume when the volume of active microphones rises above threshold. - + Auto: Sets how much to reduce the music volume when the volume of active microphones rises above threshold. Manual: Sets how much to reduce the music volume, when talkover is activated regardless of volume of microphone inputs. - + Manual: Sets how much to reduce the music volume, when talkover is activated regardless of volume of microphone inputs. Shift cues earlier - + Shift cues earlier Shift cues imported from Serato or Rekordbox if they are slightly off time. - + Shift cues imported from Serato or Rekordbox if they are slightly off time. Left click: shift 10 milliseconds earlier - + Left click: shift 10 milliseconds earlier Right click: shift 1 millisecond earlier - + Right click: shift 1 millisecond earlier Shift cues later - + Shift cues later Left click: shift 10 milliseconds later - + Left click: shift 10 milliseconds later Right click: shift 1 millisecond later - + Right click: shift 1 millisecond later Mutes the selected channel's audio in the main output. - + Mutes the selected channel's audio in the main output. Main mix enable - + Main mix enable Hold or short click for latching to mix this input into the main output. - + Hold or short click for latching to mix this input into the main output. @@ -11452,12 +11594,12 @@ Todo a la derecha: final del período Auto DJ is active - + Auto DJ is active Hot Cue - Track will seek to nearest previous hotcue point. - + Hot Cue - Track will seek to nearest previous hotcue point. @@ -11617,17 +11759,17 @@ Todo a la derecha: final del período Hint: Change the time format in Preferences -> Decks. - + Hint: Change the time format in Preferences -> Decks. Show/hide intro & outro markers and associated buttons. - + Show/hide intro & outro markers and associated buttons. Intro Start Marker - + Intro Start Marker @@ -11635,7 +11777,7 @@ Todo a la derecha: final del período If marker is set, jumps to the marker. - + If marker is set, jumps to the marker. @@ -11643,7 +11785,7 @@ Todo a la derecha: final del período If marker is not set, sets the marker to the current play position. - + If marker is not set, sets the marker to the current play position. @@ -11651,22 +11793,22 @@ Todo a la derecha: final del período If marker is set, clears the marker. - + If marker is set, clears the marker. Intro End Marker - + Intro End Marker Outro Start Marker - + Outro Start Marker Outro End Marker - + Outro End Marker @@ -11713,7 +11855,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Route the main mix through this effect unit. - + Route the main mix through this effect unit. @@ -12202,27 +12344,27 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Drag this item to other decks/samplers, to crates and playlist or to external file manager. - + Drag this item to other decks/samplers, to crates and playlist or to external file manager. Shows information about the track currently loaded in this deck. - + Shows information about the track currently loaded in this deck. Left click to jump around in the track. - + Left click to jump around in the track. Right click hotcues to edit their labels and colors. - + Right click hotcues to edit their labels and colors. Right click anywhere else to show the time at that point. - + Right click anywhere else to show the time at that point. @@ -12358,12 +12500,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Opens the track properties editor - + Opens the track properties editor Opens the track context menu. - + Opens the track context menu. @@ -12390,11 +12532,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize Sincronización antígua - - - (This skin should be updated to use Master Sync!) - (La apariencia seleccionada no soporta la característica de sincronización con el maestro.) - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12410,16 +12547,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. Los platos no se pueden sincronizar con los reproductors de muestras, y los reproductors de mezclas sólo se pueden sincronizar con los platos. - - - Enable Master Sync - Activar la sincronización maestra - - - - Tap to sync the tempo to other playing tracks or the master clock. - Pulse para sincronizar el tiempo con otras pistas en reproducción o con el reloj maestro. - Hold for at least a second to enable sync lock for this deck. @@ -12435,16 +12562,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. Resetea la clave musical a la original de la pista. - - - Enable Sync Clock Master - Activar el reloj maestro de sincronización - - - - When enabled, this device will serve as the master clock for all other decks. - Cuando está activado, este dispositivo servirá como master clock para los otros platos. - Speed Control @@ -12480,7 +12597,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Opens a menu to clear hotcues or edit their labels and colors. - + Opens a menu to clear hotcues or edit their labels and colors. @@ -12998,22 +13115,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor Traktor - + (loading) Traktor (cargando) Traktor - + Error Loading Traktor Library Error cargando la biblioteca de Traktor - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. Hubo un error cargando la biblioteca de Traktor. Algunas de la listas de reproducción o canciones pueden no haberse cargado. @@ -13069,12 +13186,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. No color - + No color Custom color - + Custom color @@ -13113,32 +13230,32 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Cue number - + Cue number Cue position - + Cue position Edit cue label - + Edit cue label Label... - + Label... Delete this cue - + Delete this cue Hotcue #%1 - + Hotcue #%1 @@ -13234,12 +13351,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. E&xport Library to Engine Prime - + E&xport Library to Engine Prime Export the library to the Engine Prime format - + Export the library to the Engine Prime format @@ -13552,19 +13669,19 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Show Keywheel menu title - + Show Keywheel Show keywheel tooltip text - + Show keywheel F12 Menubar|View|Show Keywheel - + F12 @@ -13625,23 +13742,23 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Paso - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - + Ready to play, analyzing... - - + + Loading track... Text on waveform overview when file is cached from source - + Loading track... - + Finalizing... Text on waveform overview during finalizing of waveform analysis - + Finalizing... @@ -13678,7 +13795,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Clear the search bar input field - + Clear the search bar input field @@ -13688,12 +13805,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Use operators like bpm:115-128, artist:BooFar, -year:1990 - + Use operators like bpm:115-128, artist:BooFar, -year:1990 For more information see User Manual > Mixxx Library - + For more information see User Manual > Mixxx Library @@ -13721,13 +13838,13 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Ctrl+Space - + Ctrl+Space Toggle search history Shows/hides the search history entries - + Toggle search history @@ -13746,7 +13863,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Search related Tracks - + Search related Tracks @@ -13756,7 +13873,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. harmonic with %1 - + harmonic with %1 @@ -13766,7 +13883,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. between %1 and %2 - + between %1 and %2 @@ -13809,8 +13926,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Género - - Folder + + Directory @@ -13849,7 +13966,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Update external collections - + Update external collections @@ -13859,12 +13976,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Adjust BPM - + Adjust BPM Select Color - + Select Color @@ -13975,12 +14092,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Intro - + Intro Outro - + Outro @@ -14050,166 +14167,171 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Reset BPM + Reset BPM + + + + Update ReplayGain from Deck Gain - + Deck %1 Plato %1 - + Sampler %1 Reproductor de muestras %1 - + Importing metadata of %n track(s) from file tags - + Importing metadata of %n track(s) from file tagsImporting metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - + Marking metadata of %n track(s) to be exported into file tagsMarking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Crear nueva lista de reproducción - + Enter name for new playlist: Escriba un nombre para la nueva lista de reproducción: - + New Playlist Nueva lista de reproducción - - - + + + Playlist Creation Failed Ha fallado la creación de la lista de reproducción - + A playlist by that name already exists. Ya existe una lista de reproducción con ese nombre. - + A playlist cannot have a blank name. El nombre de la lista de reproducción no puede quedar en blanco. - + An unknown error occurred while creating playlist: Se ha producido un error desconocido al crear la lista de reproducción: - + Add to New Crate - + Add to New Crate - + Scaling BPM of %n track(s) - + Scaling BPM of %n track(s)Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Locking BPM of %n track(s)Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Unlocking BPM of %n track(s)Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Setting color of %n track(s)Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting play count of %n track(s)Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Resetting beats of %n track(s)Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Clearing rating of %n track(s)Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing main cue from %n track(s)Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing outro cue from %n track(s)Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing intro cue from %n track(s)Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing loop cues from %n track(s)Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Removing hot cues from %n track(s)Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting keys of %n track(s)Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting replay gain of %n track(s)Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting waveform of %n track(s)Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Resetting all performance metadata of %n track(s)Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Setting cover art of %n track(s)Setting cover art of %n track(s) - + Reloading cover art of %n track(s) - + Reloading cover art of %n track(s)Reloading cover art of %n track(s) WTrackTableView - + ESC Focus ESC @@ -14246,128 +14368,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects.(GL ES) - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + fonts - + database - + database - + effects - + effects - + audio interface - + audio interface - + decks - + decks - + library - + library - + Choose music library directory Elija el directorio de la biblioteca de la música - + controllers - + controllers - + Cannot open database No se puede abrir la base de datos - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14383,12 +14432,12 @@ Pulse Aceptar para salir. Entire music library - + Entire music library Selected crates - + Selected crates @@ -14398,12 +14447,12 @@ Pulse Aceptar para salir. Export directory - + Export directory Database version - + Database version @@ -14418,37 +14467,37 @@ Pulse Aceptar para salir. Export Library to Engine Prime - + Export Library to Engine Prime Export Library To - + Export Library To No Export Directory Chosen - + No Export Directory Chosen No export directory was chosen. Please choose a directory in order to export the music library. - + No export directory was chosen. Please choose a directory in order to export the music library. A database already exists in the chosen directory, but it is of an unsupported version. Export is not guaranteed to succeed in this situation. - + A database already exists in the chosen directory, but it is of an unsupported version. Export is not guaranteed to succeed in this situation. A database already exists in the chosen directory. Exported tracks will be added into this database. - + A database already exists in the chosen directory. Exported tracks will be added into this database. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14469,27 +14518,27 @@ Pulse Aceptar para salir. Export Completed - + Export Completed Exported %1 track(s) and %2 crate(s). - + Exported %1 track(s) and %2 crate(s). Export Failed - + Export Failed Export failed: %1 - + Export failed: %1 Exporting to Engine Prime... - + Exporting to Engine Prime... @@ -14497,70 +14546,70 @@ Pulse Aceptar para salir. Abort - + Abort mixxx::hid::DeviceCategory - + HID Interface %1: - + HID Interface %1: - + Generic HID Pointer - + Generic HID Pointer - + Generic HID Mouse Ratón HID genérico - + Generic HID Joystick Joystick HID genérico - + Generic HID Game Pad - + Generic HID Game Pad - + Generic HID Keyboard Teclado HID genérico - + Generic HID Keypad - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown Apple HID Device: - + Unknown HID Device: - + Unknown HID Device: @@ -14568,7 +14617,7 @@ Pulse Aceptar para salir. No network access - + No network access @@ -14576,7 +14625,7 @@ Pulse Aceptar para salir. No effect loaded. - + Ningún efecto cargado. \ No newline at end of file diff --git a/res/translations/mixxx_es_ES.qm b/res/translations/mixxx_es_ES.qm index 1e8c281352e6b183eef265c32094f4416d2c4971..a63d74661a0e9c36dc931c46ac3a1697c5d52780 100644 GIT binary patch delta 22010 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 UYs@OJCFW%tEyAaynkWeW0OlvnX#fBK delta 24801 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 z zfM`JhYP;+vYP3exnLw%Y<(1n++oa;lRvRe^=!DexE3KZ+(3+A{1{L4l`thlXFT{78 X%IObv+PSWsd*shAPP!lHi-PcPula0f diff --git a/res/translations/mixxx_es_ES.ts b/res/translations/mixxx_es_ES.ts index 1cc4432bfc2..7bbe6be2f72 100644 --- a/res/translations/mixxx_es_ES.ts +++ b/res/translations/mixxx_es_ES.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Cajones - + Remove Crate as Track Source Quitar cajón como fuente de pistas - + Auto DJ Auto DJ - + Add Crate as Track Source Usar cajón como fuente de pistas @@ -43,25 +43,25 @@ BansheeFeature - + Banshee Banshee - - + + Error loading Banshee database Error al cargar la base de datos de Banshee - + Banshee database file not found at No se ha encontrado la base de datos de Banshee en - + There was an error loading your Banshee database at Ha habido un error al cargar su base de datos de Banshee en @@ -71,32 +71,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Añadir a la cola de Auto DJ (al final) - + Add to Auto DJ Queue (top) Añadir a la cola de Auto DJ (al principio) - + Add to Auto DJ Queue (replace) Añadir a la cola de Auto DJ (reemplaza) - + Import Playlist Importar lista de reproducción - + Playlist Creation Failed Ha fallado la creación de la lista de reproducción - + An unknown error occurred while creating playlist: Se ha producido un error desconocido al crear la lista de reproducción: @@ -104,144 +104,144 @@ BasePlaylistFeature - + New Playlist Nueva lista de reproducción - + Add to Auto DJ Queue (bottom) Añadir a la cola de Auto DJ (al final) - - + + Create New Playlist Crear nueva lista de reproducción - + Add to Auto DJ Queue (top) Añadir a la cola de Auto DJ (al principio) - + Remove Quitar - + Rename Renombrar - + Lock Bloquear - + Duplicate Duplicar - - + + Import Playlist Importar lista de reproducción - + Export Track Files Exportar pistas - + Analyze entire Playlist Analizar toda la lista de reproducción - + Enter new name for playlist: Escriba un nuevo nombre para la lista de reproducción: - + Duplicate Playlist Duplicar lista de reproducción - - + + Enter name for new playlist: Escriba un nombre para la nueva lista de reproducción: - - + + Export Playlist Exportar lista de reproducción - + Add to Auto DJ Queue (replace) Añadir a la cola de Auto DJ (reemplaza) - + Rename Playlist Renombrar lista de reproducción - - + + Renaming Playlist Failed Ha fallado el renombrado de la lista de reproducción - - - + + + A playlist by that name already exists. Ya existe una lista de reproducción con ese nombre. - - - + + + A playlist cannot have a blank name. El nombre de la lista de reproducción no puede quedar en blanco. - + _copy //: Appendix to default name when duplicating a playlist _copia - - - - - - + + + + + + Playlist Creation Failed Ha fallado la creación de la lista de reproducción - - + + An unknown error occurred while creating playlist: Se ha producido un error desconocido al crear la lista de reproducción: - + M3U Playlist (*.m3u) Lista de reproducción M3U (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Lista de reproducción M3U (*.m3u);;Lista de reproducción M3U8 (*.m3u8);;Lista de reproducción PLS (*.pls);;Texto CSV (*.csv);;Texto legible (*.txt) @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. No se ha podido cargar la pista. @@ -514,7 +514,7 @@ - + Computer Equipo @@ -534,7 +534,7 @@ Escanear - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. "Equipo" te permite navegar, ver y abrir las pistas de las carpetas del disco duro o de dispositivos externos. @@ -647,12 +647,12 @@ Fecha creación - + Mixxx Library Biblioteca de Mixxx - + Could not load the following file because it is in use by Mixxx or another application. No se ha podido cargar el siguiente archivo debido a que Mixxx u otra aplicación lo esta usando. @@ -683,6 +683,89 @@ The file '%1' is empty and could not be loaded. + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + Starts Mixxx in full-screen mode + + + + Use a custom locale for loading translations. (e.g 'fr') + Use a custom locale for loading translations. (e.g 'fr') + + + + Top-level directory where Mixxx should look for settings. Default is: + Top-level directory where Mixxx should look for settings. Default is: + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + [auto|always|never] Use colors on the console output. + [auto|always|never] Use colors on the console output. + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + ColorPaletteEditor @@ -865,13 +948,13 @@ - + Set to full volume Establecer a volumen máximo - + Set to zero volume Establecer a volumen cero @@ -896,13 +979,13 @@ Botón Reproduce hacia atrás (con censura) - + Headphone listen button Botón de escucha por Auriculares - + Mute button Botón de silencio @@ -918,25 +1001,25 @@ - + Mix orientation (e.g. left, right, center) Orientación de la mezcla (p. ej. izquierda, derecha, centro) - + Set mix orientation to left Establecer orientación de la mezcla hacia la izquierda - + Set mix orientation to center Establecer orientación de la mezcla al centro - + Set mix orientation to right Establecer orientación de la mezcla hacia la derecha @@ -980,36 +1063,6 @@ Toggle quantize mode Conmutar el modo de cuantización - - - Increase internal master BPM by 1 - Incrementar BPM maestro interno en 1 - - - - Decrease internal master BPM by 1 - Disminuir BPM maestro interno en 1 - - - - Increase internal master BPM by 0.1 - Incrementar BPM maestro interno en 0,1 - - - - Decrease internal master BPM by 0.1 - Disminuir BPM maestro interno en 0,1 - - - - Toggle sync master - Conmutar maestro de sincronización - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - Botón de modo de sincronización de 3 estados (Desactivado, Esclavo, Maestro) - One-time beat sync (tempo only) @@ -1021,7 +1074,7 @@ Sincronizar por unica vez (sólo la fase) - + Toggle keylock mode Conmutar bloqueo tonal @@ -1031,199 +1084,199 @@ Ecualizadores - + Vinyl Control Control de vinilo - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) Conmutar el modo de puntos cue del control de vinilo (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) Conmutar el control de vinilo (Absoluto/Relativo/Constante) - + Pass through external audio into the internal mixer Pasar audio externo al mezclador interno - + Cues Puntos cue - + Cue button Botón de Cue - + Set cue point Establecer punto de Cue - + Go to cue point Ir al Cue - + Go to cue point and play Ir al Cue y reproducir - + Go to cue point and stop Ir al punto de Cue y parar - + Preview from cue point Preescuchar desde punto Cue - + Cue button (CDJ mode) Boton Cue (modo CDJ) - + Stutter cue Reproducir Cue (Stutter) - + Hotcues Hotcues - + Set, preview from or jump to hotcue %1 Establecer, preescuchar o saltar al hotcue %1 - + Clear hotcue %1 Borrar hotcue %1 - + Set hotcue %1 Establecer Hotcue %1 - + Jump to hotcue %1 Saltar al hotcue %1 - + Jump to hotcue %1 and stop Saltar al hotcue %1 y parar - + Jump to hotcue %1 and play Saltar al hotcue %1 y reproducir - + Preview from hotcue %1 Preescucha Hotcue %1 - - + + Hotcue %1 Hotcue %1 - + Looping Repetición - + Loop In button Botón de inicio del bucle - + Loop Out button Botón de fin de bucle - + Loop Exit button Botón de salida de bucle - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 32 - + 64 64 - + Move loop forward by %1 beats Mover el bucle hacia adelante en %1 pulsaciones - + Move loop backward by %1 beats Mover el bucle hacia atrás en %1 pulsaciones - + Create %1-beat loop Crear bucle de %1 pulsaciones - + Create temporary %1-beat loop roll Crear bucle temporal corredizo de %1 pulsaciones - + Library Biblioteca @@ -1334,20 +1387,20 @@ - - + + Volume Fader Deslizador de Volumen - + Full Volume Volumen máximo - + Zero Volume Volumen cero @@ -1363,7 +1416,7 @@ - + Mute Silenciar @@ -1374,7 +1427,7 @@ - + Headphone Listen Escuchar por auriculares @@ -1395,25 +1448,25 @@ - + Orientation Orientación - + Orient Left Orientar a la izquierda - + Orient Center Orientar al centro - + Orient Right Orientar a la derecha @@ -1512,52 +1565,6 @@ Sync Sincronizar - - - Sync Mode - Modo de sincronización - - - - Internal Sync Master - Sincronización Maestra interno - - - - Toggle Internal Sync Master - Conmutar el modo de sincronización maestra interno - - - - - Internal Master BPM - BPM maestro interno - - - - Internal Master BPM +1 - BPM maestro interno +1 - - - - Internal Master BPM -1 - BPM maestro interno -1 - - - - Internal Master BPM +0.1 - BPM maestro interno +0,1 - - - - Internal Master BPM -0.1 - BPM maestro interno -0,1 - - - - Sync Master - Sicronización Maestra - Beat Sync One-Shot @@ -1574,37 +1581,37 @@ Sincronizar Fase al momento - + Pitch control (does not affect tempo), center is original pitch Control de velocidad (No afecta el tempo), al centro es la velocidad original - + Pitch Adjust Ajuste de velocidad - + Adjust pitch from speed slider pitch Ajuste la velocidad desde el deslizador de velocidad - + Match musical key Coincidir con clave musical - + Match Key Cuadrar tonalidad (clave) - + Reset Key Restablecer tonalidad - + Resets key to original Restablecer tonalidad a la original @@ -1645,466 +1652,466 @@ Ecualización de Graves - + Toggle Vinyl Control Conmutar el control del vinilo - + Toggle Vinyl Control (ON/OFF) Conmutar el control de vinilo (ON/OFF) - + Vinyl Control Mode Modo de control de vinilo - + Vinyl Control Cueing Mode Modo de Cue en Control por Vinilo - + Vinyl Control Passthrough Passthrough en Control por Vinilo - + Vinyl Control Next Deck siguiente plato en Control por vinilo - + Single deck mode - Switch vinyl control to next deck Modo de plato único - Cambia el control de vinilo al siguiente plato - + Cue Cue - + Set Cue Establecer punto cue - + Go-To Cue Ir al Cue - + Go-To Cue And Play Ir a Cue y reproducir - + Go-To Cue And Stop Ir al Cue y detener - + Preview Cue Preescuchar Cue - + Cue (CDJ Mode) Cue (modo CDJ) - + Stutter Cue Reproducir Cue (Stutter) - + Go to cue point and play after release Ir al cue y reproducir en soltar - + Clear Hotcue %1 Borrar hotcue %1 - + Set Hotcue %1 Establecer Hotcue %1 - + Jump To Hotcue %1 Saltar al hotcue %1 - + Jump To Hotcue %1 And Stop Saltar al hotcue %1 y parar - + Jump To Hotcue %1 And Play Saltar al hotcue %1 y reproducir - + Preview Hotcue %1 Preescuchar Hotcue %1 - + Loop In Inicio de bucle - + Loop Out Fin del bucle - + Loop Exit Salida del bucle - + Reloop/Exit Loop Repetir/Salir del bucle - + Loop Halve Reducir bucle a la mitad - + Loop Double Aumentar bucle al doble - + 1/32 1/32 - + 1/16 1/16 - + 1/8 1/8 - + 1/4 1/4 - + Move Loop +%1 Beats Mover bucle en +%1 pulsaciones - + Move Loop -%1 Beats Mover bucle en -%1 pulsaciones - + Loop %1 Beats Bucle de %1 pulsaciones - + Loop Roll %1 Beats Bucle corredizo de %1 pulsaciones - + Add to Auto DJ Queue (bottom) Añadir a la cola de Auto DJ (al final) - + Append the selected track to the Auto DJ Queue Añade las pistas seleccionadas al final de la cola de Auto DJ - + Add to Auto DJ Queue (top) Añadir a la cola de Auto DJ (al principio) - + Prepend selected track to the Auto DJ Queue Añade las pistas seleccionadas al principio de la cola de Auto DJ - + Load Track Cargar Pista - + Load selected track Carga la pista seleccionada - + Load selected track and play Carga la pista seleccionada y la reproduce - - + + Record Mix Grabar mezcla - + Toggle mix recording Conmuta la grabación de la mezcla - + Effects Efectos - + Quick Effects Efectos rápidos - + Deck %1 Quick Effect Super Knob Super rueda de efecto rápido del plato %1 - + Quick Effect Super Knob (control linked effect parameters) Super rueda de efecto rápido (parámetros de efecto asociado al control) - - + + Quick Effect Efecto rápido - + Clear effect rack Reestablecer unidad de efectos - + Clear Effect Rack Reestablecer unidad de efectos - + Clear Unit Limpiar unidad - + Clear effect unit Limpia la unidad de efectos - + Toggle Unit Conmutar la unidad - + Dry/Wet Directo/Alterado - + Adjust the balance between the original (dry) and processed (wet) signal. Ajuste entre señal directa (dry) y alterada (wet). - + Super Knob Rueda Súper - + Next Chain Siguiente cadena - + Assign Asignar - + Clear Borrar - + Clear the current effect Borrar el efecto actual - + Toggle Conmutar - + Toggle the current effect Conmutar el efecto actual - + Next Siguente - + Switch to next effect Cambiar al siguiente efecto - + Previous Anterior - + Switch to the previous effect Cambiar al efecto previo - + Next or Previous Siguiente o Anterior - + Switch to either next or previous effect Cambiar a cualquier efecto siguiente o anterior - - + + Parameter Value Valor de Parámetro - - + + Microphone Ducking Strength Intensidad de Atenuación de Micrófono - + Microphone Ducking Mode Modo de Atenuación de Micrófono - + Gain Ganancia - + Gain knob Rueda de Ganancia - + Shuffle the content of the Auto DJ queue Mezcla el contenido de la cola de Auto DJ - + Skip the next track in the Auto DJ queue Salta la siguiente pista de la cola de Auto DJ - + Auto DJ Toggle Conmutar Auto DJ - + Toggle Auto DJ On/Off Conmutar Auto DJ Encendido/Apagado - + Microphone & Auxiliary Show/Hide Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units Switches between showing 2 and 4 effect units - + Mixer Show/Hide Mixer Show/Hide - + Show or hide the mixer. Mostrar u ocultar el mezclador. - + Cover Art Show/Hide (Library) Cover Art Show/Hide (Library) - + Show/hide cover art in the library Show/hide cover art in the library - + Library Maximize/Restore Maximizar/Restaurar Biblioteca - + Maximize the track library to take up all the available screen space. Maximizar la biblioteca para tomar todo el espacio disponible en pantalla. - + Effect Rack Show/Hide Mostrar/ocultar unidad de efectos - + Show/hide the effect rack Mostrar/ocultar unidad de efectos - + Waveform Zoom Out Alejar zoom de forma de onda @@ -2129,93 +2136,93 @@ Tiempo de sincronización de tempo de compás (y fase con cuantización habilitada) - + Playback Speed Velocidad de reproducción - + Playback speed control (Vinyl "Pitch" slider) Control de velocidad de reproducción (El "Pitch de vinilo) - + Pitch (Musical key) Pitch (tonalidad) - + Increase Speed Incrementar Velocidad - + Adjust speed faster (coarse) Incrementar la velocidad (grueso) - - + + Increase Speed (Fine) Incrementar velocidad (fino) - + Adjust speed faster (fine) Incrementar la velocidad (fino) - + Decrease Speed Reducir Velocidad - + Adjust speed slower (coarse) Reducir la velocidad (grueso) - + Adjust speed slower (fine) Reducir la velocidad (fino) - + Temporarily Increase Speed Incrementar temporalmente la velocidad - + Temporarily increase speed (coarse) Incremento temporal de velocidad (grueso) - + Temporarily Increase Speed (Fine) Incremento temporal de velocidad (fino) - + Temporarily increase speed (fine) Incremento temporal de velocidad (fino) - + Temporarily Decrease Speed Reducir temporalmente la velocidad - + Temporarily decrease speed (coarse) Reducción temporal de velocidad (grueso) - + Temporarily Decrease Speed (Fine) Reducción temporal de velocidad (fino) - + Temporarily decrease speed (fine) Reducción temporal de velocidad (fino) @@ -2272,806 +2279,872 @@ Sync / Sync Lock - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed LFO - + Pitch (Musical Key) Pitch (Musical Key) - + Increase Pitch Increase Pitch - + Increases the pitch by one semitone Increases the pitch by one semitone - + Increase Pitch (Fine) Increase Pitch (Fine) - + Increases the pitch by 10 cents Increases the pitch by 10 cents - + Decrease Pitch Decrease Pitch - + Decreases the pitch by one semitone Decreases the pitch by one semitone - + Decrease Pitch (Fine) Decrease Pitch (Fine) - + Decreases the pitch by 10 cents Decreases the pitch by 10 cents - + Keylock Bloqueo tonal - + CUP (Cue + Play) CUP (Cue + Play) - + Shift cue points earlier Shift cue points earlier - + Shift cue points 10 milliseconds earlier Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier Shift cue points 1 millisecond earlier - + Shift cue points later Shift cue points later - + Shift cue points 10 milliseconds later Shift cue points 10 milliseconds later - + Shift cue points later (fine) Shift cue points later (fine) - + Shift cue points 1 millisecond later Shift cue points 1 millisecond later - + Hotcues %1-%2 Hotcues %1-%2 - + Intro / Outro Markers Intro / Outro Markers - + Intro Start Marker Intro Start Marker - + Intro End Marker Intro End Marker - + Outro Start Marker Outro Start Marker - + Outro End Marker Outro End Marker - + intro start marker intro start marker - + intro end marker intro end marker - + outro start marker outro start marker - + outro end marker outro end marker - + Activate %1 [intro/outro marker Activate %1 - + Jump to or set the %1 [intro/outro marker Jump to or set the %1 - + Set %1 [intro/outro marker Set %1 - + Set or jump to the %1 [intro/outro marker Set or jump to the %1 - + Clear %1 [intro/outro marker Clear %1 - + Clear the %1 [intro/outro marker Clear the %1 - + Loop Selected Beats Bucle de las pulsaciones seleccionadas - + Create a beat loop of selected beat size Crear bucle con el tamaño de pulsaciones seleccionado - + Loop Roll Selected Beats Bucle corredizo de las pulsaciones seleccionadas - + Create a rolling beat loop of selected beat size Crear bucle corredizo con el tamaño de pulsaciones seleccionado - + Loop Beats Loop Beats - + Loop Roll Beats Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position Activar / Desactivar bucle y saltar al inicio del bucle si está detrás de la posición de reproducción - + Reloop And Stop Reactivar bucle y detener - + Enable loop, jump to Loop In point, and stop Activar bucle, ir al inicio del bucle y detener - + Halve the loop length Reducir a la mitad la longitud del bucle - + Double the loop length Duplicar la longitud del bucle - + Beat Jump / Loop Move Salto de pulsaciones / Movimiento del bucle - + Jump / Move Loop Forward %1 Beats Saltar / Mover bucle hacia delante en %1 pulsaciones - + Jump / Move Loop Backward %1 Beats Saltar / Mover bucle hacia atrás en %1 pulsaciones - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats Saltar hacia adelante en %1 pulsaciones, o si el bucle está activado, moverlo hacia adelante en %1 pulsaciones - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats Saltar hacia atrás en %1 pulsaciones, o si el bucle está activado, moverlo hacia atrás en %1 pulsaciones - + Beat Jump / Loop Move Forward Selected Beats Saltar en pulsaciones / Mover el bucle adelante en la cantidad seleccionada - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats Salta hacia adelante la cantidad seleccionada de pulsaciones, o si el bucle está activado, lo mueve hacia adelante la cantidad seleccionada de pulsaciones - + Beat Jump / Loop Move Backward Selected Beats Saltar en pulsaciones / Mover el bucle atrás en la cantidad seleccionada - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats Salta hacia atrás la cantidad seleccionada de pulsaciones, o si el bucle está activado, lo mueve hacia atrás la cantidad seleccionada de pulsaciones - + Beat Jump / Loop Move Forward Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward Beat Jump / Loop Move Backward - + Loop Move Forward Loop Move Forward - + Loop Move Backward Loop Move Backward - + Navigation Navegación - + Move up Hacia arriba - + Equivalent to pressing the UP key on the keyboard Equivalente a pulsar la tecla flecha arriba en el teclado - + Move down Hacia abajo - + Equivalent to pressing the DOWN key on the keyboard Equivalente a pulsar la tecla abajo arriba en el teclado - + Move up/down Arriba/abajo - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys Mover verticalmente en qualquier dirección usando una rueda, como si se pulsaran las teclas flecha arriba/abajo - + Scroll Up Retrocede página - + Equivalent to pressing the PAGE UP key on the keyboard Equivalente a pulsar la tecla retrocede página arriba en el teclado - + Scroll Down Avance página - + Equivalent to pressing the PAGE DOWN key on the keyboard Equivalente a pulsar la tecla avance página en el teclado - + Scroll up/down Arriba/abajo página - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys Mover verticalmente en qualquier dirección usando una rueda, como si se pulsaran las teclas avance/retroceso página - + Move left Izquierda - + Equivalent to pressing the LEFT key on the keyboard Equivalente a pulsar la tecla flecha izquierda en el teclado - + Move right Derecha - + Equivalent to pressing the RIGHT key on the keyboard Equivalente a pulsar la tecla flecha derecha en el teclado - + Move left/right Izquierda/derecha - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys Mover verticalmente en qualquier dirección usando una rueda, como si se pulsaran las teclas flecha izquierda/derecha - + Move focus to right pane Mover al panel derecho - + Equivalent to pressing the TAB key on the keyboard Equivalente a pulsar la tecla Tabulador del teclado - + Move focus to left pane Mover el foco al panel izquierdo - + Equivalent to pressing the SHIFT+TAB key on the keyboard Equivalente a pulsar las teclas Mayúsculas+Tabulación en el teclado. - + Move focus to right/left pane Mover el foco al panel izquierdo/derecho - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys Mueve el foco al panel izquierdo o derecho usando una rueda, como si se pulsara tabulación/mayusculas+tabulación. - + Go to the currently selected item Ve al elemento actualmente seleccionado. - + Choose the currently selected item and advance forward one pane if appropriate Elige el elemento actualmente seleccionado y avanza un panel si aplica. - + Load Track and Play Load Track and Play - + Add to Auto DJ Queue (replace) Añadir a la cola de Auto DJ (reemplaza) - + Replace Auto DJ Queue with selected tracks Reemplaza la cola de Auto DJ con las pistas seleccionadas - + Select next search history Select next search history - + Selects the next search history entry Selects the next search history entry - + Select previous search history Select previous search history - + Selects the previous search history entry Selects the previous search history entry - + Move selected search entry Move selected search entry - + Moves the selected search history item into given direction and steps Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button Botón de activación de efecto rápido de cubierta% 1 - + Quick Effect Enable Button Activación de efecto rápido - + Enable or disable effect processing Activar o desactivar efectos - + Super Knob (control effects' Meta Knobs) Rueda Super (controla las ruedas Meta del efecto) - + Mix Mode Toggle Alternar modo mezcla - + Toggle effect unit between D/W and D+W modes Alternar control de efectos entre los modos D/W y D+W - + Next chain preset Siguiente preajuste de cadena - + Previous Chain Cadena anterior - + Previous chain preset Anterior preajuste de cadena - + Next/Previous Chain Cadena siguiente/anterior - + Next or previous chain preset Siguiente o anterior preajuste de cadena - - + + Show Effect Parameters Mostrar parámetros de efectos - + Effect Unit Assignment Effect Unit Assignment - + Meta Knob Rueda Meta - + Effect Meta Knob (control linked effect parameters) Rueda Meta del efecto (controla los parámetros del efecto asociados) - + Meta Knob Mode Modo de la rueda Meta - + Set how linked effect parameters change when turning the Meta Knob. Define como se comportan los parámetros del efecto enlazados al mover la rueda Meta. - + Meta Knob Mode Invert Modo rueda Meta Invertida - + Invert how linked effect parameters change when turning the Meta Knob. Invierte el sentido en el que se mueven los parámetros del efecto enlazados al girar la rueda Meta. - - + + Button Parameter Value Button Parameter Value - + Microphone / Auxiliary Micrófono/Auxiliar - + Microphone On/Off Micrófono Encendido/Apagado - + Microphone on/off Micrófono encendido/apagado - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) Conmutar modo de atenuación de micrófono (OFF, AUTO, MANUAL) - + Auxiliary On/Off Auxiliar Encendido/Apagado - + Auxiliary on/off Auxiliar encendido/apagado - + Auto DJ Auto DJ - + Auto DJ Shuffle Auto DJ Aleatorio - + Auto DJ Skip Next Quitar la siguiente en Auto DJ - + Auto DJ Add Random Track Auto DJ Add Random Track - + Add a random track to the Auto DJ queue Add a random track to the Auto DJ queue - + Auto DJ Fade To Next Autodesvanecer a la siguiente en Auto DJ - + Trigger the transition to the next track Desencadenar la transición a la pista siguiente - + User Interface Interfaz de usuario - + Samplers Show/Hide Mostrar/Ocultar reproductor de muestras - + Show/hide the sampler section Mostrar/Ocultar la sección de reproductor de muestras - + Start/Stop Live Broadcasting Start/Stop Live Broadcasting - + Stream your mix over the Internet. Emite tus mezclas por internet. - + Start/stop recording your mix. Start/stop recording your mix. - - + + Samplers Samplers - + Vinyl Control Show/Hide Mostrar/Ocultar Control de Vinilo - + Show/hide the vinyl control section Mostrar/ocultar la sección del control del vinilo - + Preview Deck Show/Hide Ocultar/Mostrar reproductor de preescucha - + Show/hide the preview deck Oculta/Muestra el reproductor de pre-escucha - + Toggle 4 Decks Conmuta el modo de 4 platos - + Switches between showing 2 decks and 4 decks. Cambia entre mostrar 2 platos o 4 platos. - + Cover Art Show/Hide (Decks) Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide Mostrar/ocultar vinilo - + Show/hide spinning vinyl widget Mostrar/ocultar el widget de vinilo giratorio - + Vinyl Spinners Show/Hide (All Decks) Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies Show/Hide all spinnies - + Toggle Waveforms Toggle Waveforms - + Show/hide the scrolling waveforms. Show/hide the scrolling waveforms. - + Waveform zoom Cambia el zoom de la forma de onda - + Waveform Zoom Zoom de forma de onda - + Zoom waveform in Incrementa el zoom de la forma de onda - + Waveform Zoom In Acercar zoom de forma de onda - + Zoom waveform out Reduce el zoom de la forma de onda - + Star Rating Up Star Rating Up - + Increase the track rating by one star Increase the track rating by one star - + Star Rating Down Star Rating Down - + Decrease the track rating by one star Decrease the track rating by one star @@ -3160,32 +3233,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. Prueba de corregirlo reseteando la controladora. - + Controller Mapping Error Controller Mapping Error - + The mapping for your controller "%1" is not working properly. The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. El código del script necesita ser reparado. @@ -3221,133 +3294,133 @@ CrateFeature - + Remove Quitar - - + + Create New Crate Crear un nuevo cajón - + Rename Renombrar - - + + Lock Bloquear - + Export Crate as Playlist Export Crate as Playlist - + Export Track Files Exportar pistas - + Duplicate Duplicar - + Analyze entire Crate Analizar todo el cajón - + Auto DJ Track Source Fuente de pistas para Auto DJ - + Enter new name for crate: Escriba un nuevo nombre para el cajón: - - + + Crates Cajones - - + + Import Crate Importar cajón - + Export Crate Exportar cajón - + Unlock Desbloquear - + An unknown error occurred while creating crate: Ocurrió un error desconocido al crear el cajón: - + Rename Crate Renombrar cajón - - + + Export to Engine Prime Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed No se pudo renombrar el cajón - + Crate Creation Failed Falló la creación del cajón - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Lista de reproducción M3U (*.m3u);;Lista de reproducción M3U8 (*.m3u8);;Lista de reproducción PLS (*.pls);;Texto CSV (*.csv);;Texto legible (*.txt) - + Crates are a great way to help organize the music you want to DJ with. Los Cajones son una muy buena opción para organizar la música para las sesiones de DJ. - + Crates let you organize your music however you'd like! Los cajones permiten organizar tu música como tu quieras! - + A crate cannot have a blank name. Los cajones no pueden carecer de nombre. - + A crate by that name already exists. Ya existe un cajón con ese nombre. @@ -3417,37 +3490,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: Con colaboradores de: - + And special thanks to: Y agradecimientos especiales a: - + Past Developers Antiguos desarrolladores - + Past Contributors Antiguos colaboradores - + Official Website Official Website - + Donate @@ -4917,32 +4990,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin Apariencia - + Tool tips Consejos emergentes - + Select from different color schemes of a skin if available. Seleccione entre diferentes esquemas de color para las apariencias cuando estas lo permitan. - + Color scheme Esquema de colores - + Locales determine country and language specific settings. Configuración regional determina los ajustes específicos del país e idioma. - + Locale Configuración regional @@ -4952,52 +5025,42 @@ Apply settings and continue? Preferencias de interfaz - + HiDPI / Retina scaling HiDPI / escalado Retina - + Change the size of text, buttons, and other items. Cambia el tamaño del texto, botones y otros elementos. - - Adopt scale factor from the operating system - Usa el escalado definido en el sistema operativo - - - - Auto Scaling - Auto escalado - - - + Screen saver Salvapantallas - + Start in full-screen mode Iniciar en modo de pantalla completa - + Full-screen mode Modo de pantalla completa - + Off Desactivado - + Library only Sólo en la biblioteca - + Library and Skin Biblioteca y aparencia @@ -5631,39 +5694,39 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. El tamaño mínimo de la apariencia seleccionada es mas grande que la resolucion de su pantalla. - + Allow screensaver to run Permite el salvapantallas - + Prevent screensaver from running Evita que se active el salvapantallas - + Prevent screensaver while playing Evita el salvapantallas mientras reproduce - + This skin does not support color schemes Este skin no soporta esquemas de color - + Information Información - - Mixxx must be restarted before the new locale setting will take effect. - Mixxx debe reiniciarse para que los cambios en la configuración regional surtan efecto. + + Mixxx must be restarted before the new locale or scaling settings will take effect. + @@ -5882,62 +5945,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added Directorio de música agregado - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? Has agregado uno o más directorios de música. Las pistas de estos directorios no estarán disponibles hasta que vuelva a escanear la biblioteca. Le gustaría escanearla ahora? - + Scan Escanear - + Choose a music directory Elija un directorio de música - + Confirm Directory Removal Confirme la eliminación del directorio - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. Mixxx no seguirá observando el directorio por nuevas pistas. Que quiere hacer con las pistas de esta carpeta y subcarpetas que están en la biblioteca?<ul><li>Esconder las pistas de la carpeta y subcarpetas.</li><li>Borrar los metadatos de estas pistas de forma permanente.</li><li>Mantener las pistas en la biblioteca.</li></ul>Esconder las pistas permite guardar los metadatos en caso que quiera volverlas a la bibloteca. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. Metadatos significa todos los detalles de la pista (artista, titulo, cantidad de reproducciones, etc) como cuadrículas de tempo, hotcues y bucles. Este cambio solo afecta a la biblioteca de Mixxx. Ningun archivo en el disco será cambiado o eliminado. - + Hide Tracks Ocultar Pistas - + Delete Track Metadata Eliminar Metadatos de la pista - + Leave Tracks Unchanged Dejar pistas sin cambios - + Relink music directory to new location Reenlazar el directorio de musica en una nueva ubicación - + Select Library Font Seleccionar la Fuente para Biblioteca @@ -6943,32 +7006,32 @@ Este volumen de referencia es aproximado y asume que la ganancia y el nivel de s DlgPrefWaveform - + Filtered Filtrada - + HSV HSV - + RGB RGB - + OpenGL not available OpenGL no disponible - + dropped frames fotogramas perdidos - + Cached waveforms occupy %1 MiB on disk. Formas de onda almacenadas en caché ocupan %1 MiB en el disco. @@ -7184,72 +7247,72 @@ Elija entre los distintos tipos de visualización para la forma de onda, que se Biblioteca - + Interface Interfaz - + Waveforms Formas de onda - + Auto DJ Auto DJ - + Equalizers Ecualizadores - + Decks Reproductores - + Colors Colores - + Crossfader Crossfader - + Effects Efectos - + LV2 Plugins Extensiones de NV. 2 - + Recording Grabando - + Beat Detection Detección de pulsaciones - + Key Detection Detección de tonalidad - + Normalization Normalización - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7259,12 +7322,12 @@ Elija entre los distintos tipos de visualización para la forma de onda, que se Control de vinilo - + Live Broadcasting Emisión en vivo - + Modplug Decoder Decodificador Modplug @@ -7405,123 +7468,123 @@ Elija entre los distintos tipos de visualización para la forma de onda, que se Seleccione la mejor coincidencia posible - - + + Track Pista - - + + Year Año - + Title Título - - + + Artist Artista - - + + Album Álbum - + Album Artist Artista del álbum - + Fetching track data from the MusicBrainz database Obteniendo datos de la pista desde la base de datos MusicBrainz - + Mixxx could not find this track in the MusicBrainz database. Mixxx no pudo encontrar esta pista en la base de datos de MusicBrainz. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. Obtener la clave de API - + Submit Submits audio fingerprints to the MusicBrainz database. Enviar - + New Column Nueva columna - + New Item Nuevo Item - + &Previous &Previo - + &Next &Siguiente - + &Apply &Aplicar - + &Close &Cerrar - + Status: %1 Estado: %1 - + HTTP Status: %1 Estado HTTP: %1 - + Code: %1 Código: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx no se puede conectar a %1 por una razón desconocida. - + Mixxx can't connect to %1. Mixxx no se puede conectar a %1. - + Original tags Etiquetas originales - + Suggested tags Etiquetas sugeridas @@ -7915,17 +7978,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) Soundtouch (rápido) - + Rubberband (better) Rubberband (mejor) - + Unknown (bad value) Desconocido (valor erróneo) @@ -8026,38 +8089,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes iTunes - - + + Select your iTunes library Seleccione su biblioteca de iTunes - + (loading) iTunes (cargando) iTunes - + Use Default Library Usar la biblioteca predeterminada - + Choose Library... Escoger Biblioteca... - + Error Loading iTunes Library Error Cargando la Biblioteca de iTunes - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. Hubo un error cuando se leía la biblioteca de iTunes. Algunas de las pistas o de las listas de reproducción de iTunes tal vez no hayan sido leídas. @@ -8065,13 +8128,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. Modo Seguro Activado - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8080,57 +8143,57 @@ support. de OpenGL. - + activate activar - + toggle conmutar - + right derecha - + left izquierda - + right small derecha pequeño - + left small izquierda pequeño - + up arriba - + down abajo - + up small arriba pequeño - + down small abajo pequeño - + Shortcut Atajo @@ -8151,22 +8214,22 @@ de OpenGL. LibraryFeature - + Import Playlist Importar lista de reproducción - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Archivos de lista de reproducción (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8180,27 +8243,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Analizador de biblioteca - + It's taking Mixxx a minute to scan your music library, please wait... Mixxx necesita unos minutos para escanear la biblioteca de música. Por favor, espere... - + Cancel Cancelar - + Scanning: Analizando: - + Scanning cover art (safe to cancel) Escaneando las carátulas (se puede cancelar sin problemas) @@ -8317,185 +8380,185 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy El dispositivo de sonido está ocupado - + <b>Retry</b> after closing the other application or reconnecting a sound device <b>Reintente</b> luego de cerrar las otras aplicaciones o reconectar un dispositivo de sonido - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. <b>Reconfigure</b> las opciones del dispositivo de sonido de Mixxx. - - + + Get <b>Help</b> from the Mixxx Wiki. Obtenga <b>ayuda</b> del wiki de Mixxx. - - - + + + <b>Exit</b> Mixxx. <b>Salir</b> de Mixxx. - + Retry Reintentar - + skin skin - - + + Reconfigure Reconfigurar - + Help Ayuda - - + + Exit Salir - - + + Mixxx was unable to open all the configured sound devices. Mixxx no ha podido activar todos los dispositivos de sonido configurados. - + Sound Device Error Error del dispositivo de sonido - + <b>Retry</b> after fixing an issue <b>Reintenta</b> una vez corregido el problema - + No Output Devices No hay dispositivos de salida - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. Mixxx fue configurado sin ningún dispositivo de salida de audio. El procesamiento de audio estará desactivado mientras no se configure un dispositivo de audio de salida. - + <b>Continue</b> without any outputs. <b>Continuar</b> sin ninguna salida. - + Continue Continuar - + Load track to Deck %1 Cargar pista al plato %1 - + Deck %1 is currently playing a track. El plato %1 está reproduciendo una pista. - + Are you sure you want to load a new track? ¿Está seguro de cargar una pista nueva? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. No hay ningún dispositivo de entrada seleccionado para el control por vinilo. Por favor, seleccione un dispositivo de entrada en las preferencias de hardware de sonido. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. No hay ningún dispositivo de entrada seleccionado para el control passthrough. Por favor, seleccione un dispositivo de entrada en las preferencias de hardware de sonido. - + There is no input device selected for this microphone. Do you want to select an input device? There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file Error en el archivo de la apariencia - + The selected skin cannot be loaded. No se ha podido cargar la apariencia seleccionada. - + OpenGL Direct Rendering OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Confirmar salida - + A deck is currently playing. Exit Mixxx? Un plato está reproduciendo. ¿Salir de Mixxx? - + A sampler is currently playing. Exit Mixxx? Un reproductor de muestras está en reproducción. ¿Salir de Mixxx? - + The preferences window is still open. La ventana de preferencias todavía está abierta. - + Discard any changes and exit Mixxx? ¿Descartar cambios y salir de Mixxx? @@ -8568,43 +8631,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Bloquear - + Playlists Listas de reproducción - + Unlock Desbloquear - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. Algunos DJ preparan listas de reproducción antes de tocar en vivo, pero otros prefieren hacerlo en el momento. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. Cuando uses una lista de reproducción en una actuación en vivo, recuerda siempre prestar mucha atención a cómo reacciona la audiencia con la música que has elegido reproducir. - + Create New Playlist Crear nueva lista de reproducción @@ -8612,59 +8675,59 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx Actualizando Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? Mixxx ha añadido soporte para mostrar carátulas. ¿Desea escanear la biblioteca ahora para encontrar las carátulas? - + Scan Escanear - + Later Después - + Upgrading Mixxx from v1.9.x/1.10.x. Actualizar Mixxx desde v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. Mixxx ahora tiene un nuevo y mejorado analizador de ritmo. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. Cuando cargas pistas, Mixxx puede reanalizarlas y generar cuadrículas de tempo nuevas y más precisas. Esto hará que la sincronización y los Loops sean más fiables. - + This does not affect saved cues, hotcues, playlists, or crates. Esto no afecta a los Cues, Hotcues, listas de reproducción o cajas guardados/as. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. Si no quieres que Mixxx reanalize tus pistas, elige "Mantener las cuadrículas de tempo actuales". Puedes cambiar esta configuración en cualquier momento desde la sección "Detección de Beats" de la ventana Preferencias. - + Keep Current Beatgrids Mantener las cuadrículas de tempo actuales - + Generate New Beatgrids Generar nuevas cuadrículas de tempo @@ -8848,7 +8911,7 @@ Do you want to scan your library for cover files now? Using Opus at samplerates other than 48 kHz is not supported by the Opus encoder. Please use 48000 Hz in "Sound Hardware" preferences or switch to a different encoding. - + Encoder Codificador @@ -10004,12 +10067,12 @@ Todo a la derecha: final del período Crossfade the noise with the dry signal - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10147,54 +10210,54 @@ Todo a la derecha: final del período RekordboxFeature - - - + + + Rekordbox Rekordbox - + Playlists Listas de reproducción - + Folders Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues Hot cues - + Loops (only the first loop is currently usable in Mixxx) Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids Beatgrids - + Memory cues Memory cues - + (loading) Rekordbox (loading) Rekordbox @@ -10203,7 +10266,7 @@ Todo a la derecha: final del período RhythmboxFeature - + Rhythmbox Rhythmbox @@ -10254,34 +10317,34 @@ Todo a la derecha: final del período SeratoFeature - - - + + + Serato Serato - + Reads the following from the Serato Music directory and removable devices: Reads the following from the Serato Music directory and removable devices: - + Tracks Pistas - + Crates Cajones - + Check for Serato databases (refresh) Check for Serato databases (refresh) - + (loading) Serato (loading) Serato @@ -10304,12 +10367,12 @@ Todo a la derecha: final del período Historial - + Unlock Desbloquear - + Lock Bloquear @@ -11268,6 +11331,31 @@ Todo a la derecha: final del período Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12445,11 +12533,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize Sincronización antígua - - - (This skin should be updated to use Master Sync!) - (La apariencia seleccionada no soporta la característica de sincronización con el maestro.) - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12465,16 +12548,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. Los platos no se pueden sincronizar con los reproductors de muestras, y los reproductors de mezclas sólo se pueden sincronizar con los platos. - - - Enable Master Sync - Activar la sincronización maestra - - - - Tap to sync the tempo to other playing tracks or the master clock. - Pulse para sincronizar el tiempo con otras pistas en reproducción o con el reloj maestro. - Hold for at least a second to enable sync lock for this deck. @@ -12490,16 +12563,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. Resetea la clave musical a la original de la pista. - - - Enable Sync Clock Master - Activar el reloj maestro de sincronización - - - - When enabled, this device will serve as the master clock for all other decks. - Cuando está activado, este dispositivo servirá como master clock para los otros platos. - Speed Control @@ -13053,22 +13116,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor Traktor - + (loading) Traktor (cargando) Traktor - + Error Loading Traktor Library Error cargando la biblioteca de Traktor - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. Hubo un error cargando la biblioteca de Traktor. Algunas de la listas de reproducción o canciones pueden no haberse cargado. @@ -13680,20 +13743,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Passthrough - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible Ready to play, analyzing... - - + + Loading track... Text on waveform overview when file is cached from source Loading track... - + Finalizing... Text on waveform overview during finalizing of waveform analysis Finalizing... @@ -13864,9 +13927,9 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Género - - Folder - Folder + + Directory + @@ -14108,155 +14171,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Reset BPM - + + Update ReplayGain from Deck Gain + + + + Deck %1 Plato %1 - + Sampler %1 Reproductor de muestras %1 - + Importing metadata of %n track(s) from file tags Importing metadata of %n track(s) from file tagsImporting metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags Marking metadata of %n track(s) to be exported into file tagsMarking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Crear nueva lista de reproducción - + Enter name for new playlist: Escriba un nombre para la nueva lista de reproducción: - + New Playlist Nueva lista de reproducción - - - + + + Playlist Creation Failed Ha fallado la creación de la lista de reproducción - + A playlist by that name already exists. Ya existe una lista de reproducción con ese nombre. - + A playlist cannot have a blank name. El nombre de la lista de reproducción no puede quedar en blanco. - + An unknown error occurred while creating playlist: Se ha producido un error desconocido al crear la lista de reproducción: - + Add to New Crate Add to New Crate - + Scaling BPM of %n track(s) Scaling BPM of %n track(s)Scaling BPM of %n track(s) - + Locking BPM of %n track(s) Locking BPM of %n track(s)Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) Unlocking BPM of %n track(s)Unlocking BPM of %n track(s) - + Setting color of %n track(s) Setting color of %n track(s)Setting color of %n track(s) - + Resetting play count of %n track(s) Resetting play count of %n track(s)Resetting play count of %n track(s) - + Resetting beats of %n track(s) Resetting beats of %n track(s)Resetting beats of %n track(s) - + Clearing rating of %n track(s) Clearing rating of %n track(s)Clearing rating of %n track(s) - + Removing main cue from %n track(s) Removing main cue from %n track(s)Removing main cue from %n track(s) - + Removing outro cue from %n track(s) Removing outro cue from %n track(s)Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) Removing intro cue from %n track(s)Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) Removing loop cues from %n track(s)Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) Removing hot cues from %n track(s)Removing hot cues from %n track(s) - + Resetting keys of %n track(s) Resetting keys of %n track(s)Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) Resetting replay gain of %n track(s)Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) Resetting waveform of %n track(s)Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) Resetting all performance metadata of %n track(s)Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) Setting cover art of %n track(s)Setting cover art of %n track(s) - + Reloading cover art of %n track(s) Reloading cover art of %n track(s)Reloading cover art of %n track(s) @@ -14264,7 +14332,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus ESC @@ -14301,133 +14369,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects.(GL ES) - - main - - - Starts Mixxx in full-screen mode - Starts Mixxx in full-screen mode - - - - Use a custom locale for loading translations. (e.g 'fr') - Use a custom locale for loading translations. (e.g 'fr') - - - - Top-level directory where Mixxx should look for settings. Default is: - Top-level directory where Mixxx should look for settings. Default is: - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - Path the timeline is written to - Path the timeline is written to - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - [auto|always|never] Use colors on the console output. - [auto|always|never] Use colors on the console output. - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - mixxx::CoreServices - + fonts fonts - + database database - + effects efectos - + audio interface audio interface - + decks decks - + library library - + Choose music library directory Elija el directorio de la biblioteca de la música - + controllers controllers - + Cannot open database No se puede abrir la base de datos - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14506,7 +14496,7 @@ Pulse Aceptar para salir. A database already exists in the chosen directory. Exported tracks will be added into this database. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14563,62 +14553,62 @@ Pulse Aceptar para salir. mixxx::hid::DeviceCategory - + HID Interface %1: HID Interface %1: - + Generic HID Pointer Generic HID Pointer - + Generic HID Mouse Ratón HID genérico - + Generic HID Joystick Joystick HID genérico - + Generic HID Game Pad Generic HID Game Pad - + Generic HID Keyboard Teclado HID genérico - + Generic HID Keypad Generic HID Keypad - + Generic HID Multi-axis Controller Generic HID Multi-axis Controller - + Unknown HID Desktop Device: Unknown HID Desktop Device: - + Apple HID Infrared Control Apple HID Infrared Control - + Unknown Apple HID Device: Unknown Apple HID Device: - + Unknown HID Device: Unknown HID Device: @@ -14636,7 +14626,7 @@ Pulse Aceptar para salir. No effect loaded. - + Ningún efecto cargado. \ No newline at end of file diff --git a/res/translations/mixxx_es_MX.qm b/res/translations/mixxx_es_MX.qm index 757b25b04e33c8ef916e276e1d44cc448f228f36..b0edb9372949ade15db6d285dd040de5c0ba73d7 100644 GIT binary patch delta 6019 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 F{{acu|6>3E diff --git a/res/translations/mixxx_es_MX.ts b/res/translations/mixxx_es_MX.ts index cf699fd7c55..e4e20c57e2c 100644 --- a/res/translations/mixxx_es_MX.ts +++ b/res/translations/mixxx_es_MX.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Cajas - + Remove Crate as Track Source Remover Crate como Fuente de Archivos - + Auto DJ DJ Automatico - + Add Crate as Track Source Añadir Crate como Fuente de Archivos @@ -43,25 +43,25 @@ BansheeFeature - + Banshee Banshee® - - + + Error loading Banshee database Error al cargar la base de datos Banshee - + Banshee database file not found at No se encontró la base de datos Banshee® - + There was an error loading your Banshee database at Hubo un error al cargar su base de datos Banshee @@ -71,32 +71,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Agregar a la lista de DJ Automatico (Final) - + Add to Auto DJ Queue (top) Agregar a la lista de DJ Automatico (Inicio) - + Add to Auto DJ Queue (replace) Añadir a la lista de DJ Automático (reemplazar) - + Import Playlist Importar Lista de Reproducción - + Playlist Creation Failed Fallo la creación de lista de Reproducción - + An unknown error occurred while creating playlist: Un error desconocido ocurrio mientras la creacion de la lista de reproducción @@ -104,144 +104,144 @@ BasePlaylistFeature - + New Playlist Nueva lista de reproducción - + Add to Auto DJ Queue (bottom) Agregar a la lista de DJ Automatico (Final) - - + + Create New Playlist Crear una nueva lista de reproducción - + Add to Auto DJ Queue (top) Agregar a la lista de DJ Automatico (Inicio) - + Remove Quitar - + Rename Renombrar - + Lock Bloquear - + Duplicate Duplicar - - + + Import Playlist Importar Lista de Reproducción - + Export Track Files Exportar pistas de audio - + Analyze entire Playlist Analizar toda la lista de reproducción - + Enter new name for playlist: Introducir nuevo nombre de Lista de Repoducción - + Duplicate Playlist Duplicar lista de reproducción - - + + Enter name for new playlist: Introducir nuevo nombre de lista de reproducción - - + + Export Playlist Exportar lista de reproducción - + Add to Auto DJ Queue (replace) Añadir a la lista de DJ Automático (reemplazar). - + Rename Playlist Renombrar Lista de Reproducción - - + + Renaming Playlist Failed Renombrando lista de reproducción fallida - - - + + + A playlist by that name already exists. Una lista de reproducción ya existe con el mismo nombre - - - + + + A playlist cannot have a blank name. El nombre de una lista de reproduccion no puede estar vacío - + _copy //: Appendix to default name when duplicating a playlist Copiar - - - - - - + + + + + + Playlist Creation Failed Fallo la creación de lista de Reproducción - - + + An unknown error occurred while creating playlist: Un error desconocido ocurrio mientras la creacion de la lista de reproducción - + M3U Playlist (*.m3u) Lista de Reproducción M3U (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. No se puede cargar la pista @@ -514,7 +514,7 @@ - + Computer Procesar @@ -534,7 +534,7 @@ Escanear - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. "Computadora" le permite navegar, ver y cargar pistas desde carpetas en su disco duro y dispositivos externos. @@ -647,12 +647,12 @@ Archivo Creado - + Mixxx Library Bliblioteca Mixxx - + Could not load the following file because it is in use by Mixxx or another application. No se puede cargar el siguiente archivo porque este es usado por Mixxx u otra aplicación @@ -683,6 +683,84 @@ El archivo '%1' está vacío y no se pudo cargar. + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + Starts Mixxx in full-screen mode + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -865,13 +943,13 @@ - + Set to full volume Ajustar volumen al máximo - + Set to zero volume Ajustar volumen al mínimo @@ -896,13 +974,13 @@ - + Headphone listen button Botón de escucha de auriculares - + Mute button Botón para silenciar MUTE @@ -918,25 +996,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -980,36 +1058,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1021,211 +1069,211 @@ - + Toggle keylock mode Equalizers - + Equalizers - + Vinyl Control - + Vinyl Control - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 - + 1 - + 2 - + 4 - + 8 - + 16 - + 32 - + 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library - + Library @@ -1334,20 +1382,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1363,7 +1411,7 @@ - + Mute @@ -1374,7 +1422,7 @@ - + Headphone Listen @@ -1395,25 +1443,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1512,52 +1560,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1574,37 +1576,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1645,466 +1647,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) Agregar a la lista de DJ Automatico (Final) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) Agregar a la lista de DJ Automatico (Inicio) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix - + Toggle mix recording - + Effects - + Effects - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next - + Switch to next effect - + Previous - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2129,93 +2131,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2272,806 +2274,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) Añadir a la lista de DJ Automático (reemplazar) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ DJ Automatico - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3160,32 +3228,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3221,134 +3289,134 @@ CrateFeature - + Remove Quitar - - + + Create New Crate - + Rename Renombrar - - + + Lock Bloquear - + Export Crate as Playlist - + Export Track Files Exportar pistas de audio - + Duplicate Duplicar - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates Cajas - - + + Import Crate - + Export Crate - + Unlock - + An unknown error occurred while creating crate: - + Rename Crate - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) - + Crates are a great way to help organize the music you want to DJ with. - + Crates let you organize your music however you'd like! - + A crate cannot have a blank name. - + A crate by that name already exists. @@ -3418,37 +3486,37 @@ M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*. DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -3775,7 +3843,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Analyzer Settings - + Analyzer Settings @@ -3796,7 +3864,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Re-analyze beats when settings change or beat detection data is outdated - + Re-analyze beats when settings change or beat detection data is outdated @@ -4842,7 +4910,7 @@ Apply settings and continue? Controllers - + Controllers @@ -4878,32 +4946,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin - + Tool tips - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4913,52 +4981,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off - + Library only - + Library and Skin @@ -5403,7 +5461,7 @@ You can always drag-and-drop tracks on screen to clone a deck. Equalizer Preferences - + Equalizer Preferences @@ -5569,38 +5627,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5635,7 +5693,7 @@ and allows you to pitch adjust them for harmonic mixing. Analyzer Settings - + Analyzer Settings @@ -5650,7 +5708,7 @@ and allows you to pitch adjust them for harmonic mixing. Key Notation - + Key Notation @@ -5808,7 +5866,7 @@ and allows you to pitch adjust them for harmonic mixing. Equalizer Preferences - + Equalizer Preferences @@ -5819,62 +5877,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added Directorio de Musica Agregado - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? Agregaste uno o mas directorios de musica. Las pistas en esas carpetas no estaran disponibles hasta que se reescaneé tu bliblioteca. Te gustaria reescanear ahora? - + Scan Escanear - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -5884,7 +5942,7 @@ and allows you to pitch adjust them for harmonic mixing. Library - + Library @@ -6631,17 +6689,17 @@ The loudness target is approximate and assumes track pregain and master output l Sound API - + Sound API Sample Rate - + Sample Rate Audio Buffer - + Audio Buffer @@ -6807,7 +6865,7 @@ The loudness target is approximate and assumes track pregain and master output l Turntable Input Signal Boost - + Turntable Input Signal Boost @@ -6878,32 +6936,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7104,100 +7162,100 @@ Select from different types of displays for the waveform, which differ primarily Sound Hardware - + Sound Hardware Controllers - + Controllers Library - + Library - + Interface - + Waveforms - + Auto DJ DJ Automatico - + Equalizers - + Equalizers - + Decks - + Colors - + Crossfader Crossfader - + Effects - + Effects - + LV2 Plugins - + Recording - + Beat Detection - + Beat Detection - + Key Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> Vinyl Control - + Vinyl Control - + Live Broadcasting - + Modplug Decoder @@ -7207,7 +7265,7 @@ Select from different types of displays for the waveform, which differ primarily Preferences - + Preferences @@ -7338,123 +7396,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Año - + Title Título - - + + Artist Artista - - + + Album Album - + Album Artist Artista del Album - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7681,7 +7739,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Assume constant tempo - + Assume constant tempo @@ -7846,17 +7904,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7957,38 +8015,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7996,13 +8054,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8010,57 +8068,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8081,22 +8139,22 @@ support. LibraryFeature - + Import Playlist Importar Lista de Reproducción - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8107,27 +8165,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8243,181 +8301,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry - + skin - - + + Reconfigure - + Help - - + + Exit - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8488,43 +8546,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Bloquear - + Playlists - + Unlock - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist Crear una nueva lista de reproducción @@ -8532,58 +8590,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Escanear - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8744,7 +8802,7 @@ Do you want to scan your library for cover files now? Vinyl Control - + Vinyl Control @@ -8767,7 +8825,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9893,12 +9951,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10036,54 +10094,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10092,7 +10150,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10143,34 +10201,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates Cajas - + Check for Serato databases (refresh) - + (loading) Serato @@ -10193,12 +10251,12 @@ Fully right: end of the effect period - + Unlock - + Lock Bloquear @@ -10761,7 +10819,7 @@ Fully right: end of the effect period Vinyl Control - + Vinyl Control @@ -11157,6 +11215,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -11938,7 +12021,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Inactive: parameter not linked - + Inactive: parameter not linked @@ -12259,7 +12342,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Maximize Library - + Maximize Library @@ -12332,11 +12415,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12352,16 +12430,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12377,16 +12445,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12940,22 +12998,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13307,7 +13365,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Maximize Library - + Maximize Library @@ -13318,7 +13376,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Space Menubar|View|Maximize Library - + Space @@ -13567,20 +13625,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13751,8 +13809,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Genero - - Folder + + Directory @@ -13995,155 +14053,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 Deck %1 - + Sampler %1 Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Crear una nueva lista de reproducción - + Enter name for new playlist: Introducir nuevo nombre de lista de reproducción - + New Playlist Nueva lista de reproducción - - - + + + Playlist Creation Failed Fallo la creación de lista de Reproducción - + A playlist by that name already exists. Una lista de reproducción ya existe con el mismo nombre - + A playlist cannot have a blank name. El nombre de una lista de reproduccion no puede estar vacío - + An unknown error occurred while creating playlist: Un error desconocido ocurrio mientras la creacion de la lista de reproducción - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14151,10 +14214,10 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus - + ESC @@ -14188,128 +14251,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + audio interface - + decks - + decks - + library - + Choose music library directory - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14385,7 +14375,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14442,62 +14432,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_et.qm b/res/translations/mixxx_et.qm index 30bfbe7e50c4408388d4198b20898957c9e75ffe..04255d29219e2fd5d479d670052f104ad0008c51 100644 GIT binary patch delta 4679 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 delta 4234 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 diff --git a/res/translations/mixxx_et.ts b/res/translations/mixxx_et.ts index 1caa05f0491..99bb1498e3c 100644 --- a/res/translations/mixxx_et.ts +++ b/res/translations/mixxx_et.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Plaadikastid - + Remove Crate as Track Source - + Auto DJ Automaatne DJ - + Add Crate as Track Source @@ -43,24 +43,24 @@ BansheeFeature - + Banshee Banshee - - + + Error loading Banshee database Viga Banshee andmebaasi laadimisel - + Banshee database file not found at - + There was an error loading your Banshee database at @@ -69,32 +69,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Lisa auto-DJ järjekorda (alla) - + Add to Auto DJ Queue (top) Lisa auto-DJ järjekorda (üles) - + Add to Auto DJ Queue (replace) - + Import Playlist Impordi esitusloend - + Playlist Creation Failed Esitusloendi loomine nurjus - + An unknown error occurred while creating playlist: Teadmatu viga tekkis esitusloendi tegemisel: @@ -102,144 +102,144 @@ BasePlaylistFeature - + New Playlist Uus esitusnimekiri - + Add to Auto DJ Queue (bottom) Lisa auto-DJ järjekorda (alla) - - + + Create New Playlist Loo uus esitusloend - + Add to Auto DJ Queue (top) Lisa auto-DJ järjekorda (üles) - + Remove Eemalda - + Rename Nimeta ümber - + Lock Lukus - + Duplicate duplikaat - - + + Import Playlist Impordi esitusloend - + Export Track Files - + Analyze entire Playlist Analüüsi terve esitusloend - + Enter new name for playlist: Sisesta uus nimi esitusloendile: - + Duplicate Playlist - - + + Enter name for new playlist: Sisesta uue esitusloendi nimi: - - + + Export Playlist Ekspordi esitusloend - + Add to Auto DJ Queue (replace) - + Rename Playlist Muuda esitusloendi nime - - + + Renaming Playlist Failed Esitusloendi ümbernimetamine nurjus - - - + + + A playlist by that name already exists. Selle nimega esitusloend juba eksisteerib. - - - + + + A playlist cannot have a blank name. Esitusloend ei saa olla nimeta. - + _copy //: Appendix to default name when duplicating a playlist _kopeeri - - - - - - + + + + + + Playlist Creation Failed Esitusloendi loomine nurjus - - + + An unknown error occurred while creating playlist: Teadmatu viga tekkis esitusloendi tegemisel: - + M3U Playlist (*.m3u) M3U Esitusloend (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U Esitusloend (*.m3u);;M3U8 Esitusloend (*.m3u8);;PLSEsitusloend (*.pls);;Tekst CSV (*.csv);;Loetav tekst (*.txt) @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Ei suuda lugu laadida. @@ -512,7 +512,7 @@ - + Computer Arvuti @@ -532,7 +532,7 @@ Skänni - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -645,12 +645,12 @@ Kaust loodud - + Mixxx Library Mixxx raamatukogu - + Could not load the following file because it is in use by Mixxx or another application. Ei suutnud laadida seda faili, kuna see on kasutuses Mixxxi või mõne muu programmi poolt. @@ -681,6 +681,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -863,13 +941,13 @@ - + Set to full volume Sea volüüm maksimumile - + Set to zero volume Sea volüüm nulli @@ -894,13 +972,13 @@ - + Headphone listen button Kõrvaklappidega kuulamise nupp - + Mute button Vaigistusnupp @@ -916,25 +994,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -978,36 +1056,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1019,7 +1067,7 @@ - + Toggle keylock mode @@ -1029,199 +1077,199 @@ Ekvalaiserid - + Vinyl Control - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 32 - + 64 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library Fonoteek @@ -1332,20 +1380,20 @@ - - + + Volume Fader - + Full Volume Täisvolüüm - + Zero Volume Nullvolüüm @@ -1361,7 +1409,7 @@ - + Mute Vaigista @@ -1372,7 +1420,7 @@ - + Headphone Listen @@ -1393,25 +1441,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1510,52 +1558,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1572,37 +1574,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1643,466 +1645,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 1/32 - + 1/16 1/16 - + 1/8 1/8 - + 1/4 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) Lisa auto-DJ järjekorda (alla) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) Lisa auto-DJ järjekorda (üles) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix - + Toggle mix recording - + Effects Efektid - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle Lülita - + Toggle the current effect Lülita praegust efekti - + Next Järgmine - + Switch to next effect - + Previous Eelmine - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain Tugevus - + Gain knob Helitugevuse nupp - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle Auto DJ lüliti - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2127,93 +2129,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2270,806 +2272,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off Mikrofon sees/väljas - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ Automaatne DJ - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface Kasutajaliides - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide Eelvaate Rada kuva/peida - + Show/hide the preview deck Kuva/peida eelvaate rada - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3158,32 +3226,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3219,133 +3287,133 @@ CrateFeature - + Remove Eemalda - - + + Create New Crate - + Rename Nimeta ümber - - + + Lock Lukus - + Export Crate as Playlist - + Export Track Files - + Duplicate duplikaat - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates Plaadikastid - - + + Import Crate Impordi kast - + Export Crate Ekspordi kast - + Unlock Võta lukust lahti - + An unknown error occurred while creating crate: Plaadikasti loomisel esines tundmatu viga: - + Rename Crate Nimeta plaadikast ümber - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed Plaadikasti ümbernimetamine ebaõnnestus - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U Esitusloend (*.m3u);;M3U8 Esitusloend (*.m3u8);;PLSEsitusloend (*.pls);;Tekst CSV (*.csv);;Loetav tekst (*.txt) - + Crates are a great way to help organize the music you want to DJ with. - + Crates let you organize your music however you'd like! - + A crate cannot have a blank name. Plaadikasti nimi ei saa olla tühi. - + A crate by that name already exists. Sellise nimega kast on juba olemas. @@ -3415,37 +3483,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers Eelmised arendajad - + Past Contributors - + Official Website - + Donate @@ -4875,87 +4943,77 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin Rüü - + Tool tips Kohtspikkrid - + Select from different color schemes of a skin if available. - + Color scheme - + Värviskeem - + Locales determine country and language specific settings. - + Locale - Kohalik + Lokaat Interface Preferences - + Liidese eelistused - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off Väljas - + Library only - + Library and Skin @@ -5566,38 +5624,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information Info - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5816,62 +5874,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added Muusikakataloog edukalt lisatud - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan Skänni - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6638,7 +6696,7 @@ The loudness target is approximate and assumes track pregain and master output l Audio Buffer - + Audiopuhver @@ -6875,32 +6933,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered Filtreeritud - + HSV HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7114,72 +7172,72 @@ Select from different types of displays for the waveform, which differ primarily Fonoteek - + Interface Liides - + Waveforms - + Auto DJ Automaatne DJ - + Equalizers Ekvalaiserid - + Decks - + Colors - + Crossfader - + Effects Efektid - + LV2 Plugins - + LV2 pluginad - + Recording Salvestamine - + Beat Detection - + Key Detection - + Helistiku tuvastamine - + Normalization Normaliseerimine - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7189,12 +7247,12 @@ Select from different types of displays for the waveform, which differ primarily - + Live Broadcasting - + Modplug Decoder @@ -7335,123 +7393,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Aasta - + Title Pealkiri - - + + Artist Esitaja - - + + Album Album - + Album Artist Albumi esitaja - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous &Eelmine - + &Next &Järgmine - + &Apply &Rakenda - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. Mixxx ei suuda ühenduda %1. - + Original tags - + Suggested tags @@ -7569,7 +7627,7 @@ Select from different types of displays for the waveform, which differ primarily Key - Nupp + Helistik @@ -7843,17 +7901,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7954,38 +8012,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7993,13 +8051,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8007,57 +8065,57 @@ support. - + activate aktiveeri - + toggle lüliti - + right paremale - + left vasakule - + right small - + left small - + up üles - + down alla - + up small - + down small - + Shortcut Otsetee @@ -8078,22 +8136,22 @@ support. LibraryFeature - + Import Playlist Impordi esitusloend - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Esitusloendi failid (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8104,27 +8162,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel Katkesta - + Scanning: Skaneerin: - + Scanning cover art (safe to cancel) @@ -8240,181 +8298,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry Proovi uuesti - + skin - - + + Reconfigure Seadista uuesti - + Help Abi - - + + Exit Välju - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue Jätka - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? Oled sa kindel, et tahad laadida uue loo? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Kinnita väljumine - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8485,43 +8543,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Lukus - + Playlists Esitusloendid - + Unlock Võta lukust lahti - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist Loo uus esitusloend @@ -8529,58 +8587,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Skänni - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8764,7 +8822,7 @@ Do you want to scan your library for cover files now? - + Encoder Kodeerija @@ -9890,12 +9948,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10033,54 +10091,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists Esitusloendid - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10089,7 +10147,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox Rhythmbox @@ -10140,34 +10198,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates Plaadikastid - + Check for Serato databases (refresh) - + (loading) Serato @@ -10190,12 +10248,12 @@ Fully right: end of the effect period Ajalugu - + Unlock Võta lukust lahti - + Lock Lukus @@ -11154,6 +11212,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12329,11 +12412,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12349,16 +12427,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12374,16 +12442,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12510,7 +12568,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Displays the current time. - + Jooksva aja kuvamine. @@ -12937,22 +12995,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13564,20 +13622,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13748,8 +13806,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Žanr - - Folder + + Directory @@ -13992,155 +14050,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 Rada %1 - + Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Loo uus esitusloend - + Enter name for new playlist: Sisesta uue esitusloendi nimi: - + New Playlist Uus esitusnimekiri - - - + + + Playlist Creation Failed Esitusloendi loomine nurjus - + A playlist by that name already exists. Selle nimega esitusloend juba eksisteerib. - + A playlist cannot have a blank name. Esitusloend ei saa olla nimeta. - + An unknown error occurred while creating playlist: Teadmatu viga tekkis esitusloendi tegemisel: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14148,7 +14211,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14185,128 +14248,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database Ei suuda avada andmebaasi - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14382,7 +14372,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14439,62 +14429,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: @@ -14512,7 +14502,7 @@ Click OK to exit. No effect loaded. - + Efekt puudub \ No newline at end of file diff --git a/res/translations/mixxx_eu.ts b/res/translations/mixxx_eu.ts index c2e32a9d88d..c4b7e96a952 100644 --- a/res/translations/mixxx_eu.ts +++ b/res/translations/mixxx_eu.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Kaxak - + Remove Crate as Track Source Kendu kaxa pistaren iturri bezala - + Auto DJ Auto DJ - + Add Crate as Track Source Gehitu kaxa pistaren iturri bezala @@ -43,24 +43,24 @@ BansheeFeature - + Banshee Banshee - - + + Error loading Banshee database Errore bat gertatu da Banshee-ren data-basea kargatzerakoan - + Banshee database file not found at Banshee-ren datu-basearen fitxategia ez da aurkitu leku honetan - + There was an error loading your Banshee database at Errore bat gertatu da zure Banshee-ren datu-basea kargatzerakoan @@ -69,32 +69,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Gehitu Auto DJ ilarara (bukaeran) - + Add to Auto DJ Queue (top) Gehitu Auto DJ ilarara (hasieran) - + Add to Auto DJ Queue (replace) - + Import Playlist Inportatu erreprodukzio-zerrenda - + Playlist Creation Failed Ezin izan da erreprodukzio-zerrenda sortu - + An unknown error occurred while creating playlist: Errore ezezagun bat gertatu da erreprodukzio zerrenda sortzean: @@ -102,144 +102,144 @@ BasePlaylistFeature - + New Playlist Erreprodukzio-zerrenda berria - + Add to Auto DJ Queue (bottom) Gehitu Auto DJ ilarara (bukaeran) - - + + Create New Playlist Erreprodukzio-zerrenda berria sortu - + Add to Auto DJ Queue (top) Gehitu Auto DJ ilarara (hasieran) - + Remove Kendu - + Rename Berrizendatu - + Lock Blokeatu - + Duplicate Bikoiztu - - + + Import Playlist Inportatu erreprodukzio-zerrenda - + Export Track Files Pisten fitxategiak esportatu - + Analyze entire Playlist Erreprodukzio-zerrenda osoa aztertu - + Enter new name for playlist: Erreprodukzio-zerrendaren izen berria sartu: - + Duplicate Playlist Bikoiztu erreprodukzio-zerrenda - - + + Enter name for new playlist: Idatzi erreprodukzio-zerrendaren izena - - + + Export Playlist Esportatu erreprodukzio-zerrenda - + Add to Auto DJ Queue (replace) - + Rename Playlist Berrizendatu erreprodukzio-zerrenda - - + + Renaming Playlist Failed Ezin izan da erreprodukzio-zerrenda berrizendatu - - - + + + A playlist by that name already exists. Badago izen bereko beste erreproduzkio-zerrenda bat - - - + + + A playlist cannot have a blank name. Erreprodukzio-Zerrenda batek ezin du izen hutsik izan - + _copy //: Appendix to default name when duplicating a playlist - - - - - - + + + + + + Playlist Creation Failed Ezin izan da erreprodukzio-zerrenda sortu - - + + An unknown error occurred while creating playlist: Errore ezezagun bat gertatu da erreprodukzio zerrenda sortzean: - + M3U Playlist (*.m3u) M3U erreproduzio-zerrenda (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U erreprodukzio-zerrenda (*.m3u);;M3U8 erreprodukzio-zerrenda (*.m3u8);;PLS erreprodukzio-zerrenda (*.pls);;CSV testua (*.csv);;Testu hutsa (*.txt) @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Ezin izan da pista kargatu @@ -512,7 +512,7 @@ - + Computer Ordenagailua @@ -532,7 +532,7 @@ - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -645,12 +645,12 @@ - + Mixxx Library Mixxx liburutegia - + Could not load the following file because it is in use by Mixxx or another application. Ezin izan da hurrengo fitxategi hau kargatu Mixxx edo beste aplikazioren bat bera erabiltzen ari delako @@ -681,6 +681,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -863,13 +941,13 @@ - + Set to full volume - + Set to zero volume @@ -894,13 +972,13 @@ - + Headphone listen button - + Mute button @@ -916,25 +994,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -978,36 +1056,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1019,7 +1067,7 @@ - + Toggle keylock mode @@ -1029,199 +1077,199 @@ Ekualizadoreak - + Vinyl Control Binilo kontrola - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues Hotcue - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 - + 1 1 - + 2 - + 4 - + 8 - + 16 - + 32 - + 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop Sortu %1-taupada begizta - + Create temporary %1-beat loop roll Sortu behin behineko %1-taupada begizta erroilua - + Library Liburutegia @@ -1332,20 +1380,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1361,7 +1409,7 @@ - + Mute @@ -1372,7 +1420,7 @@ - + Headphone Listen @@ -1393,25 +1441,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1510,52 +1558,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1572,37 +1574,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1643,466 +1645,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve Begizta erdibitu - + Loop Double Begizta bikoiztu - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) Gehitu Auto DJ ilarara (bukaeran) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) Gehitu Auto DJ ilarara (hasieran) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track Kargatu aukeratutako pista - + Load selected track and play Kargatu aukeratutako pista eta erreproduzitu - - + + Record Mix - + Toggle mix recording - + Effects Efektuak - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next Hurrengoa - + Switch to next effect - + Previous Aurrekoa - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain Irabazia - + Gain knob Irabazi kisketa - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2127,93 +2129,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2270,806 +2272,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off Mikrofonoa on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ Auto DJ - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface Erabiltzaile interfazea - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3158,32 +3226,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3219,133 +3287,133 @@ CrateFeature - + Remove Kendu - - + + Create New Crate - + Rename Berrizendatu - - + + Lock Blokeatu - + Export Crate as Playlist - + Export Track Files Pisten fitxategiak esportatu - + Duplicate Bikoiztu - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates Kaxak - - + + Import Crate Inportatu kaxa - + Export Crate Esportatu kaxa - + Unlock Desblokeatu - + An unknown error occurred while creating crate: Errore ezezagun bat gertatu da kaxa sortzean: - + Rename Crate Berrizendatu kaxa - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed Ezin inan da kaxa berrizendatu - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U erreprodukzio-zerrenda (*.m3u);;M3U8 erreprodukzio-zerrenda (*.m3u8);;PLS erreprodukzio-zerrenda (*.pls);;CSV testua (*.csv);;Testu hutsa (*.txt) - + Crates are a great way to help organize the music you want to DJ with. Kaxak DJ bezala erabili nahi duzun musika antolatzeko bikainak dira - + Crates let you organize your music however you'd like! Kaxak zure musika nahieran antolatzea baimentzen dizute! - + A crate cannot have a blank name. Kaxa batek ezin du izena hutsik izan - + A crate by that name already exists. Izen hori duen beste kaxa bat bada @@ -3415,37 +3483,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: Ondorengoen laguntzarekin: - + And special thanks to: Eta Eskerrik Asko hauei: - + Past Developers Lehengo Garatzaileak - + Past Contributors Lehengo - + Official Website - + Donate @@ -4875,32 +4943,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin Itxura - + Tool tips Tresnen gomendioak - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4910,52 +4978,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off Desaktibatu - + Library only - + Library and Skin @@ -5566,38 +5624,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information Informazioa - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5816,62 +5874,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added Musika Direktorioa gehituta - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6875,32 +6933,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered Iragazia - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7114,72 +7172,72 @@ Select from different types of displays for the waveform, which differ primarily Liburutegia - + Interface Interfazea - + Waveforms - + Auto DJ Auto DJ - + Equalizers Ekualizadoreak - + Decks - + Colors - + Crossfader Crossfader-a - + Effects Efektuak - + LV2 Plugins - + Recording Grabaketa - + Beat Detection Taupada Detekzioa - + Key Detection - + Normalization Normalizatu - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7189,12 +7247,12 @@ Select from different types of displays for the waveform, which differ primarily Binilo kontrola - + Live Broadcasting - + Modplug Decoder @@ -7335,123 +7393,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Urtea - + Title Titulua - - + + Artist Artista - - + + Album Albuma - + Album Artist Albumaren artista - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous &Aurrekoa - + &Next &Hurrengoa - + &Apply &Aplikatu - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7843,17 +7901,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7954,38 +8012,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes iTunes - - + + Select your iTunes library Aukeratu zure iTunes liburutegia - + (loading) iTunes (kargatzen) iTunes - + Use Default Library Lehenetsitako liburutegia erabili - + Choose Library... Liburutegia aukeratu - + Error Loading iTunes Library Errorea iTunes Liburutegia kargatzerakoan - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. Errore bat suertatu da zure iTunes liburutegia kargatzean. Zure iTunes pista batzuk agian ez dira kargatu. @@ -7993,13 +8051,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8007,57 +8065,57 @@ support. - + activate aktibatu - + toggle - + right eskuina - + left ezkerra - + right small - + left small - + up gora - + down behera - + up small - + down small - + Shortcut Lasterbidea @@ -8078,22 +8136,22 @@ support. LibraryFeature - + Import Playlist Inportatu erreprodukzio-zerrenda - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Erreprodukzio-zerrenda fitxategiak (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8104,27 +8162,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Liburutegi eskaneatzailea - + It's taking Mixxx a minute to scan your music library, please wait... Mixxx-ek une bat behar du zure musika liburutegia eskaneatzeko, mesedez itxaron... - + Cancel Ezeztatu - + Scanning: - + Scanning cover art (safe to cancel) @@ -8240,181 +8298,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. Laguntza<b>Eskuratu</b> Mixxx wikitik. - - - + + + <b>Exit</b> Mixxx. <b>atera</b> Mixxx-etik. - + Retry Berriz saiatu - + skin - - + + Reconfigure Birkonfiguratu - + Help Laguntza - - + + Exit Irten - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue Jarraitu - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Irtetzea konfirmatu - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8486,43 +8544,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Blokeatu - + Playlists Erreprodukzio-zerrendak - + Unlock Desblokeatu - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist Erreprodukzio-zerrenda berria sortu @@ -8530,58 +8588,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8765,7 +8823,7 @@ Do you want to scan your library for cover files now? - + Encoder Kodetzailea @@ -9891,12 +9949,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10034,54 +10092,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists Erreprodukzio-zerrendak - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10090,7 +10148,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox Rhythmbox @@ -10141,34 +10199,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates Kaxak - + Check for Serato databases (refresh) - + (loading) Serato @@ -10191,12 +10249,12 @@ Fully right: end of the effect period Historia - + Unlock Desblokeatu - + Lock Blokeatu @@ -11155,6 +11213,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12330,11 +12413,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12350,16 +12428,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12375,16 +12443,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12938,22 +12996,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor Traktor - + (loading) Traktor (kargatzen) Traktor - + Error Loading Traktor Library Akatsa Traktor Liburutegia Kargatzerakoan - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. Errore bat suertatu da zure Traktor liburutegia kargatzean. Zure iTunes pista batzuk agian ez dira kargatu. @@ -13565,20 +13623,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13749,8 +13807,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Generoa - - Folder + + Directory @@ -13993,155 +14051,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 - + Sampler %1 Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Erreprodukzio-zerrenda berria sortu - + Enter name for new playlist: Idatzi erreprodukzio-zerrendaren izena - + New Playlist Erreprodukzio-zerrenda berria - - - + + + Playlist Creation Failed Ezin izan da erreprodukzio-zerrenda sortu - + A playlist by that name already exists. Badago izen bereko beste erreproduzkio-zerrenda bat - + A playlist cannot have a blank name. Erreprodukzio-Zerrenda batek ezin du izen hutsik izan - + An unknown error occurred while creating playlist: Errore ezezagun bat gertatu da erreprodukzio zerrenda sortzean: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14149,7 +14212,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14186,128 +14249,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory Aukeratu musika liburutegiaren direktorioa - + controllers - + Cannot open database Ezin da datu-basea ireki - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14383,7 +14373,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14440,62 +14430,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_fa.ts b/res/translations/mixxx_fa.ts index 7c7e3b0d9f4..7c044110031 100644 --- a/res/translations/mixxx_fa.ts +++ b/res/translations/mixxx_fa.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates کلکسیون - + Remove Crate as Track Source پاک کردن کلکسیون - + Auto DJ دی‌جی خودکار - + Add Crate as Track Source افزودن کلکسیون @@ -43,24 +43,24 @@ BansheeFeature - + Banshee بانشی - - + + Error loading Banshee database مشکل در بارگذاری بانشی - + Banshee database file not found at - + There was an error loading your Banshee database at @@ -69,32 +69,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) افزودن به صف دی‌جی خودکار (پایین) - + Add to Auto DJ Queue (top) افزودن به صف دی‌جی خودکار (بالا) - + Add to Auto DJ Queue (replace) - + Import Playlist درون ریزی فهرست‌پخش - + Playlist Creation Failed خطا در ایجاد فهرست‌پخش - + An unknown error occurred while creating playlist: خطایی ناشناخته در هنگام تولید فهرست‌پخش رخ داده است : @@ -102,144 +102,144 @@ BasePlaylistFeature - + New Playlist فهرست‌پخش جدید - + Add to Auto DJ Queue (bottom) افزودن به صف دی‌جی خودکار (پایین) - - + + Create New Playlist ساخت فهرست پخش جدید - + Add to Auto DJ Queue (top) افزودن به صف دی‌جی خودکار (بالا) - + Remove حذف - + Rename نام‌گذاری دوباره - + Lock قفل - + Duplicate کپی همسان - - + + Import Playlist درون ریزی فهرست‌پخش - + Export Track Files برون ریزی فهرست پخش - + Analyze entire Playlist تحلیل فهرست‌پخش جاری - + Enter new name for playlist: نام جدید برای فهرست‌پخش - + Duplicate Playlist کپی همسان از فهرست‌پخش - - + + Enter name for new playlist: نام جدید برای فهرست‌پخش - - + + Export Playlist برون ریزی فهرست پخش - + Add to Auto DJ Queue (replace) - + Rename Playlist نام‌گذاری دوباره فهرست‌پخش - - + + Renaming Playlist Failed خطا در نام‌گذاری فهرست‌پخش - - - + + + A playlist by that name already exists. فهرست‌پخشی با این نام از پیش موجود است. - - - + + + A playlist cannot have a blank name. فهرست‌پخش نمیتواند بدون نام باشد - + _copy //: Appendix to default name when duplicating a playlist کپی - - - - - - + + + + + + Playlist Creation Failed خطا در ایجاد فهرست‌پخش - - + + An unknown error occurred while creating playlist: خطایی ناشناخته در هنگام تولید فهرست‌پخش رخ داده است : - + M3U Playlist (*.m3u) فهرست پخش M3U (فایل .m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U فهرست‌پخش (*.m3u);;M3U8 فهرست‌پخش (*.m3u8);;PLS فهرست‌پخش (*.pls);;Text CSV (*.csv);; متن قابل خواندن (*.txt) @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. بارگزاری قطعه امکان‌پذیر نیست. @@ -512,7 +512,7 @@ - + Computer @@ -532,7 +532,7 @@ - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -645,12 +645,12 @@ - + Mixxx Library کتابخانه میکــــس - + Could not load the following file because it is in use by Mixxx or another application. امکان بارگزاری فایل به دلیل استفاده توسط میکــــس یا برنامه دیگر وجود ندارد. @@ -681,6 +681,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -863,13 +941,13 @@ - + Set to full volume - + Set to zero volume @@ -894,13 +972,13 @@ - + Headphone listen button - + Mute button @@ -916,25 +994,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -978,36 +1056,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1019,7 +1067,7 @@ - + Toggle keylock mode @@ -1029,199 +1077,199 @@ - + Vinyl Control - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 - + 1 1 - + 2 - + 4 - + 8 - + 16 ۱۶ - + 32 - + 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library کتابخانه @@ -1332,20 +1380,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1361,7 +1409,7 @@ - + Mute @@ -1372,7 +1420,7 @@ - + Headphone Listen @@ -1393,25 +1441,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1510,52 +1558,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1572,37 +1574,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1643,466 +1645,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) افزودن به صف دی‌جی خودکار (پایین) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) افزودن به صف دی‌جی خودکار (بالا) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix - + Toggle mix recording - + Effects جلوه‌ها - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next - + Switch to next effect - + Previous - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain سود - + Gain knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2127,93 +2129,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2270,806 +2272,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ دی‌جی خودکار - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface واسط کاربر - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3158,32 +3226,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3219,133 +3287,133 @@ CrateFeature - + Remove حذف - - + + Create New Crate - + Rename نام‌گذاری دوباره - - + + Lock قفل - + Export Crate as Playlist - + Export Track Files برون ریزی فهرست پخش - + Duplicate کپی همسان - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates کلکسیون - - + + Import Crate - + Export Crate - + Unlock بازکردن قفل - + An unknown error occurred while creating crate: - + Rename Crate - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U فهرست‌پخش (*.m3u);;M3U8 فهرست‌پخش (*.m3u8);;PLS فهرست‌پخش (*.pls);;Text CSV (*.csv);; متن قابل خواندن (*.txt) - + Crates are a great way to help organize the music you want to DJ with. - + Crates let you organize your music however you'd like! - + A crate cannot have a blank name. - + A crate by that name already exists. @@ -3415,37 +3483,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers سازندگان قديم - + Past Contributors - + Official Website - + Donate @@ -4875,32 +4943,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin - + Tool tips - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale محلی @@ -4910,52 +4978,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off خاموش - + Library only - + Library and Skin @@ -5566,38 +5624,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information اطلاعات - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5816,62 +5874,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6875,32 +6933,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered فیلتر شده - + HSV HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7114,72 +7172,72 @@ Select from different types of displays for the waveform, which differ primarily کتابخانه - + Interface واسط - + Waveforms - + Auto DJ دی‌جی خودکار - + Equalizers - + Decks - + Colors - + Crossfader - + Effects جلوه‌ها - + LV2 Plugins - + Recording ضبط - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7189,12 +7247,12 @@ Select from different types of displays for the waveform, which differ primarily - + Live Broadcasting - + Modplug Decoder @@ -7335,123 +7393,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year سال - + Title سمت - - + + Artist کل %n هنرمند - - + + Album کل %n آلبوم - + Album Artist هنرمند آلبوم - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous &قبلی‌ - + &Next &بعدی‌ - + &Apply &اعمال‌ - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7843,17 +7901,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7954,38 +8012,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7993,13 +8051,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8007,57 +8065,57 @@ support. - + activate فعالسازی - + toggle ضامن - + right راست - + left چپ - + right small - + left small - + up بالا - + down پایین - + up small - + down small - + Shortcut میان‌بر @@ -8078,22 +8136,22 @@ support. LibraryFeature - + Import Playlist درون ریزی فهرست‌پخش - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) نوع فایل فهرست‌پخش (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8104,27 +8162,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel انصراف - + Scanning: - + Scanning cover art (safe to cancel) @@ -8240,181 +8298,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry تلاش دوباره - + skin - - + + Reconfigure پیکربندی مجدد - + Help راهنما - - + + Exit خروج - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue ادامه - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8485,43 +8543,43 @@ Do you want to select an input device? PlaylistFeature - + Lock قفل - + Playlists فهرست‌های پخش - + Unlock بازکردن قفل - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist ساخت فهرست پخش جدید @@ -8529,58 +8587,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8764,7 +8822,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9890,12 +9948,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10033,54 +10091,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists فهرست‌های پخش - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10089,7 +10147,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox ریتم‌باکس @@ -10140,34 +10198,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates کلکسیون - + Check for Serato databases (refresh) - + (loading) Serato @@ -10190,12 +10248,12 @@ Fully right: end of the effect period پیشینه - + Unlock بازکردن قفل - + Lock قفل @@ -11154,6 +11212,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12329,11 +12412,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12349,16 +12427,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12374,16 +12442,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12937,22 +12995,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13564,20 +13622,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13748,8 +13806,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.ژانر - - Folder + + Directory @@ -13992,155 +14050,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 دک %1 - + Sampler %1 شبیه ساز %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist ساخت فهرست پخش جدید - + Enter name for new playlist: نام جدید برای فهرست‌پخش - + New Playlist فهرست‌پخش جدید - - - + + + Playlist Creation Failed خطا در ایجاد فهرست‌پخش - + A playlist by that name already exists. فهرست‌پخشی با این نام از پیش موجود است. - + A playlist cannot have a blank name. فهرست‌پخش نمیتواند بدون نام باشد - + An unknown error occurred while creating playlist: خطایی ناشناخته در هنگام تولید فهرست‌پخش رخ داده است : - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14148,7 +14211,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus خروج @@ -14185,128 +14248,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14382,7 +14372,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14439,62 +14429,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_fi.ts b/res/translations/mixxx_fi.ts index 7d023baba93..b4ed7a34fac 100644 --- a/res/translations/mixxx_fi.ts +++ b/res/translations/mixxx_fi.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Levylaukut - + Remove Crate as Track Source - + Auto DJ Auto-DJ - + Add Crate as Track Source @@ -43,24 +43,24 @@ BansheeFeature - + Banshee - - + + Error loading Banshee database - + Banshee database file not found at - + There was an error loading your Banshee database at @@ -69,32 +69,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Lisää Auto DJ -jonon loppuun - + Add to Auto DJ Queue (top) Lisää Auto DJ -jonon alkuun - + Add to Auto DJ Queue (replace) - + Import Playlist Tuo soittolista - + Playlist Creation Failed Soittolistan luominen epäonnistui - + An unknown error occurred while creating playlist: Soittolistan luonnissa tapahtui tuntematon virhe: @@ -102,144 +102,144 @@ BasePlaylistFeature - + New Playlist Uusi soittolista - + Add to Auto DJ Queue (bottom) Lisää Auto DJ -jonon loppuun - - + + Create New Playlist Luo uusi soittolista - + Add to Auto DJ Queue (top) Lisää Auto DJ -jonon alkuun - + Remove Poista - + Rename Muuta nimeä - + Lock Lukitse - + Duplicate - - + + Import Playlist Tuo soittolista - + Export Track Files - + Analyze entire Playlist - + Enter new name for playlist: Anna uusi nimi soittolistalle - + Duplicate Playlist Duplikoi soittolista - - + + Enter name for new playlist: Anna nimi uudelle soittolistalle - - + + Export Playlist Vie soittolista - + Add to Auto DJ Queue (replace) - + Rename Playlist Nimeä soittolista uudelleen - - + + Renaming Playlist Failed Soittolistan uudelleennimeäminen epäonnistui - - - + + + A playlist by that name already exists. Samanniminen soittolista on jo olemassa. - - - + + + A playlist cannot have a blank name. Soittolistan nimi ei voi olla tyhjä. - + _copy //: Appendix to default name when duplicating a playlist _kopioi - - - - - - + + + + + + Playlist Creation Failed Soittolistan luominen epäonnistui - - + + An unknown error occurred while creating playlist: Soittolistan luonnissa tapahtui tuntematon virhe: - + M3U Playlist (*.m3u) M3U Soittolista (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) m3u-soittolista (*.m3u);;m3u8-soittolista (*.m3u8);;pls-soittolista (*.pls);;CSV-tekstitiedosto (*.csv);;Luettava tekstitiedosto (*.txt) @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Kappaletta ei voitu ladata. @@ -512,7 +512,7 @@ - + Computer @@ -532,7 +532,7 @@ - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -645,12 +645,12 @@ Tiedosto luotiin - + Mixxx Library Mixxx-kirjasto - + Could not load the following file because it is in use by Mixxx or another application. Seuraavaa tiedostoa ei voitu ladata, koska se on Mixxx:n tai jonkin muun sovelluksen käytössä. @@ -681,6 +681,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -863,13 +941,13 @@ - + Set to full volume Aseta äänenvoimakkuus täysille - + Set to zero volume Aseta äänenvoimakkuus nollalle @@ -894,13 +972,13 @@ - + Headphone listen button Kuulokekuuntelun nappi - + Mute button Hiljennä-nappi @@ -916,25 +994,25 @@ - + Mix orientation (e.g. left, right, center) Miksauksen suunta (vasen, oikea, keskellä) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -978,36 +1056,6 @@ Toggle quantize mode Kvantisoinnin valintanappi - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1019,7 +1067,7 @@ - + Toggle keylock mode Valitse sävellajin lukitustila @@ -1029,199 +1077,199 @@ Taajuuskorjaimet - + Vinyl Control Ohjainlevy - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) Ohjainlevyn käynnistystila (päällä/pois/kuuma) - + Toggle vinyl-control mode (ABS/REL/CONST) Ohjainlevyn ohjaustila (abs./suht./vakio) - + Pass through external audio into the internal mixer - + Cues Cue-nappi - + Cue button Cue-nappi - + Set cue point Aseta cue-piste - + Go to cue point - + Go to cue point and play - + Go to cue point and stop Siirry cue-pisteeseen ja pysäytä - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues Nopea merkki - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 Poista hotcue-piste %1 - + Set hotcue %1 - + Jump to hotcue %1 Siirry hotcue-pisteeseen %1 - + Jump to hotcue %1 and stop Siirry hotcue-pisteeseen %1 ja pysäytä - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping Loopit - + Loop In button Loopin aloitusnappi - + Loop Out button Loopin lopetusnappi - + Loop Exit button - + 1/2 - + 1 1 - + 2 - + 4 - + 8 - + 16 - + 32 - + 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop Luo %1-tahdin looppi - + Create temporary %1-beat loop roll - + Library Kirjasto @@ -1332,20 +1380,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1361,7 +1409,7 @@ - + Mute Hiljennä @@ -1372,7 +1420,7 @@ - + Headphone Listen @@ -1393,25 +1441,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1510,52 +1558,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1572,37 +1574,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1643,466 +1645,466 @@ Matalien taajuuksien korjain - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue Cue-nappi - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) Lisää Auto DJ -jonon loppuun - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) Lisää Auto DJ -jonon alkuun - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track Lataa valittu kappale - + Load selected track and play Lataa valittu kappale ja soita - - + + Record Mix - + Toggle mix recording - + Effects Efektit - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next Seuraava - + Switch to next effect - + Previous Edellinen - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain Herkkyys - + Gain knob Sisääntulon herkkyys - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2127,93 +2129,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2270,806 +2272,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off Mikrofoni päällä/pois - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ Auto-DJ - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface Käyttöliittymä - + Samplers Show/Hide - + Show/hide the sampler section Näytä tai piilota näytesoittimet - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section Näytä tai piilota ohjainlevyjen valinnat - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget Näytä tai piilota pyörivä ohjainlevy - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3158,32 +3226,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3219,133 +3287,133 @@ CrateFeature - + Remove Poista - - + + Create New Crate - + Rename Muuta nimeä - - + + Lock Lukitse - + Export Crate as Playlist - + Export Track Files - + Duplicate - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates Levylaukut - - + + Import Crate Tuo levylaukku - + Export Crate Vie levylaukku - + Unlock Poista lukitus - + An unknown error occurred while creating crate: Levylaukkua tuotaessa tapahtui tuntematon virhe: - + Rename Crate Muuta levylaukun nimeä - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed Levylaukun uudelleennimeäminen epäonnistui - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) m3u-soittolista (*.m3u);;m3u8-soittolista (*.m3u8);;pls-soittolista (*.pls);;CSV-tekstitiedosto (*.csv);;Luettava tekstitiedosto (*.txt) - + Crates are a great way to help organize the music you want to DJ with. Levylaukkujen avulla voit helpommin järjestellä musiikkisi DJ-käyttöön. - + Crates let you organize your music however you'd like! Levylaukkujen avulla voit järjestellä musiikkisi kuten haluat! - + A crate cannot have a blank name. Levylaukun nimi ei voi olla tyhjä - + A crate by that name already exists. Samanniminen levylaukku on jo olemassa. @@ -3415,37 +3483,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: Avustajina ovat toimineet: - + And special thanks to: Lisäkiitokset seuraaville henkilöille: - + Past Developers Aikaisemmat kehittäjät - + Past Contributors Aikaisemmat avustajat - + Official Website - + Donate @@ -4876,32 +4944,32 @@ Haluatko ottaa asetukset käyttöön ja jatkaa? DlgPrefControlsDlg - + Skin Teema - + Tool tips Vihjetekstit - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale Alue ja kieli @@ -4911,52 +4979,42 @@ Haluatko ottaa asetukset käyttöön ja jatkaa? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off Ei käytössä - + Library only - + Library and Skin @@ -5567,38 +5625,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information Tietoja - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5817,62 +5875,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added Musiikkikansio lisätty - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6876,32 +6934,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered Suodatettu - + HSV - + RGB - + OpenGL not available OpenGL ei ole käytettävissä - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7115,72 +7173,72 @@ Select from different types of displays for the waveform, which differ primarily Kirjasto - + Interface Käyttöliittymä - + Waveforms - + Auto DJ Auto-DJ - + Equalizers Taajuuskorjaimet - + Decks - + Colors - + Crossfader Ristihäivytys - + Effects Efektit - + LV2 Plugins - + Recording Nauhoitus - + Beat Detection Iskuntunnistus - + Key Detection - + Normalization Normalisointi - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7190,12 +7248,12 @@ Select from different types of displays for the waveform, which differ primarily Ohjainlevy - + Live Broadcasting Verkkojulkaisu - + Modplug Decoder @@ -7336,123 +7394,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Vuosi - + Title Kappale - - + + Artist Esittäjä - - + + Album Levy - + Album Artist Albumin esittäjä - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous &Edellinen - + &Next &Seuraava - + &Apply &Käytä - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7844,17 +7902,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7955,38 +8013,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes iTunes - - + + Select your iTunes library Valitse iTunes kirjastosi - + (loading) iTunes (ladataan) iTunes - + Use Default Library Käytä oletuskirjastoa - + Choose Library... Valitse kirjasto... - + Error Loading iTunes Library Virhe ladattaessa iTunes-kirjastoa - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. Tapahtui virhe ladattaessa iTunes kirjastoa. Osa iTunes kappaleista tai soittolistoista saattaa puuttua. @@ -7994,13 +8052,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8008,57 +8066,57 @@ support. - + activate aktivoi - + toggle näkyvyys - + right oikea - + left vasen - + right small - + left small - + up ylös - + down alas - + up small - + down small - + Shortcut Pikakuvake @@ -8079,22 +8137,22 @@ support. LibraryFeature - + Import Playlist Tuo soittolista - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Soittolistan tiedostot (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8105,27 +8163,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Kokoelman läpikäynti - + It's taking Mixxx a minute to scan your music library, please wait... Kokoelman läpikäynti kestää hetken. Ole hyvä ja odota... - + Cancel Keskeytä - + Scanning: - + Scanning cover art (safe to cancel) @@ -8241,181 +8299,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy Äänilaite on varattu - + <b>Retry</b> after closing the other application or reconnecting a sound device <b>Yritä uudelleen</b> suljettuasi toisen ohjelman tai yhdistettyäsi äänilaitteen - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. <b>Määrittelle uudestaan</b> Mixxx- äänilaitteidn asetukset. - - + + Get <b>Help</b> from the Mixxx Wiki. Etsi <b>apua</b> Mixxx-wikistä. - - - + + + <b>Exit</b> Mixxx. <b>Sulje</b> Mixxx. - + Retry Yritä uudelleen - + skin - - + + Reconfigure Määrittele uudelleen - + Help Ohje - - + + Exit Sulje - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices Äänilaitteita ei löytynyt - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. Äänilaitteita ei ole määritelty mixxx-asetuksissa. Äänen käsittely ei ole käytössä, kunnes kelvollinen toistolaite on määritelty. - + <b>Continue</b> without any outputs. <b>Jatka</b> määrittelemättä äänilaitteita. - + Continue Jatka - + Load track to Deck %1 Lataa kappale dekkiin %1 - + Deck %1 is currently playing a track. Dekki %1 soittaa kappaletta. - + Are you sure you want to load a new track? Haluatko varmasti ladata uuden kappaleen? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file Virhe teematiedostossa - + The selected skin cannot be loaded. Valittua teemaa ei voi ladata. - + OpenGL Direct Rendering OpenGL -suorapiirto - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Varmista lopetus - + A deck is currently playing. Exit Mixxx? Dekki soittaa kappaletta. Suljetaanko Mixxx? - + A sampler is currently playing. Exit Mixxx? Näytesoitin on käynnissä. Suljetaanko mixxx? - + The preferences window is still open. Määritys-ikkuna on vielä auki. - + Discard any changes and exit Mixxx? Hylkää kaikki muutokset ja sulje Mixxx @@ -8488,43 +8546,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Lukitse - + Playlists Soittolistat - + Unlock Poista lukitus - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. Jotkut DJ:t luovat soittolistoja ennen esiintymistä, toiset rakentavat soittolistan esityksen aikana. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. Käyttäessäsi soittolistaa DJ-esityksen aikana, muista tarkkailla yleisön reaktioita valitsemaasi musiikkiin. - + Create New Playlist Luo uusi soittolista @@ -8532,58 +8590,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8767,7 +8825,7 @@ Do you want to scan your library for cover files now? - + Encoder Pakkaaja @@ -9893,12 +9951,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10036,54 +10094,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists Soittolistat - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10092,7 +10150,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox Rhythmbox @@ -10143,34 +10201,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates Levylaukut - + Check for Serato databases (refresh) - + (loading) Serato @@ -10193,12 +10251,12 @@ Fully right: end of the effect period Soittohistoria - + Unlock Poista lukitus - + Lock Lukitse @@ -11157,6 +11215,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12332,11 +12415,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12352,16 +12430,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12377,16 +12445,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12940,22 +12998,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor Traktor - + (loading) Traktor (ladataan) Traktor - + Error Loading Traktor Library Virhe ladattaessa traktor-kirjastoa - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. Tapahtui virhe ladattaessa Traktor-kirjastoa. Jotkin Traktor kappaleista tai soittolistoista saattavat puuttua. @@ -13567,20 +13625,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Läpisyöttö - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13751,8 +13809,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Tyylilaji - - Folder + + Directory @@ -13995,155 +14053,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 Dekki %1 - + Sampler %1 Näytesoitin %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Luo uusi soittolista - + Enter name for new playlist: Anna nimi uudelle soittolistalle - + New Playlist Uusi soittolista - - - + + + Playlist Creation Failed Soittolistan luominen epäonnistui - + A playlist by that name already exists. Samanniminen soittolista on jo olemassa. - + A playlist cannot have a blank name. Soittolistan nimi ei voi olla tyhjä. - + An unknown error occurred while creating playlist: Soittolistan luonnissa tapahtui tuntematon virhe: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14151,7 +14214,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14188,128 +14251,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory Valitse musiikkikokoelman sijainti - + controllers - + Cannot open database Tietokantaa ei voida avata - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14388,7 +14378,7 @@ Valitse OK poistuaksesi. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14445,62 +14435,62 @@ Valitse OK poistuaksesi. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse Yleinen HID hiiri - + Generic HID Joystick Yleinen HID ohjaussauva - + Generic HID Game Pad - + Generic HID Keyboard Yleinen HID näppäimistö - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_fr.qm b/res/translations/mixxx_fr.qm index 92a7c6feb465b6f6b662486e6365417352c2a3fa..90dec960d9dd7f9a6939afa1db86144e388a7b8f 100644 GIT binary patch delta 20957 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 delta 22914 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⁢F(MDRa_R|_OAmnnP{MCtEOimYHGii}f?LrM|< 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

X~EC5a<>Oz1L!-gd_x4~S8udR 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 AutoDJFeature - + Crates Bacs - + Remove Crate as Track Source Supprimer le bac comme source de piste - + Auto DJ Auto DJ - + Add Crate as Track Source Ajouter le bac comme source de pistes @@ -43,18 +43,18 @@ BansheeFeature - + Banshee Banshee - - + + Error loading Banshee database Erreur lors du chargement de la base de données de Banshee - + Banshee database file not found at Base de données de Banshee non trouvée à @@ -62,7 +62,7 @@ - + There was an error loading your Banshee database at Une erreur s'est produite lors du chargement de votre base de données Banshee à partir de @@ -72,32 +72,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Ajouter à la file Auto DJ (fin) - + Add to Auto DJ Queue (top) Ajouter à la file Auto DJ (début) - + Add to Auto DJ Queue (replace) Ajouter à la file Auto-DJ (Remplacer) - + Import Playlist Importer une liste de lecture - + Playlist Creation Failed La création de la liste de lecture a échoué - + An unknown error occurred while creating playlist: Une erreur inconnue s'est produite à la création de la liste de lecture : @@ -105,144 +105,144 @@ BasePlaylistFeature - + New Playlist Nouvelle liste de lecture - + Add to Auto DJ Queue (bottom) Ajouter à la file Auto DJ (fin) - - + + Create New Playlist Créer une nouvelle liste de lecture - + Add to Auto DJ Queue (top) Ajouter à la file Auto DJ (début) - + Remove Supprimer - + Rename Renommer - + Lock Verrouiller - + Duplicate Dupliquer - - + + Import Playlist Importer une liste de lecture - + Export Track Files Exporter les fichiers des pistes - + Analyze entire Playlist Analyser la liste de lecture entière - + Enter new name for playlist: Entrer le nouveau nom de la liste de lecture : - + Duplicate Playlist Dupliquer la liste de lecture - - + + Enter name for new playlist: Entrer le nom de la nouvelle liste de lecture : - - + + Export Playlist Exporter la liste de lecture - + Add to Auto DJ Queue (replace) Ajouter à la file Auto-DJ (Remplacer) - + Rename Playlist Renommer la liste de lecture - - + + Renaming Playlist Failed Échec pour renomer la liste de lecture - - - + + + A playlist by that name already exists. Une liste de lecture du même nom exise déjà - - - + + + A playlist cannot have a blank name. Une liste de lecture ne peut pas être sans nom. - + _copy //: Appendix to default name when duplicating a playlist _copie - - - - - - + + + + + + Playlist Creation Failed La création de la liste de lecture a échoué - - + + An unknown error occurred while creating playlist: Une erreur inconnue s'est produite à la création de la liste de lecture : - + M3U Playlist (*.m3u) Liste de lecture M3U (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Liste de lecture M3U (*.m3u);;Liste de lecture M3U8 (*.m3u8);;Liste de lecture PLS (*.pls);;Texte CSV (*.csv);;Texte (*.txt) @@ -263,7 +263,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Impossible de charger la piste. @@ -515,7 +515,7 @@ - + Computer Ordinateur @@ -535,7 +535,7 @@ Analyse - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. "Ordinateur" vous permet de naviguer, voir et charger les pistes dans les répertoires de votre disque dur et périphériques externes. @@ -648,12 +648,12 @@ Fichier créé - + Mixxx Library Bibliothèque Mixxx - + Could not load the following file because it is in use by Mixxx or another application. Impossible de charger le fichier suivant car il est utilisé par Mixxx ou une autre application. @@ -684,6 +684,84 @@ Le fichier '%1' est vide et n'a pas pu être chargé. + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + Démarre Mixxx en mode plein écran + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + Répertoire de niveau supérieur dans lequel Mixxx doit rechercher ses fichiers de ressources, tels que les mappages MIDI, en remplaçant l'emplacement d'installation par défaut. + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -866,13 +944,13 @@ - + Set to full volume Mettre à plein volume - + Set to zero volume Mettre le volume à zéro @@ -897,13 +975,13 @@ Bouton (Censeur) d'inversion de lecture - + Headphone listen button Bouton d'écoute au casque - + Mute button Bouton sourdine @@ -919,25 +997,25 @@ - + Mix orientation (e.g. left, right, center) Orientation du Mix (ex. gauche, droite, centre) - + Set mix orientation to left Régle l'orientation du mix à gauche - + Set mix orientation to center Régle l'orientation du mix au centre - + Set mix orientation to right Régle l'orientation du mix à droite @@ -981,36 +1059,6 @@ Toggle quantize mode Activer/désactiver le mode quantification - - - Increase internal master BPM by 1 - Augmenter le BPM interne principal de 1 - - - - Decrease internal master BPM by 1 - Diminuer le BPM interne principal de 1 - - - - Increase internal master BPM by 0.1 - Augmenter le BPM interne principal de 0.1 - - - - Decrease internal master BPM by 0.1 - Diminuer le BPM interne principal de 0.1 - - - - Toggle sync master - Basculer la synchronisation principale - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - Basculer les 3 états du mode de synchronisation (ÉTEINT, SUIVEUR, PRINCIPAL) - One-time beat sync (tempo only) @@ -1022,7 +1070,7 @@ Synchronisation rythmique ponctuelle (phase uniquement) - + Toggle keylock mode Activer/désactiver le mode verrouillage de tonalité @@ -1032,199 +1080,199 @@ Égaliseurs - + Vinyl Control Contrôle Vinyle - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) Activer/désactiver le mode pré-écoute avec le contrôle vinyle (ARRET/UN/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) Activer/désactiver le mode de contrôle vinyle (ABS/REL/CONST) - + Pass through external audio into the internal mixer Passage de l'audio externe dans la table de mixage interne - + Cues Repères - + Cue button Bouton de repère - + Set cue point Définir le point de repère - + Go to cue point Aller au point de repère - + Go to cue point and play Aller au point de repère et lire - + Go to cue point and stop Aller au point de repère et stopper - + Preview from cue point Pré-écoute depuis le point de repère - + Cue button (CDJ mode) Bouton de repère (mode CDJ) - + Stutter cue Repère de saccade - + Hotcues Repères rapides - + Set, preview from or jump to hotcue %1 Définir, pré-écouter à partir de ou sauter au repère rapide %1 - + Clear hotcue %1 Effacer le repère rapide %1 - + Set hotcue %1 Définir le repère rapide %1 - + Jump to hotcue %1 Sauter au repère rapide %1 - + Jump to hotcue %1 and stop Sauter au repère rapide %1 et stopper - + Jump to hotcue %1 and play Sauter au repère rapide %1 et lire - + Preview from hotcue %1 Pré-écouter à partir du repère rapide %1 - - + + Hotcue %1 Repère rapide %1 - + Looping Bouclage - + Loop In button Bouton de début de boucle - + Loop Out button Bouton de fin de boucle - + Loop Exit button Bouton de sortie de boucle - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 32 - + 64 64 - + Move loop forward by %1 beats Déplace la boucle vers l'avant de %1 battements - + Move loop backward by %1 beats Recule la boucle de %1 battements - + Create %1-beat loop Créer une boucle sur %1 battement - + Create temporary %1-beat loop roll Créer une boucle déroulante temporaire sur %1-battement - + Library Bibliothèque @@ -1335,20 +1383,20 @@ - - + + Volume Fader Curseur de volume - + Full Volume Plein volume - + Zero Volume Volume à zéro @@ -1364,7 +1412,7 @@ - + Mute Sourdine @@ -1375,7 +1423,7 @@ - + Headphone Listen Écoute au casque @@ -1396,25 +1444,25 @@ - + Orientation Orientation - + Orient Left Orienter à gauche - + Orient Center Orienter au centre - + Orient Right Orienter à droite @@ -1513,52 +1561,6 @@ Sync Synchronisation - - - Sync Mode - Mode de synchronisation - - - - Internal Sync Master - Synchronisation interne principale - - - - Toggle Internal Sync Master - Basculer la synchronisation interne principale - - - - - Internal Master BPM - BPM interne principal - - - - Internal Master BPM +1 - BPM interne principal +1 - - - - Internal Master BPM -1 - BPM interne principal -1 - - - - Internal Master BPM +0.1 - BPM interne principal +0.1 - - - - Internal Master BPM -0.1 - BPM interne principal -0.1 - - - - Sync Master - Synchronisation principale - Beat Sync One-Shot @@ -1575,37 +1577,37 @@ Synchronisation phase ponctuelle - + Pitch control (does not affect tempo), center is original pitch Contrôle de la hauteur tonale (n'affecte pas le tempo), au centre est la hauteur tonale d'origine - + Pitch Adjust Ajustement de la hauteur tonale - + Adjust pitch from speed slider pitch Ajuster la hauteur tonale en fonction de celle du curseur de vitesse - + Match musical key Aligner la tonalité musicale - + Match Key Aligner tonalité - + Reset Key Réinitialiser la tonalité - + Resets key to original Réinitialise la tonalité à sa valeur d'origine @@ -1646,466 +1648,466 @@ EQ des Basses - + Toggle Vinyl Control Activer/désactiver le contrôle vinyle - + Toggle Vinyl Control (ON/OFF) Activer/désactiver le contrôle vinyle (ARRÊT/MARCHE) - + Vinyl Control Mode Mode de Contrôle Vinyle - + Vinyl Control Cueing Mode Mode de pré-écoute contrôle vinyle - + Vinyl Control Passthrough Contrôle de vinyle intermédiaire - + Vinyl Control Next Deck Platine de contrôle de vinyle suivante - + Single deck mode - Switch vinyl control to next deck Mode de platine unique - Basculer vers la platine suivante - + Cue Repère - + Set Cue Placer un repère - + Go-To Cue Aller au repère - + Go-To Cue And Play Aller au repère et lire - + Go-To Cue And Stop Aller au repère et arrêter - + Preview Cue Prévisualiser le repère - + Cue (CDJ Mode) Repère (mode CDJ) - + Stutter Cue Repère de saccade - + Go to cue point and play after release Aller au point de repère et lancer la lecture en relâchant le bouton - + Clear Hotcue %1 Effacer le repère rapide %1 - + Set Hotcue %1 Placer le repère rapide %1 - + Jump To Hotcue %1 Sauter au repère rapide %1 - + Jump To Hotcue %1 And Stop Sauter au repère rapide %1 et arrêter - + Jump To Hotcue %1 And Play Sauter au repère rapide %1 et lire - + Preview Hotcue %1 Prévisualiser le repère rapide %1 - + Loop In Entrée en boucle - + Loop Out Sortie de Boucle - + Loop Exit Sortir de la boucle - + Reloop/Exit Loop Reboucler/Sortir de la boucle - + Loop Halve Réduction de la boucle de moitié - + Loop Double Doublage de la boucle - + 1/32 1/32 - + 1/16 1/16 - + 1/8 1/8 - + 1/4 1/4 - + Move Loop +%1 Beats Déplacer la boucle de +%1 battements - + Move Loop -%1 Beats Déplacer la boucle de -%1 battements - + Loop %1 Beats Boucle de %1 battements - + Loop Roll %1 Beats Boucle déroulante de %1 battements - + Add to Auto DJ Queue (bottom) Ajouter à la file Auto DJ (fin) - + Append the selected track to the Auto DJ Queue Ajoute la piste sélectionnée à la file Auto DJ - + Add to Auto DJ Queue (top) Ajouter à la file Auto DJ (début) - + Prepend selected track to the Auto DJ Queue Ajoute la piste sélectionnée au début de la file Auto DJ - + Load Track Charger la piste - + Load selected track Charger la piste sélectionnée - + Load selected track and play Charger la piste sélectionnée et la lire - - + + Record Mix Enregistrer le mix - + Toggle mix recording Basculer l'enregistrement du mix - + Effects Effets - + Quick Effects Effets rapides - + Deck %1 Quick Effect Super Knob Super potentiomètre d'Effet rapide pour la platine %1 - + Quick Effect Super Knob (control linked effect parameters) Super potentiomètre d'Effet rapide (contrôle les paramètres d'effet liés) - - + + Quick Effect Effet rapide - + Clear effect rack Effacer le rack d'effets - + Clear Effect Rack Effacer le rack d'effets - + Clear Unit Effacer l'unité - + Clear effect unit Effacer l'unité d'effets - + Toggle Unit Basculer d'unité - + Dry/Wet Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. Règle la balance entre le signal original (dry) et le signal traité (wet). - + Super Knob Super potentiomètre - + Next Chain Prochaine chaîne - + Assign Assigner - + Clear Effacer - + Clear the current effect Effacer l'effet actuel - + Toggle Basculer - + Toggle the current effect Basculer l'effet actuel - + Next Suivant - + Switch to next effect Passer à l'effet suivant - + Previous Précédent - + Switch to the previous effect Passer à l'effet précédent - + Next or Previous Suivant ou précédent - + Switch to either next or previous effect Passer à l'effet suivant ou précédent - - + + Parameter Value Valeur du paramètre - - + + Microphone Ducking Strength Puissance d'atténuation du microphone - + Microphone Ducking Mode Mode atténuation du microphone - + Gain Gain - + Gain knob Contrôle de gain - + Shuffle the content of the Auto DJ queue Mélange aléatoirement le contenu de la file Auto DJ - + Skip the next track in the Auto DJ queue Saute à la piste suivante dans la file Auto DJ - + Auto DJ Toggle Basculement Auto DJ - + Toggle Auto DJ On/Off Activer/Désactiver Basculement Auto DJ - + Microphone & Auxiliary Show/Hide Affiche/Masque Microphone/Auxiliaire - + Show/hide the microphone & auxiliary section Affiche/Masque la section Microphone/Auxiliaire - + 4 Effect Units Show/Hide Afficher/Masquer les 4 unités d'effets - + Switches between showing 2 and 4 effect units Basculer entre l'affichage de 2 et 4 unités d'effets - + Mixer Show/Hide Afficher/Cacher le mixer - + Show or hide the mixer. Affiche ou masque la table de mixage. - + Cover Art Show/Hide (Library) Affiche/Masque la pochette d'album (bibliothèque) - + Show/hide cover art in the library Afficher/Masquer la pochette d'album dans la bibliothèque - + Library Maximize/Restore Maximise/Rétablit la bibliothèque - + Maximize the track library to take up all the available screen space. Maximise la bibliothèque de pistes pour occuper tout l'espace d'écran disponible - + Effect Rack Show/Hide Affiche/Masque le rack d'effets - + Show/hide the effect rack Affiche/Masque le rack d'effets - + Waveform Zoom Out Zoom arrière de la forme d'onde @@ -2130,93 +2132,93 @@ Synchronisation tempo rythmique ponctuelle (et phase avec une quantification activée) - + Playback Speed Vitesse de Lecture - + Playback speed control (Vinyl "Pitch" slider) Contrôle de la vitesse de lecture (curseur "Pitch" vinyle) - + Pitch (Musical key) Hauteur tonale (tonalité musicale) - + Increase Speed Augmenter la vitesse - + Adjust speed faster (coarse) Ajuster la vitesse en plus rapide (grossier) - - + + Increase Speed (Fine) Augmenter la Vitesse (Fin) - + Adjust speed faster (fine) Ajuster la vitesse en plus rapide (fin) - + Decrease Speed Diminuer la vitesse - + Adjust speed slower (coarse) Ajuster la vitesse en plus lent (grossier) - + Adjust speed slower (fine) Ajuster la vitesse en plus lent (fin) - + Temporarily Increase Speed Augmenter temporairement la vitesse - + Temporarily increase speed (coarse) Augmente temporairement la vitesse (grossier) - + Temporarily Increase Speed (Fine) Augmente Temporairement la Vitesse (Fin) - + Temporarily increase speed (fine) Diminue temporairement la vitesse (fin) - + Temporarily Decrease Speed Diminuer temporairement la vitesse - + Temporarily decrease speed (coarse) Diminue temporairement la vitesse (grossier) - + Temporarily Decrease Speed (Fine) Diminue Temporairement la vitesse (Fin) - + Temporarily decrease speed (fine) Diminue temporairement la vitesse (fin) @@ -2273,807 +2275,873 @@ Synchroniser/Vérouiller synchronisation - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed Vitesse - + Pitch (Musical Key) Hauteur tonale (tonalité musicale) - + Increase Pitch Augmenter la hauteur tonale - + Increases the pitch by one semitone Augmente la hauteur tonale d'un demi ton. - + Increase Pitch (Fine) Augmenter la hauteur tonale (fin) - + Increases the pitch by 10 cents Augmente la hauteur tonale de 10 centièmes. - + Decrease Pitch Diminuer la hauteur tonale - + Decreases the pitch by one semitone Diminue la hauteur tonale d'un demi ton. - + Decrease Pitch (Fine) Diminuer la hauteur tonale (fin) - + Decreases the pitch by 10 cents Diminue la hauteur tonale de 10 centièmes. - + Keylock Verrouillage - + CUP (Cue + Play) CUP (Point de repère et lecture) - + Shift cue points earlier Décaler les points de repère plus tôt - + Shift cue points 10 milliseconds earlier Décale les points de repère 10 millisecondes plus tôt - + Shift cue points earlier (fine) Décaler les points de repère plus tôt (finement) - + Shift cue points 1 millisecond earlier Décale les points de repère 1 milliseconde plus tôt - + Shift cue points later Décaler les points de repère plus tard - + Shift cue points 10 milliseconds later Décaler les points de repère 10 millisecondes plus tard - + Shift cue points later (fine) Décaler les points de repère plus tard (finement) - + Shift cue points 1 millisecond later   Ajouter la piste à la file Auto DJ (fin) - + Hotcues %1-%2 Repères rapide %1-%2 - + Intro / Outro Markers Marqueurs Intro/Outro - + Intro Start Marker Marqueur début Intro - + Intro End Marker Marqueur fin Intro - + Outro Start Marker Marqueur début outro - + Outro End Marker Marqueur fin outro - + intro start marker marqueur début intro - + intro end marker marqueur fin intro - + outro start marker marqueur début outro - + outro end marker marqueur fin outro - + Activate %1 [intro/outro marker Activer %1 - + Jump to or set the %1 [intro/outro marker Aller au ou régler le %1 - + Set %1 [intro/outro marker Définir %1 - + Set or jump to the %1 [intro/outro marker Définir ou aller au %1 - + Clear %1 [intro/outro marker Effacer %1 - + Clear the %1 [intro/outro marker Effacer le %1 - + Loop Selected Beats Boucler sur les battements sélectionnées - + Create a beat loop of selected beat size Créer une boucle de battement du nombre de battement sélectionné - + Loop Roll Selected Beats Boucle déroulante des battements sélectionnés - + Create a rolling beat loop of selected beat size Créer une boucle de battement déroulante du nombre de battement sélectionné - + Loop Beats Boucle de battements - + Loop Roll Beats Boucle déroulante de battements - + Toggle loop on/off and jump to Loop In point if loop is behind play position Activer/désactiver la boucle et sauter au point d'entrée de la boucle si la boucle est derrière la position de lecture - + Reloop And Stop Reboucler et arrêter - + Enable loop, jump to Loop In point, and stop Active la boucle, saute au point d'entrée de la boucle, et s'arrête - + Halve the loop length Réduire de moitié la longueur de la boucle - + Double the loop length Doubler la longueur de la boucle - + Beat Jump / Loop Move Saut de Battement / Déplacement de Boucle - + Jump / Move Loop Forward %1 Beats Sauter / Déplacer la boucle de %1 battements en avant - + Jump / Move Loop Backward %1 Beats Sauter / Déplacer la boucle de %1 battements en arrière - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats Sauter en avant de %1 battements, ou si une boucle est active, déplacer la boucle de %1 battements en avant - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats Sauter vers l'arrière de %1 battements, ou si une boucle est active, déplacer la boucle de %1 battements vers l'arrière - + Beat Jump / Loop Move Forward Selected Beats Saut de Battement / Déplacement de Boucle vers l'avant des battements sélectionnés - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats Sauter vers l'avant du nombre de battements sélectionné, ou si une boucle est active, déplacer la boucle vers l'avant du nombre de battements sélectionné - + Beat Jump / Loop Move Backward Selected Beats Saut de Battement / Déplacement de Boucle vers l'arrière des battements sélectionnés - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats Sauter vers l'arrière du nombre de battements sélectionné, ou si une boucle est active, déplacer la boucle vers l'arrière du nombre de battements sélectionné - + Beat Jump / Loop Move Forward Saut de Battement / Déplacement de Boucle vers l'avant - + Beat Jump / Loop Move Backward Saut de Battement / Déplacement de Boucle vers l'arrière - + Loop Move Forward Déplacement de Boucle vers l'avant - + Loop Move Backward Déplacement de Boucle vers l'arrière - + Navigation Navigation - + Move up Déplacer vers le haut - + Equivalent to pressing the UP key on the keyboard Équivaut à l'appui sur la touche Flèche Haut du clavier - + Move down Déplacer vers le bas - + Equivalent to pressing the DOWN key on the keyboard Équivaut à l'appui sur la touche Flèche Bas du clavier - + Move up/down Déplacer vers le haut/bas - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys Se déplacer verticalement dans chaque direction en utilisant le potentiomètre, comme si vous appuyiez sur les touches Flèches Haut/Bas du clavier - + Scroll Up Faire défiler vers le haut - + Equivalent to pressing the PAGE UP key on the keyboard Équivaut à l'appui sur la touche Page Haut du clavier - + Scroll Down Faire défiler vers le bas - + Equivalent to pressing the PAGE DOWN key on the keyboard Équivaut à l'appui sur la touche Page Bas du clavier - + Scroll up/down Faire défiler vers le haut/bas - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys Faire défiler verticalement dans chaque direction en utilisant le potentiomètre, comme si vous appuyiez sur les touches Page Haut/Page Bas - + Move left Déplacer vers la gauche - + Equivalent to pressing the LEFT key on the keyboard Équivaut à l'appui sur la touche Flèche Gauche du clavier - + Move right Déplacer vers la droite - + Equivalent to pressing the RIGHT key on the keyboard Équivaut à l'appui sur la touche Flèche Droite du clavier - + Move left/right Déplacer vers la gauche/droite - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys Se déplacer horizontalement dans chaque direction en utilisant un potentiomètre, comme si vous appuyiez sur les touches Gauche/Droite du clavier - + Move focus to right pane Déplacer le focus dans le panneau de droite - + Equivalent to pressing the TAB key on the keyboard Équivaut à l'appui sur la touche TAB du clavier - + Move focus to left pane Déplacer le focus dans le panneau de gauche - + Equivalent to pressing the SHIFT+TAB key on the keyboard Équivaut à l'appui sur les touches Maj+TAB du clavier - + Move focus to right/left pane Déplacer le focus dans le panneau de droite/gauche - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys Déplacer le focus dans le panneau de droite ou de gauche en utilisant le potentiomètre ou en appuyant sur les touches TAB/Maj+TAB du clavier - + Go to the currently selected item Aller à l'élément sélectionné actuellement. - + Choose the currently selected item and advance forward one pane if appropriate Choisir l’élément sélectionner actuellement et avancez d'un volet si c'est approprié - + Load Track and Play Charger la piste et la lire - + Add to Auto DJ Queue (replace) Ajouter à la file Auto-DJ (Remplacer) - + Replace Auto DJ Queue with selected tracks Remplacer la file Auto DJ par les pistes sélectionnées - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button Bouton d'activation des effets rapide pour la platine %1 - + Quick Effect Enable Button Bouton d'activation des effets rapide - + Enable or disable effect processing Active ou désactive le processeur d'effets - + Super Knob (control effects' Meta Knobs) Super potentiomètre (contrôle les Méta potentiomètres des effets) - + Mix Mode Toggle Bascule mode de mixage - + Toggle effect unit between D/W and D+W modes Basculer l’unité d’effet entre les modes D/W et D+W - + Next chain preset Chaîne de préréglages suivante - + Previous Chain Chaîne précédente - + Previous chain preset Chaîne de préréglages précédente - + Next/Previous Chain Chaîne suivante/précédente - + Next or previous chain preset Chaîne de préréglages suivante ou précédente - - + + Show Effect Parameters Afficher les paramètres d'effet - + Effect Unit Assignment Affectation d'unité d'effet - + Meta Knob Méta potentiomètre - + Effect Meta Knob (control linked effect parameters) Méta potentiomètre d'Effets (Contrôle des paramètres d'effet liés). - + Meta Knob Mode Mode Méta potentiomètre - + Set how linked effect parameters change when turning the Meta Knob. Définit comment le paramètre d'effet lié change lorsque le Meta potentiomètre est tourné. - + Meta Knob Mode Invert Inverser le mode Méta potentiomètre - + Invert how linked effect parameters change when turning the Meta Knob. Inverse comment le paramètre d'effet lié change lorsque le Meta potentiomètre est tourné. - - + + Button Parameter Value Bouton valeur du paramètre - + Microphone / Auxiliary Microphone/Auxiliaire - + Microphone On/Off Microphone marche/arrêt - + Microphone on/off Microphone marche/arrêt - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) Baculer le mode d'atténuation du microphone (ÉTEINT, AUTO, MANUEL) - + Auxiliary On/Off Auxiliaire allumé/éteint - + Auxiliary on/off Auxiliaire allumé/éteint - + Auto DJ Auto DJ - + Auto DJ Shuffle Auto DJ Mélanger - + Auto DJ Skip Next Auto DJ Passer au suivant - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next Auto DJ Fondre au suivant - + Trigger the transition to the next track Active la transition vers la piste suivante - + User Interface Interface Utilisateur - + Samplers Show/Hide Affiche/Masque les échantillonneurs - + Show/hide the sampler section Affiche/Masque la section échantillonneur - + Start/Stop Live Broadcasting Démarrer/Arrêter la Diffusion en Direct - + Stream your mix over the Internet. Diffuse votre mix en streaming sur internet. - + Start/stop recording your mix. Démarrer/Arrêter l'Enregistrement du Mix - - + + Samplers Échantillonneurs - + Vinyl Control Show/Hide Affiche/Masque le contrôle vinyle - + Show/hide the vinyl control section Affiche/Masque la section contrôle vinyle - + Preview Deck Show/Hide Affiche/Masque la platine de pré-écoute - + Show/hide the preview deck Affiche/Masque la platine de pré-écoute - + Toggle 4 Decks Basculer en 4 platines - + Switches between showing 2 decks and 4 decks. Bascule entre afficher 2 platines et 4 platines - + Cover Art Show/Hide (Decks) Montrer/Cacher Jaquette (Decks) - + Show/hide cover art in the main decks Montre/Cache la pochette d'album sur les decks principaux - + Vinyl Spinner Show/Hide Affiche/Masque le spinner de vinyle - + Show/hide spinning vinyl widget Affiche/Masque le widget vinyle en rotation - + Vinyl Spinners Show/Hide (All Decks) Monter/Cacher les spinner des vinyles (Toutes les platines) - + Show/Hide all spinnies Montrer/Cacher tous les spinners - + Toggle Waveforms Basculer de forme d'ondes - + Show/hide the scrolling waveforms. Montrer/Cacher les formes d'ondes défilantes - + Waveform zoom Zoom de la forme d'onde - + Waveform Zoom Zoom de la forme d'onde - + Zoom waveform in Zoom avant sur la forme d'onde - + Waveform Zoom In Zoom avant sur la forme d'onde - + Zoom waveform out Zoom arrière sur la forme d'onde - + Star Rating Up Augmenter la notation par étoiles - + Increase the track rating by one star Augmenter la notation de la piste d'une étoile - + Star Rating Down Diminuer la notation par étoiles - + Decrease the track rating by one star Diminuer la notation de la piste d'une étoile @@ -3162,32 +3230,32 @@ Ajouter la piste à la file Auto DJ (fin) ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. La fonctionnalité fournie par ce mappage de contrôleur sera désactivée jusqu'à ce que le problème soit résolu. - + You can ignore this error for this session but you may experience erratic behavior. Vous pouvez ignorer cette erreur pour la durée de la session mais il se peut que vous observiez un comportement erratique. - + Try to recover by resetting your controller. Tenter de récupérer en redémarrant votre contrôleur. - + Controller Mapping Error Erreur du mappage contrôleur - + The mapping for your controller "%1" is not working properly. Le mappage pour votre contrôleur "%1" ne fonctionne pas correctement. - + The script code needs to be fixed. Le code du script doit être corrigé. @@ -3223,133 +3291,133 @@ Ajouter la piste à la file Auto DJ (fin) CrateFeature - + Remove Supprimer - - + + Create New Crate Créer un nouveau bac - + Rename Renommer - - + + Lock Verrouiller - + Export Crate as Playlist - + Export Track Files Exporter les fichiers des pistes - + Duplicate Dupliquer - + Analyze entire Crate Analyser entièrement le bac - + Auto DJ Track Source Auto DJ Source de piste - + Enter new name for crate: Donnez un nouveau nom au bac : - - + + Crates Bacs - - + + Import Crate Importer un bac - + Export Crate Exporter un bac - + Unlock Déverrouiller - + An unknown error occurred while creating crate: Une erreur inconnue s'est produite lors de la création du bac : - + Rename Crate Renommer le bac - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed Le renommage du bac a échoué - + Crate Creation Failed Échec de création d'un bac - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Liste de lecture M3U (*.m3u);;Liste de lecture M3U8 (*.m3u8);;Liste de lecture PLS (*.pls);;Texte CSV (*.csv);;Texte (*.txt) - + Crates are a great way to help organize the music you want to DJ with. Les bacs sont un excellent moyen pour faciliter l'organisation de la musique que vous souhaitez mixer. - + Crates let you organize your music however you'd like! Les bacs vous permettent d'organiser votre musique comme vous le souhaitez ! - + A crate cannot have a blank name. Le nom d'un bac ne doit pas être vide. - + A crate by that name already exists. Un bac avec ce nom existe déjà. @@ -3419,37 +3487,37 @@ Ajouter la piste à la file Auto DJ (fin) DlgAbout - + Mixxx %1.%2 Development Team Équipe de développement Mixxx %1.%2 - + With contributions from: Avec les contributions de: - + And special thanks to: Et remerciements particuliers à: - + Past Developers Anciens développeurs - + Past Contributors Anciens contributeurs - + Official Website Site Internet officiel - + Donate Donation @@ -4919,32 +4987,32 @@ Appliquer les paramètres et continuer ? DlgPrefControlsDlg - + Skin Thème - + Tool tips Infobulles - + Select from different color schemes of a skin if available. Choisir parmi différentes modèles de couleurs d'un thème, si disponible. - + Color scheme Modèle de couleurs - + Locales determine country and language specific settings. Les localisations déterminent les paramètres spécifiques du pays et de la langue. - + Locale Localisation @@ -4954,52 +5022,42 @@ Appliquer les paramètres et continuer ? Paramètres d'interface - + HiDPI / Retina scaling Mise à l'échelle HiDPI / Rétina - + Change the size of text, buttons, and other items. Change la taille du texte, des boutons et des autres éléments. - - Adopt scale factor from the operating system - Adopter le facteur d'échelle du système d'exploitation - - - - Auto Scaling - Mise à l'échelle automatique - - - + Screen saver Économiseur d'écran - + Start in full-screen mode Démarrer en mode plein écran - + Full-screen mode Mode plein écran - + Off Éteint - + Library only Bibliothèque seulement - + Library and Skin Bibliothèque et Thème @@ -5633,39 +5691,39 @@ Vous pouvez toujours glisser-déposer des pistes sur l'écran pour cloner u DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. La taille minimale du thème sélectionné est plus grande que la résolution de votre écran. - + Allow screensaver to run Autoriser l'économiseur d'écran - + Prevent screensaver from running Interdire l'économiseur d'écran - + Prevent screensaver while playing Interdire l'économiseur d'écran pendant la lecture - + This skin does not support color schemes Ce thème n'accepte pas les modèles de couleurs - + Information Information - - Mixxx must be restarted before the new locale setting will take effect. - Mixxx doit être redémarré avant que les nouveaux réglages locaux prennent effet. + + Mixxx must be restarted before the new locale or scaling settings will take effect. + @@ -5884,62 +5942,62 @@ vous permettant ainsi d'ajuster la tonalité afin de produire une mixage ha DlgPrefLibrary - + Music Directory Added Répertoire de musique ajouté - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? Vous avez ajouté un ou plusieurs répertoires de musique. Les pistes dans ces répertoires ne seront disponibles qu'après une réanalyse de la bibliothèque. Désirez-vous effectuer cette réanalyse maintenant ? - + Scan Analyse - + Choose a music directory Choisissez un répertoire de musique - + Confirm Directory Removal Confirmez la suppression du répertoire - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. Mixxx ne cherchera plus de nouvelles pistes dans ce répertoire. Que voulez-vous faire des pistes de ce répertoire et ses sous-répertoires<&nbsp>?<ul><li>Masquer toutes les pistes de ce répertoire et ses sous-répertoires.</li><li>Supprimer définitivement de Mixxx toutes les métadonnées de ces pistes.</li><li>Laisser ces pistes inchangées dans votre bibliothèque.</li></ul>Masquer des pistes enregistre leurs métadonnées au cas où vous les ajouteriez à nouveau dans le futur. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. Les métadonnées regroupent tous les détails de la piste (artiste, titre, nombre de lectures, etc...) ainsi que les grilles rythmiques, les repères rapides et les boucles. Ce choix n'affecte que la bibliothèque de Mixxx. Aucun fichier sur le disque ne sera modifié ou supprimé. - + Hide Tracks Masquer les pistes - + Delete Track Metadata Supprimer les métadonnées de la piste - + Leave Tracks Unchanged Ne pas modifier les pistes - + Relink music directory to new location Rattacher le répertoire musical à un autre emplacement - + Select Library Font Sélectionner la police pour la bibliothèque @@ -6945,32 +7003,32 @@ Le niveau sonore visé est approximatif et suppose que les gains d'entrée DlgPrefWaveform - + Filtered Filtré - + HSV HSV - + RGB RVB - + OpenGL not available OpenGL non disponible - + dropped frames images sautées - + Cached waveforms occupy %1 MiB on disk. La forme d'onde en cache occupe %1 MiB sur le disque. @@ -7186,72 +7244,72 @@ Sélectionner depuis les différents types d'affichage de la forme d'o Bibliothèque - + Interface Interface - + Waveforms Formes d'onde - + Auto DJ Auto DJ - + Equalizers Égaliseurs - + Decks Platines - + Colors Couleurs - + Crossfader Curseur de mixage - + Effects Effets - + LV2 Plugins Greffons LV2 - + Recording Enregistrement - + Beat Detection Détection de battement - + Key Detection Détection de tonalité - + Normalization Normalisation - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7261,12 +7319,12 @@ Sélectionner depuis les différents types d'affichage de la forme d'o Contrôle Vinyle - + Live Broadcasting Diffusion en direct - + Modplug Decoder Décodeur de Modplug @@ -7407,123 +7465,123 @@ Sélectionner depuis les différents types d'affichage de la forme d'o Sélectionne la meilleure correspondance - - + + Track Piste - - + + Year Année - + Title Titre - - + + Artist Artiste - - + + Album Album - + Album Artist Artiste de l'album - + Fetching track data from the MusicBrainz database Récupère les données de pistes à partir de la base de données de MusicBrainz - + Mixxx could not find this track in the MusicBrainz database. Mixxx n'a pas pu trouver cette piste dans la base de données de MusicBrainz. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. Obtenir une clé-API - + Submit Submits audio fingerprints to the MusicBrainz database. Soumettre - + New Column Nouvelle colone - + New Item Nouvel élément - + &Previous &Précédent - + &Next Suiva&nte - + &Apply &Appliquer - + &Close &Fermer - + Status: %1 État: %1 - + HTTP Status: %1 État HTTP: %1 - + Code: %1 Code: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx ne peut se connecter à %1 pour une raison inconnue. - + Mixxx can't connect to %1. Mixxx ne peut se connecter à %1. - + Original tags Tags initiaux - + Suggested tags Tags suggérés @@ -7917,17 +7975,17 @@ Résulte souvent en de meilleures grilles rythmiques, mais ne marchera pas bien EngineBuffer - + Soundtouch (faster) Soundtouch (plus rapide) - + Rubberband (better) Rubberband (mieux) - + Unknown (bad value) Inconnu (mauvaise valeur) @@ -8028,38 +8086,38 @@ Résulte souvent en de meilleures grilles rythmiques, mais ne marchera pas bien ITunesFeature - + iTunes iTunes - - + + Select your iTunes library Sélectionnez votre bibliothèque iTunes - + (loading) iTunes (chargement) iTunes - + Use Default Library Utiliser la bibliothèque par défaut - + Choose Library... Choisissez la bibliothèque… - + Error Loading iTunes Library Erreur lors du chargement de la bibliothèque iTunes - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. Le chargement de votre bibliothèque iTunes a échoué. Certains de vos pistes ou listes de lecture iTunes peuvent ne pas avoir été chargés. @@ -8067,13 +8125,13 @@ Résulte souvent en de meilleures grilles rythmiques, mais ne marchera pas bien LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. Mode sécurisé activé - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8082,57 +8140,57 @@ support. d'OpenGL. - + activate activer - + toggle activer/désactiver - + right droite - + left gauche - + right small droit, petit - + left small gauche, petit - + up haut - + down bas - + up small haut, petit - + down small bas, petit - + Shortcut Raccourci @@ -8153,22 +8211,22 @@ d'OpenGL. LibraryFeature - + Import Playlist Importer une liste de lecture - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Fichiers de liste de lecture (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? Remplacer le fichier ? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8182,27 +8240,27 @@ Voulez-vous vraiment l'écraser ? LibraryScannerDlg - + Library Scanner Analyseur de bibliothèque - + It's taking Mixxx a minute to scan your music library, please wait... Veuillez patienter quelques instants le temps que Mixxx analyse votre bibliothèque musicale... - + Cancel Annuler - + Scanning: Analyse : - + Scanning cover art (safe to cancel) Scanne la pochette d'album (peut être annulé) @@ -8319,185 +8377,185 @@ Voulez-vous vraiment l'écraser ? MixxxMainWindow - + Sound Device Busy Carte son Occupée - + <b>Retry</b> after closing the other application or reconnecting a sound device <b>Réessayer</b> après avoir fermé l'autre application ou avoir reconnecté le périphérique de son - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. <b>Reconfigurer</b> les options audio de Mixxx. - - + + Get <b>Help</b> from the Mixxx Wiki. Trouver <b>de l'aide</b> sur le Wiki Mixxx. - - - + + + <b>Exit</b> Mixxx. <b>Quitter</b> Mixxx. - + Retry Réessayer - + skin - - + + Reconfigure Reconfigurer - + Help Aide - - + + Exit Quitter - - + + Mixxx was unable to open all the configured sound devices. Mixxx n'est pas parvenu à ouvrir tous les périphériques de son configurés. - + Sound Device Error Erreur de périphérique de son - + <b>Retry</b> after fixing an issue <b>Réessayer</b> après avoir solutionné un problème - + No Output Devices Aucun périphérique de sortie - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. Mixxx a été configuré sans aucun périphérique de sortie audio. Sans périphérique de sortie configuré, le traitement du son sera désactivé . - + <b>Continue</b> without any outputs. <b>Continuer</b> sans aucune sortie. - + Continue Continuer - + Load track to Deck %1 Charger la piste sur la platine %1 - + Deck %1 is currently playing a track. La platine %1 est en cours de lecture d'une piste. - + Are you sure you want to load a new track? Êtes-vous certain de vouloir charger une nouvelle piste ? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. Aucun périphérique d'entrée n'est sélectionné pour ce contrôle vinyle. Veuillez d'abord en sélectionner un dans les Préférences du matériel sonore. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. Il n'y a aucun périphérique d'entrée sélectionné pour ce contrôle intermédiaire. Veuillez d'abord en sélectionner un dans les Préférences du matériel sonore. - + There is no input device selected for this microphone. Do you want to select an input device? Aucun périphérique d'entrée n'est sélectionné pour ce microphone. Voulez-vous sélectionner un périphérique d'entrée ? - + There is no input device selected for this auxiliary. Do you want to select an input device? Aucun périphérique d'entrée n'est sélectionné pour cet auxiliaire. Voulez-vous sélectionner un périphérique d'entrée ? - + Error in skin file Erreur dans le fichier d'habillage - + The selected skin cannot be loaded. L'habillage sélectionné ne peut pas être chargé. - + OpenGL Direct Rendering Rendu Direct OpenGL - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. Le rendu direct n'est pas activé sur votre machine.<br><br> Cela signifie que l'affichage de la forme d'onde sera très<br><b>lent et risque de surcharger votre processeur</b>. Mettez à jour votre<br>configuration pour activer le rendu direct ou désactivez<br>les affichages de forme d'onde dans les préférences de Mixxx en sélectionnant<br>"Vide" comme affichage de forme d'onde dans la section "Interface". - - - + + + Confirm Exit Confirmer la fermeture - + A deck is currently playing. Exit Mixxx? Une platine est actuellement en cours de lecture. Quitter Mixxx ? - + A sampler is currently playing. Exit Mixxx? Un échantillonneur est actuellement en cours de lecture. Quitter Mixxx ? - + The preferences window is still open. La fenêtre de Préférences est déjà ouverte. - + Discard any changes and exit Mixxx? Abandonner toutes les modifications et quitter Mixxx ? @@ -8570,43 +8628,43 @@ Voulez-vous sélectionner un périphérique d'entrée ? PlaylistFeature - + Lock Verrouiller - + Playlists Listes de lecture - + Unlock Déverrouiller - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. Certains DJ préparent des listes de lecture avant leurs performances publiques quand d'autres préfèrent les constituer à la volée. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. Lorsque vous utilisez des listes de lecture pendant des sessions de mixage, souvenez-vous de porter une attention toute particulière à la façon dont votre public réagit à la musique que vous avez choisie de jouer. - + Create New Playlist Créer une nouvelle liste de lecture @@ -8614,59 +8672,59 @@ Voulez-vous sélectionner un périphérique d'entrée ? QMessageBox - + Upgrading Mixxx Mise à jour de Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? Mixxx permet maintenant d'afficher la pochette d'album. Désirez-vous rechercher maintenant les pochettes dans votre bibliothèque? - + Scan Analyse - + Later Plus tard - + Upgrading Mixxx from v1.9.x/1.10.x. Mise à jour de Mixxx de la v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. Mixxx a un nouveau détecteur de tempo amélioré. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. Quand vous chargez des pistes, Mixxx peut les ré-analyser et générer de nouvelles grilles rythmiques, plus précises. Ceci rendra la synchronisation automatique et les boucles plus fiables. - + This does not affect saved cues, hotcues, playlists, or crates. Cela n'affecte pas les repères, repères rapides, listes de lecture, ou bacs sauvegardés - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. Si vous ne voulez pas que Mixxx ré-analyse vos pistes, choisissez "Garder les Grilles Rythmiques actuelles". Vous pouvez changer ce réglages n'importe quand depuis la section "Détection Rythmique" des Préférences. - + Keep Current Beatgrids Garder les Grilles Rythmiques actuelles - + Generate New Beatgrids Générer de nouvelle Grilles Rythmiques @@ -8850,7 +8908,7 @@ Désirez-vous rechercher maintenant les pochettes dans votre bibliothèque?L'utilisation de Opus à des échantillonnages autres que 48 kHz n'est pas prise en charge par le codeur Opus. Veuillez utiliser 48000 Hz dans les préférences "Matériel sonore" ou basculez vers un codage différent. - + Encoder Encodeur @@ -10005,12 +10063,12 @@ Complètement à droite: fin de la période d'effet - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. <html>Mixxx ne peut pas enregistrer ou publier en streaming en AAC ou HE-AAC sans l'encodeur FDK-AAC. Pour enregistrer ou publier en streaming en AAC ou AAC +, vous devez télécharger <b>libfdk-aac</b> et l'installer sur votre système. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. La bibliothèque de codage AAC installée ne prend pas en charge HE-AAC, uniquement AAC ordinaire. Configurer un format d'encodage différent dans les préférences. @@ -10148,54 +10206,54 @@ Complètement à droite: fin de la période d'effet RekordboxFeature - - - + + + Rekordbox Rekordbox - + Playlists Listes de lecture - + Folders Répertoires - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: Lit les bases de données exportées pour les lecteurs Pioneer CDJ / XDJ en utilisant le mode d'exportation Rekordbox.<br/>Rekordbox peut uniquement exporter vers des périphériques USB ou SD avec un système de fichiers FAT ou HFS.<br/>Mixxx peut lire une base de données à partir de n'importe quel périphérique contenant des dossiers de base de données (<tt>PIONEER</tt> et <tt>contenu</tt>).<br/>Ne sont pas prises en charge les bases de données Rekordbox qui ont été déplacées vers un périphérique externe via<br/><i>Préférences> Avancé> Gestion de la base de données</i>.<br/><br/>Les données suivantes sont lues : - + Hot cues Repères rapides - + Loops (only the first loop is currently usable in Mixxx) Boucles (actuellement, seule la première boucle est disponible dans Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) Vérifie les périphériques USB/SD Rekordbox connectés (actualise) - + Beatgrids Grilles rythmiques - + Memory cues Repères mémoire - + (loading) Rekordbox (chargement) Rekordbox @@ -10204,7 +10262,7 @@ Complètement à droite: fin de la période d'effet RhythmboxFeature - + Rhythmbox Rhythmbox @@ -10255,34 +10313,34 @@ Complètement à droite: fin de la période d'effet SeratoFeature - - - + + + Serato Serato - + Reads the following from the Serato Music directory and removable devices: Lit ce qui suit à partir du répertoire de musique Serato et les périphériques amovibles : - + Tracks Pistes - + Crates Bacs - + Check for Serato databases (refresh) Vérifie les bases de données Serato (actualise) - + (loading) Serato (chargement) Serato @@ -10305,12 +10363,12 @@ Complètement à droite: fin de la période d'effet Historique - + Unlock Déverrouiller - + Lock Verrouiller @@ -11269,6 +11327,31 @@ Complètement à droite: fin de la période d'effet Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. Envoie l'audio du canal sélectionné à la sortie casque, sélectionné dans Préférences -> Matériel audio. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12446,11 +12529,6 @@ Utiliser ceci pour modifier uniquement le signal affecté (traité) avec EQ et l Old Synchronize Ancienne synchronisation - - - (This skin should be updated to use Master Sync!) - (Le thème doit être mis à jour pour utiliser la synchronisation principale !) - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12466,16 +12544,6 @@ Utiliser ceci pour modifier uniquement le signal affecté (traité) avec EQ et l Decks can't sync to samplers and samplers can only sync to decks. Les platines ne peuvent pas se synchroniser aux échantillonneur et les échantillonneur peuvent uniquement se synchroniser aux platines. - - - Enable Master Sync - Activer la synchronisation principale - - - - Tap to sync the tempo to other playing tracks or the master clock. - Taper pour synchroniser le tempo aux autres pistes en cours de lecture ou à l'horloge maître. - Hold for at least a second to enable sync lock for this deck. @@ -12491,16 +12559,6 @@ Utiliser ceci pour modifier uniquement le signal affecté (traité) avec EQ et l Resets the key to the original track key. Réinitialise la tonalité à la valeur d'origine de la piste. - - - Enable Sync Clock Master - Activer la synchronisation à l'horloge maître. - - - - When enabled, this device will serve as the master clock for all other decks. - Lorsqu'activé, ce périphérique servira d'horloge maître pour toutes les autres platines. - Speed Control @@ -13054,22 +13112,22 @@ Utiliser ceci pour modifier uniquement le signal affecté (traité) avec EQ et l TraktorFeature - + Traktor Traktor - + (loading) Traktor (chargement) Traktor - + Error Loading Traktor Library Erreur lors du chargement de la bibliothèque Traktor - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. Il y a eu une erreur de chargement de votre bibliothèque Traktor. Certains de vos pistes ou listes de lecture Traktor peuvent ne pas avoir été chargé. @@ -13681,20 +13739,20 @@ Utiliser ceci pour modifier uniquement le signal affecté (traité) avec EQ et l Contrôle intermédiaire - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible Prêt à lire, analyse en cours ... - - + + Loading track... Text on waveform overview when file is cached from source Chargement piste ... - + Finalizing... Text on waveform overview during finalizing of waveform analysis Finalisation ... @@ -13865,8 +13923,8 @@ Utiliser ceci pour modifier uniquement le signal affecté (traité) avec EQ et l Genre - - Folder + + Directory @@ -14109,155 +14167,160 @@ Utiliser ceci pour modifier uniquement le signal affecté (traité) avec EQ et l Réinitialiser le BPM - + + Update ReplayGain from Deck Gain + + + + Deck %1 Platine %1 - + Sampler %1 Échantillonneur %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Créer une nouvelle liste de lecture - + Enter name for new playlist: Entrer le nom de la nouvelle liste de lecture : - + New Playlist Nouvelle liste de lecture - - - + + + Playlist Creation Failed La création de la liste de lecture a échoué - + A playlist by that name already exists. Il existe déjà une liste de lecture avec ce nom - + A playlist cannot have a blank name. Une liste de lecture ne peut pas être sans nom. - + An unknown error occurred while creating playlist: Une erreur inconnue s'est produite à la création de la liste de lecture : - + Add to New Crate Ajouter dans un nouveau Bac - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14265,7 +14328,7 @@ Utiliser ceci pour modifier uniquement le signal affecté (traité) avec EQ et l WTrackTableView - + ESC Focus Echap @@ -14302,128 +14365,55 @@ Utiliser ceci pour modifier uniquement le signal affecté (traité) avec EQ et l (GL ES) - - main - - - Starts Mixxx in full-screen mode - Démarre Mixxx en mode plein écran - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - Répertoire de niveau supérieur dans lequel Mixxx doit rechercher ses fichiers de ressources, tels que les mappages MIDI, en remplaçant l'emplacement d'installation par défaut. - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects effets - + audio interface interface audio - + decks platines - + library - + Choose music library directory Choisissez le répertoire de la bibliothèque musicale - + controllers - + Cannot open database Ne peux ouvrir la base de données - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14501,7 +14491,7 @@ Cliquez sur OK pour sortir. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14558,62 +14548,62 @@ Cliquez sur OK pour sortir. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse Souris générique HID - + Generic HID Joystick Joystick HID Générique - + Generic HID Game Pad - + Generic HID Keyboard Clavier générique HID - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: @@ -14631,7 +14621,7 @@ Cliquez sur OK pour sortir. No effect loaded. - + Aucun effet chargé. \ No newline at end of file diff --git a/res/translations/mixxx_fr_FR.ts b/res/translations/mixxx_fr_FR.ts index ac5117b910b..64069bccdf5 100644 --- a/res/translations/mixxx_fr_FR.ts +++ b/res/translations/mixxx_fr_FR.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Caisses - + Remove Crate as Track Source - + Auto DJ Auto DJ - + Add Crate as Track Source @@ -43,24 +43,24 @@ BansheeFeature - + Banshee Banshee - - + + Error loading Banshee database Erreur lors du chargement de la banque de données banshee - + Banshee database file not found at La base de données banshee n'est pas trouvée à - + There was an error loading your Banshee database at Il y a eut une erreur pendant le chargement de la base de donnée banshee à @@ -69,32 +69,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Ajouter à la file d'attente de l'auto-dj (en dernier) - + Add to Auto DJ Queue (top) Ajouter à la file d'attente de l'auto-dj (en premier) - + Add to Auto DJ Queue (replace) - + Import Playlist Importer une playlist - + Playlist Creation Failed Creation de la playlist échouée - + An unknown error occurred while creating playlist: Une erreur inconnue s'est produite lors de la création de la playlist: @@ -102,144 +102,144 @@ BasePlaylistFeature - + New Playlist Nouvelle playlist - + Add to Auto DJ Queue (bottom) Ajouter à la file d'attente de l'auto-dj (en dernier) - - + + Create New Playlist Créer une nouvelle playlist - + Add to Auto DJ Queue (top) Ajouter à la file d'attente de l'auto-dj (en premier) - + Remove Enlever - + Rename Renomer - + Lock Verroullier - + Duplicate Dupliquer - - + + Import Playlist Importer une playlist - + Export Track Files Exporter des fichiers audio - + Analyze entire Playlist Analyser l'entièreté de la playlist - + Enter new name for playlist: Entrez un nom pour la playlist - + Duplicate Playlist Dupliquer la playlist - - + + Enter name for new playlist: Entrez un nom pour la nouvelle playlist - - + + Export Playlist Exporter la playlist - + Add to Auto DJ Queue (replace) - + Rename Playlist Renomer la playlist - - + + Renaming Playlist Failed Echec pour renommer la playlist - - - + + + A playlist by that name already exists. Une playlist utilise déjà ce nom - - - + + + A playlist cannot have a blank name. Une playlist ne peut pas avoir de nom vide - + _copy //: Appendix to default name when duplicating a playlist _copier - - - - - - + + + + + + Playlist Creation Failed Creation de la playlist échouée - - + + An unknown error occurred while creating playlist: Une erreur inconnue s'est produite lors de la création de la playlist: - + M3U Playlist (*.m3u) M3U Playlist (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Texte CSV (*.csv);;Texte lisible (*.txt) @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Impossible de charger la piste. @@ -513,7 +513,7 @@ - + Computer @@ -533,7 +533,7 @@ - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -646,12 +646,12 @@ - + Mixxx Library - + Could not load the following file because it is in use by Mixxx or another application. @@ -682,6 +682,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -864,13 +942,13 @@ - + Set to full volume - + Set to zero volume @@ -895,13 +973,13 @@ - + Headphone listen button - + Mute button @@ -917,25 +995,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -979,36 +1057,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1020,7 +1068,7 @@ - + Toggle keylock mode @@ -1030,199 +1078,199 @@ - + Vinyl Control - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues Points de repère - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 - + 1 - + 2 - + 4 - + 8 - + 16 - + 32 - + 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library @@ -1333,20 +1381,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1362,7 +1410,7 @@ - + Mute @@ -1373,7 +1421,7 @@ - + Headphone Listen @@ -1394,25 +1442,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1511,52 +1559,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1573,37 +1575,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1644,466 +1646,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) Ajouter à la file d'attente de l'auto-dj (en dernier) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) Ajouter à la file d'attente de l'auto-dj (en premier) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix - + Toggle mix recording - + Effects Effets - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next - + Switch to next effect - + Previous - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2128,93 +2130,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2271,806 +2273,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ Auto DJ - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3159,32 +3227,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3220,133 +3288,133 @@ CrateFeature - + Remove Enlever - - + + Create New Crate - + Rename Renomer - - + + Lock Verroullier - + Export Crate as Playlist - + Export Track Files Exporter des fichiers audio - + Duplicate Dupliquer - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates Caisses - - + + Import Crate - + Export Crate - + Unlock - + An unknown error occurred while creating crate: - + Rename Crate - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Texte CSV (*.csv);;Texte lisible (*.txt) - + Crates are a great way to help organize the music you want to DJ with. - + Crates let you organize your music however you'd like! - + A crate cannot have a blank name. - + A crate by that name already exists. @@ -3416,37 +3484,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: Avec des contributions de : - + And special thanks to: Et des remerciements spéciaux à : - + Past Developers Anciens développeurs - + Past Contributors Anciens contributeurs - + Official Website - + Donate @@ -4876,32 +4944,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin - + Tool tips - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4911,52 +4979,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off - + Library only - + Library and Skin @@ -5567,38 +5625,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5817,62 +5875,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6876,32 +6934,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7115,72 +7173,72 @@ Select from different types of displays for the waveform, which differ primarily - + Interface - + Waveforms - + Auto DJ Auto DJ - + Equalizers - + Decks - + Colors - + Crossfader - + Effects Effets - + LV2 Plugins - + Recording - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7190,12 +7248,12 @@ Select from different types of displays for the waveform, which differ primarily - + Live Broadcasting Diffusion en Direct - + Modplug Decoder @@ -7336,123 +7394,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Année - + Title Titre - - + + Artist Artiste - - + + Album Album - + Album Artist Artiste de l'album - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7844,17 +7902,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7955,38 +8013,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7994,13 +8052,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8008,57 +8066,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8079,22 +8137,22 @@ support. LibraryFeature - + Import Playlist Importer une playlist - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8105,27 +8163,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8241,181 +8299,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry - + skin - - + + Reconfigure - + Help - - + + Exit - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8486,43 +8544,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Verroullier - + Playlists - + Unlock - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist Créer une nouvelle playlist @@ -8530,58 +8588,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8765,7 +8823,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9891,12 +9949,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10034,54 +10092,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10090,7 +10148,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10141,34 +10199,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates Caisses - + Check for Serato databases (refresh) - + (loading) Serato @@ -10191,12 +10249,12 @@ Fully right: end of the effect period - + Unlock - + Lock Verroullier @@ -11155,6 +11213,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12330,11 +12413,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12350,16 +12428,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12375,16 +12443,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12938,22 +12996,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13565,20 +13623,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13749,8 +13807,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Genre - - Folder + + Directory @@ -13993,155 +14051,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 - + Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Créer une nouvelle playlist - + Enter name for new playlist: Entrez un nom pour la nouvelle playlist - + New Playlist Nouvelle playlist - - - + + + Playlist Creation Failed Creation de la playlist échouée - + A playlist by that name already exists. Une playlist utilise déjà ce nom - + A playlist cannot have a blank name. Une playlist ne peut pas avoir de nom vide - + An unknown error occurred while creating playlist: Une erreur inconnue s'est produite lors de la création de la playlist: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14149,7 +14212,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14186,128 +14249,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14383,7 +14373,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14440,62 +14430,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_ga.ts b/res/translations/mixxx_ga.ts index dda294293f0..7adc8abfaa3 100644 --- a/res/translations/mixxx_ga.ts +++ b/res/translations/mixxx_ga.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates - + Remove Crate as Track Source - + Auto DJ DJ Uathoibríoch - + Add Crate as Track Source @@ -43,24 +43,24 @@ BansheeFeature - + Banshee - - + + Error loading Banshee database - + Banshee database file not found at - + There was an error loading your Banshee database at @@ -69,32 +69,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) - + Add to Auto DJ Queue (top) - + Add to Auto DJ Queue (replace) - + Import Playlist - + Playlist Creation Failed - + An unknown error occurred while creating playlist: @@ -102,144 +102,144 @@ BasePlaylistFeature - + New Playlist - + Add to Auto DJ Queue (bottom) - - + + Create New Playlist - + Add to Auto DJ Queue (top) - + Remove - + Rename - + Lock - + Duplicate - - + + Import Playlist - + Export Track Files - + Analyze entire Playlist - + Enter new name for playlist: - + Duplicate Playlist - - + + Enter name for new playlist: - - + + Export Playlist - + Add to Auto DJ Queue (replace) - + Rename Playlist - - + + Renaming Playlist Failed - - - + + + A playlist by that name already exists. - - - + + + A playlist cannot have a blank name. - + _copy //: Appendix to default name when duplicating a playlist - - - - - - + + + + + + Playlist Creation Failed - - + + An unknown error occurred while creating playlist: - + M3U Playlist (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. @@ -512,7 +512,7 @@ - + Computer @@ -532,7 +532,7 @@ - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -645,12 +645,12 @@ - + Mixxx Library Leabharlann Mixxx - + Could not load the following file because it is in use by Mixxx or another application. @@ -681,6 +681,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -863,13 +941,13 @@ - + Set to full volume - + Set to zero volume @@ -894,13 +972,13 @@ - + Headphone listen button - + Mute button @@ -916,25 +994,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -978,36 +1056,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1019,7 +1067,7 @@ - + Toggle keylock mode @@ -1029,199 +1077,199 @@ - + Vinyl Control - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 - + 1 - + 2 - + 4 - + 8 - + 16 - + 32 - + 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library @@ -1332,20 +1380,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1361,7 +1409,7 @@ - + Mute @@ -1372,7 +1420,7 @@ - + Headphone Listen @@ -1393,25 +1441,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1510,52 +1558,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1572,37 +1574,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1643,466 +1645,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix - + Toggle mix recording - + Effects - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next - + Switch to next effect - + Previous - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2127,93 +2129,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2270,806 +2272,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ DJ Uathoibríoch - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3158,32 +3226,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3219,133 +3287,133 @@ CrateFeature - + Remove - - + + Create New Crate - + Rename - - + + Lock - + Export Crate as Playlist - + Export Track Files - + Duplicate - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates - - + + Import Crate - + Export Crate - + Unlock - + An unknown error occurred while creating crate: - + Rename Crate - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) - + Crates are a great way to help organize the music you want to DJ with. - + Crates let you organize your music however you'd like! - + A crate cannot have a blank name. - + A crate by that name already exists. @@ -3415,37 +3483,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4875,32 +4943,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin - + Tool tips - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4910,52 +4978,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off - + Library only - + Library and Skin @@ -5566,38 +5624,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5816,62 +5874,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6875,32 +6933,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7114,72 +7172,72 @@ Select from different types of displays for the waveform, which differ primarily - + Interface - + Waveforms - + Auto DJ DJ Uathoibríoch - + Equalizers - + Decks - + Colors - + Crossfader - + Effects - + LV2 Plugins - + Recording - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7189,12 +7247,12 @@ Select from different types of displays for the waveform, which differ primarily - + Live Broadcasting - + Modplug Decoder @@ -7335,123 +7393,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Bliain - + Title Teideal - - + + Artist Ceolteoir - - + + Album Albam - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7843,17 +7901,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7954,38 +8012,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7993,13 +8051,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8007,57 +8065,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8078,22 +8136,22 @@ support. LibraryFeature - + Import Playlist - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8104,27 +8162,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8240,181 +8298,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry - + skin - - + + Reconfigure - + Help - - + + Exit - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8485,43 +8543,43 @@ Do you want to select an input device? PlaylistFeature - + Lock - + Playlists - + Unlock - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist @@ -8529,58 +8587,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8764,7 +8822,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9890,12 +9948,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10033,54 +10091,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10089,7 +10147,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10140,34 +10198,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates - + Check for Serato databases (refresh) - + (loading) Serato @@ -10190,12 +10248,12 @@ Fully right: end of the effect period - + Unlock - + Lock @@ -11154,6 +11212,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12329,11 +12412,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12349,16 +12427,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12374,16 +12442,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12937,22 +12995,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13564,20 +13622,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13748,8 +13806,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Seánra - - Folder + + Directory @@ -13992,155 +14050,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 - + Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist - + Enter name for new playlist: - + New Playlist - - - + + + Playlist Creation Failed - + A playlist by that name already exists. - + A playlist cannot have a blank name. - + An unknown error occurred while creating playlist: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14148,7 +14211,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14185,128 +14248,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14382,7 +14372,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14439,62 +14429,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_gl.qm b/res/translations/mixxx_gl.qm index 9373e74d4938bc3980cd9af15960c31e53262783..646a49138beb124dff1936eb7a4363ea287be8bb 100644 GIT binary patch delta 12655 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 diff --git a/res/translations/mixxx_gl.ts b/res/translations/mixxx_gl.ts index ef60223f219..82b0e8a3e30 100644 --- a/res/translations/mixxx_gl.ts +++ b/res/translations/mixxx_gl.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Caixóns - + Remove Crate as Track Source Retirar caixa como orixe da pista - + Auto DJ DJ automático - + Add Crate as Track Source Engadir caixa como orixe da pista @@ -43,25 +43,25 @@ BansheeFeature - + Banshee Banshee - - + + Error loading Banshee database Produciuse un erro ao cargar a base de tatos do Banshee - + Banshee database file not found at Non foi posíbel atopar o ficheiro de base de datos do Banshee en - + There was an error loading your Banshee database at Produciuse un erro ao cargar a súa base de tatos do Banshee en @@ -71,32 +71,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Engadir á cola de DJ automático (abaixo) - + Add to Auto DJ Queue (top) Engadir á cola de DJ automático (arriba) - + Add to Auto DJ Queue (replace) - + Import Playlist Importar unha lista de reprodución - + Playlist Creation Failed Non foi posíbel crear a lista de reprodución - + An unknown error occurred while creating playlist: Produciuse un erro descoñecido mentres se creaba a lista de reprodución: @@ -104,144 +104,144 @@ BasePlaylistFeature - + New Playlist Nova lista de reprodución - + Add to Auto DJ Queue (bottom) Engadir á cola de DJ automático (abaixo) - - + + Create New Playlist Crear unha nova lista de reprodución - + Add to Auto DJ Queue (top) Engadir á cola de DJ automático (arriba) - + Remove Retirar - + Rename Cambiar o nome - + Lock Bloquear - + Duplicate Duplicar - - + + Import Playlist Importar unha lista de reprodución - + Export Track Files Exportar pistas a ficheiros - + Analyze entire Playlist Analizar toda a lista d reprodución - + Enter new name for playlist: Escriba o novo nome para a lista de reprodución - + Duplicate Playlist Duplicar a lista de reprodución - - + + Enter name for new playlist: Escriba o nome para a nova lista de reprodución - - + + Export Playlist Exportar a lista de reprodución - + Add to Auto DJ Queue (replace) - + Rename Playlist Cambiar o nome da lista de reprodución - - + + Renaming Playlist Failed Produciuse un erro ao cambiarlle o nome a lista de reprodución - - - + + + A playlist by that name already exists. Xa existe unha lista de reprodución con ese nome. - - - + + + A playlist cannot have a blank name. Unha lista de reprodución non pode ter un nome baleiro. - + _copy //: Appendix to default name when duplicating a playlist _copia - - - - - - + + + + + + Playlist Creation Failed Non foi posíbel crear a lista de reprodución - - + + An unknown error occurred while creating playlist: Produciuse un erro descoñecido mentres se creaba a lista de reprodución: - + M3U Playlist (*.m3u) Lista de reprodución M3U (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Lista de reprodución M3U (*.m3u);;Lista de reprodución M3U8 (*.m3u8);;Lista de reprodución PLS (*.pls);;Texto CSV (*.csv);;Texto lexíbel (*.txt) @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Non foi posíbel cargar a pista. @@ -514,7 +514,7 @@ - + Computer Computador @@ -534,7 +534,7 @@ Examinar - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. «Computador» permítelle navegar, ver, e cargar pistas desde cartafoles no disco ríxido e nos dispositivos externos. @@ -647,12 +647,12 @@ Ficheiro creado - + Mixxx Library Fonoteca do Mixxx - + Could not load the following file because it is in use by Mixxx or another application. Non foi posíbel cargar o seguinte ficheiro xa que está a ser empregado por Mixxx ou por outro aplicativo. @@ -683,6 +683,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -865,13 +943,13 @@ - + Set to full volume Estabelecer o volume no máximo - + Set to zero volume Estabelecer o volume a cero @@ -896,13 +974,13 @@ Botón de desprazamento inverso (Censor) - + Headphone listen button Botón de escoita por auriculares - + Mute button Botón de silencio @@ -918,25 +996,25 @@ - + Mix orientation (e.g. left, right, center) Orientación da mestura (p-ex. esquerda, dereita, centro) - + Set mix orientation to left Estabelecer a orientación da mestura cara a esquerda - + Set mix orientation to center Estabelecer a orientación da mestura no centro - + Set mix orientation to right Estabelecer a orientación da mestura cara a dereita @@ -980,36 +1058,6 @@ Toggle quantize mode Conmutador do modo de cuantización - - - Increase internal master BPM by 1 - Incrementar BPM mestre interno en 1 - - - - Decrease internal master BPM by 1 - Diminuír BPM mestre interno en 1 - - - - Increase internal master BPM by 0.1 - Incrementar BPM mestre interno en 0,1 - - - - Decrease internal master BPM by 0.1 - Diminuír BPM mestre interno en 0,1 - - - - Toggle sync master - Conmutador da sincronización mestra - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - Conmutador do modo de sincronización de 3 estados (APAGADO, ESCRAVO, MESTRE) - One-time beat sync (tempo only) @@ -1021,7 +1069,7 @@ Sincronizar só unha vez o golpe (só a fase) - + Toggle keylock mode Conmutador do modo de bloqueo tonal @@ -1031,199 +1079,199 @@ Ecualizadores - + Vinyl Control Control do vinilo - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) Conmutador do modo de punto de referencia do control de vinilo (APAGADO/UNHA/ACTIVO) - + Toggle vinyl-control mode (ABS/REL/CONST) Conmutador do Control do vinilo (ABS/REL/CONST) - + Pass through external audio into the internal mixer Enviar o son externo ao mesturador interno - + Cues Referencias - + Cue button Botón de punto de referencia - + Set cue point Estabelecer o punto de referencia - + Go to cue point Ir o punto de referencia - + Go to cue point and play Ir o punto de referencia e reproducir - + Go to cue point and stop Ir o punto de referencia e deter - + Preview from cue point Escoita previa do punto de referencia - + Cue button (CDJ mode) Botón de punto de referencia (modo CDJ) - + Stutter cue Referencia repetida (tatexo) - + Hotcues Referencias activas - + Set, preview from or jump to hotcue %1 Estabelecer, preescoitar ou ir á referencia activa %1 - + Clear hotcue %1 Limpar a referencia activa %1 - + Set hotcue %1 Estabelecer a referencia activa %1 - + Jump to hotcue %1 Saltar á referencia activa %1 - + Jump to hotcue %1 and stop Saltar á referencia activa %1 e deter - + Jump to hotcue %1 and play Saltar á referencia activa %1 e reproducir - + Preview from hotcue %1 Escoita previa desde a referencia activa %1 - - + + Hotcue %1 Referencia activa %1 - + Looping Repetición en bucle - + Loop In button Botón para o comezo do bucle - + Loop Out button Botón para a fin do bucle - + Loop Exit button Botón de saída do bucle - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 32 - + 64 64 - + Move loop forward by %1 beats Mover o bucle cara diante en %1 golpes - + Move loop backward by %1 beats Mover o bucle cara atrás en %1 golpes - + Create %1-beat loop Crear un bucle de %1 golpes - + Create temporary %1-beat loop roll Crear un bucle temporal constante de %1 golpes - + Library Fonoteca @@ -1334,20 +1382,20 @@ - - + + Volume Fader Control de volume - + Full Volume Volume máximo - + Zero Volume Volume cero @@ -1363,7 +1411,7 @@ - + Mute Silenciar @@ -1374,7 +1422,7 @@ - + Headphone Listen Escoita por auriculares @@ -1395,25 +1443,25 @@ - + Orientation Orientación - + Orient Left Orientar cara a esquerda - + Orient Center Orientar ao centro - + Orient Right Orientar cara a dereita @@ -1512,52 +1560,6 @@ Sync Sincronizar - - - Sync Mode - Modo de sincronización - - - - Internal Sync Master - Mestre de sincronización interna - - - - Toggle Internal Sync Master - Conmutador do mestre de sincronización interna - - - - - Internal Master BPM - BPM mestre interno - - - - Internal Master BPM +1 - BPM mestre interno +1 - - - - Internal Master BPM -1 - BPM mestre interno -1 - - - - Internal Master BPM +0.1 - BPM mestre interno +0,1 - - - - Internal Master BPM -0.1 - BPM mestre interno -0,1 - - - - Sync Master - Mestre de sincronización - Beat Sync One-Shot @@ -1574,37 +1576,37 @@ Sincroniza a fase ao premer - + Pitch control (does not affect tempo), center is original pitch Control de ton (non afecta ao tempo), no centro está o ton orixinal - + Pitch Adjust Axuste de ton - + Adjust pitch from speed slider pitch Axuste o ton dende o esvarador de ton - + Match musical key Coincidir coa clave musical - + Match Key Coincidir coa clave - + Reset Key Restabelecer a clave - + Resets key to original Restabelecer a clave á orixinal @@ -1645,466 +1647,466 @@ EQ graves - + Toggle Vinyl Control Conmutador do Control do vinilo - + Toggle Vinyl Control (ON/OFF) Conmutador do Control do vinilo (acendido/apagado) - + Vinyl Control Mode Modo do Control do vinilo - + Vinyl Control Cueing Mode Modo de Control dos puntos de referencia con vinilo - + Vinyl Control Passthrough Paso do son de entrada do Control do vinilo - + Vinyl Control Next Deck Control do vinilo ao seguinte prato - + Single deck mode - Switch vinyl control to next deck Modo de prato único - Pasar o control do vinilo para o seguinte prato - + Cue Referencia - + Set Cue Estabelecer a referencia - + Go-To Cue Ir á referencia - + Go-To Cue And Play Ir á e reproducir - + Go-To Cue And Stop Ir á referencia e deter - + Preview Cue Escoita previa do punto de referencia - + Cue (CDJ Mode) Punto de referencia (modo CDJ) - + Stutter Cue Referencia repetida (tatexo) - + Go to cue point and play after release Ir á referencia e reproducir após soltar - + Clear Hotcue %1 Limpar a referencia activa %1 - + Set Hotcue %1 Estabelecer a referencia activa %1 - + Jump To Hotcue %1 Saltar á referencia activa %1 - + Jump To Hotcue %1 And Stop Saltar á referencia activa %1 e deter - + Jump To Hotcue %1 And Play Saltar á referencia activa %1 e reproducir - + Preview Hotcue %1 Escoita previa da referencia activa %1 - + Loop In Inicio do bucle - + Loop Out Fin do bucle - + Loop Exit Saír do bucle - + Reloop/Exit Loop Repetir/saír do bucle - + Loop Halve Divide o bucle á metade - + Loop Double Duplica a lonxitude do bucle - + 1/32 1/32 - + 1/16 1/16 - + 1/8 1/8 - + 1/4 1/4 - + Move Loop +%1 Beats Mover o bucle +%1 golpes - + Move Loop -%1 Beats Mover o bucle -%1 golpes - + Loop %1 Beats Bucle de %1 golpes - + Loop Roll %1 Beats Bucle corredizo de %1 golpes - + Add to Auto DJ Queue (bottom) Engadir á cola de DJ automático (abaixo) - + Append the selected track to the Auto DJ Queue Engade as pistas seleccionadas na fin da cola de Auto DJ - + Add to Auto DJ Queue (top) Engadir á cola de DJ automático (arriba) - + Prepend selected track to the Auto DJ Queue Engade as pistas seleccionadas no principio da cola de Auto DJ - + Load Track Cargara pista - + Load selected track Cargar a pista seleccionada - + Load selected track and play Cargar a pista seleccionada e reproducila - - + + Record Mix Gravar a mestura - + Toggle mix recording Conmutador da gravación da mestura - + Effects Efectos - + Quick Effects Efectos rápidos - + Deck %1 Quick Effect Super Knob Súper mando de efecto rápido do prato %1 - + Quick Effect Super Knob (control linked effect parameters) Súper mando de efecto rápido (parámetros de efecto asociado ao control) - - + + Quick Effect Efecto rápido - + Clear effect rack Limpar a caixa de efectos - + Clear Effect Rack Limpar a caixa de efectos - + Clear Unit Limpar a unidade - + Clear effect unit Limpar a unidade de efectos - + Toggle Unit Conmutador da unidade - + Dry/Wet Directo/Procesado - + Adjust the balance between the original (dry) and processed (wet) signal. Axusta o equilibrio entre o sinal orixinal (dry) e o procesado (wet). - + Super Knob Súper mando - + Next Chain Seguinte cadea - + Assign Asignar - + Clear Limpar - + Clear the current effect Limpar o efecto actual - + Toggle Conmutar - + Toggle the current effect Conmutador do efecto actual - + Next Seguinte - + Switch to next effect Pasa ao efecto seguinte - + Previous Anterior - + Switch to the previous effect Pasa ao efecto anterior - + Next or Previous Seguinte ou anterior - + Switch to either next or previous effect Pasa ao anterior ou seguinte efecto - - + + Parameter Value Valor do parámetro - - + + Microphone Ducking Strength Intensidade da atenuación do micrófono - + Microphone Ducking Mode Modo de atenuación do micrófono - + Gain Ganancia - + Gain knob Mando da ganancia - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle Conmutador do DJ automático - + Toggle Auto DJ On/Off Conmutador do DJ automático acender/apagar - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore Maximiza/Restaura a vista da fonoteca - + Maximize the track library to take up all the available screen space. Maximiza ou restaura a vista da fonoteca per abarcar toda a pantalla - + Effect Rack Show/Hide Amosar/agachar a caixa de efectos - + Show/hide the effect rack Amosar/agachar a caixa de efectos - + Waveform Zoom Out Afastar o zoom da forma da onda @@ -2129,93 +2131,93 @@ - + Playback Speed Velocidade de reprodución - + Playback speed control (Vinyl "Pitch" slider) Control de velocidade de reprodución (O ton do vinilo) - + Pitch (Musical key) Ton (clave musical) - + Increase Speed Incrementar a velocidade - + Adjust speed faster (coarse) Axuste da velocidade rápida (basto) - - + + Increase Speed (Fine) Incrementar a velocidade (fino) - + Adjust speed faster (fine) Axuste da velocidade rápida (fino) - + Decrease Speed Diminuir a velocidade - + Adjust speed slower (coarse) Axuste da velocidade lenta (basto) - + Adjust speed slower (fine) Axuste da velocidade lenta (fino) - + Temporarily Increase Speed Incremento temporal da velocidade - + Temporarily increase speed (coarse) Incremento temporal da velocidade (basto) - + Temporarily Increase Speed (Fine) Incremento temporal da velocidade (fino) - + Temporarily increase speed (fine) Incremento temporal da velocidade (fino) - + Temporarily Decrease Speed Diminución temporal da velocidade - + Temporarily decrease speed (coarse) Diminución temporal da velocidade (basto) - + Temporarily Decrease Speed (Fine) Diminución temporal da velocidade (fino) - + Temporarily decrease speed (fine) Diminución temporal da velocidade (fino) @@ -2272,806 +2274,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock Bloqueo tonal - + CUP (Cue + Play) CUP (Punto de referencia + Reproducir) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up Mover cara arriba - + Equivalent to pressing the UP key on the keyboard Equivalente a premer la tecla frecha ARRIBA no teclado - + Move down Mover cara abaixo - + Equivalent to pressing the DOWN key on the keyboard Equivalente a premer la tecla frecha ABAIXO no teclado - + Move up/down Mover cara arriba/abaixo - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys Mover verticalmente en calquera dirección usando un mando, como se se premeran as teclas frecha ARRIBA/ABAIXO - + Scroll Up Páxina arriba - + Equivalent to pressing the PAGE UP key on the keyboard Equivalente a premer a tecla de páxina arriba (RePáx) no teclado - + Scroll Down Páxina abaixo - + Equivalent to pressing the PAGE DOWN key on the keyboard Equivalente a premer a tecla de páxina abaixo (AvPáx) no teclado - + Scroll up/down Páxina arriba/abaixo - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys Mover verticalmente en calquera dirección usando un mando, como se se premeran as teclas de avance/retroceso de páxina (RePáx/AvPáx) - + Move left Mover cara a esquerda - + Equivalent to pressing the LEFT key on the keyboard Equivalente a premer la tecla frecha ESQUERDA no teclado - + Move right Mover cara a dereita - + Equivalent to pressing the RIGHT key on the keyboard Equivalente a premer la tecla frecha DEREITA no teclado - + Move left/right Mover cara a esquerda/dereita - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys Mover verticalmente en calquera dirección usando un mando, como se se premeran as teclas frecha ESQUERDA/DEREITA - + Move focus to right pane Mover o foco para o panel dereito - + Equivalent to pressing the TAB key on the keyboard Equivalente a premer la tecla TABULADOR no teclado - + Move focus to left pane Mover o foco para o panel esquerdo - + Equivalent to pressing the SHIFT+TAB key on the keyboard Equivalente a premer as teclas MAIÚS+ TABULADOR no teclado - + Move focus to right/left pane Mover o foco para o panel esquerdo/dereito - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys Mover o foco para o panel esquerdo ou dereito usando un mando, como se se premera TABULADOR/MAIÚS+TABULADOR - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing Activar ou desactivar o procesado de efectos - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset Seguinte axuste previo de cadea - + Previous Chain Cadea anterior - + Previous chain preset Anterior axuste previo de cadea - + Next/Previous Chain Cadea seguinte/anterior - + Next or previous chain preset Seguinte ou anterior axuste previo de cadea - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary Micrófono / Auxiliar - + Microphone On/Off Micrófono acender/apagar - + Microphone on/off Micrófono acender/apagar - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) Conmutador do modo de atenuación de micrófono (APAGADO, AUTO, MANUAL) - + Auxiliary On/Off Auxiliar acender/apagar - + Auxiliary on/off Auxiliar acender/apagar - + Auto DJ DJ automático - + Auto DJ Shuffle DJ automático ao chou - + Auto DJ Skip Next Omitir a seguinte no DJ automático - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next Esvaecer para a seguinte no DJ automático - + Trigger the transition to the next track Disparar a transición á pista seguinte - + User Interface Interface de usuario - + Samplers Show/Hide Amosar/agachar o reprodutor de mostras - + Show/hide the sampler section Amosar/agachar a sección do reprodutor de mostras - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide Amosar/agochar o Control do vinilo - + Show/hide the vinyl control section Amosar/agachar a sección do Control do vinilo - + Preview Deck Show/Hide Amosar/agochar a escoita previa do prato - + Show/hide the preview deck Amosar/agachar a escoita previa do prato - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide Amosar/agachar o trebello do vinilo xiratorio - + Show/hide spinning vinyl widget Amosar/agachar o trebello do vinilo xiratorio - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom Zoom da forma da onda - + Waveform Zoom Zoom da forma da onda - + Zoom waveform in Achegar o zoom da forma da onda - + Waveform Zoom In Achegar o zoom da forma da onda - + Zoom waveform out Afastar o zoom da forma da onda - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3160,32 +3228,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. Tente recuperar reiniciando a controladora. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. É necesario arranxar o código do script @@ -3221,133 +3289,133 @@ CrateFeature - + Remove Retirar - - + + Create New Crate Crear un novo caixón - + Rename Cambiar o nome - - + + Lock Bloquear - + Export Crate as Playlist - + Export Track Files Exportar pistas a ficheiros - + Duplicate Duplicar - + Analyze entire Crate Analizar todo o caixón - + Auto DJ Track Source Orixe das pistas para DJ automático - + Enter new name for crate: Escriba o novo nome para o caixón: - - + + Crates Caixóns - - + + Import Crate Importar un caixón - + Export Crate Exportar un caixón - + Unlock Desbloquear - + An unknown error occurred while creating crate: Produciuse un erro descoñecido ao crear o caixón: - + Rename Crate Cambiar o nome do caixón - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed Non foi posíbel cambiarlle o nome ao caixón - + Crate Creation Failed Non foi posíbel crear o caixón - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Lista de reprodución M3U (*.m3u);;Lista de reprodución M3U8 (*.m3u8);;Lista de reprodución PLS (*.pls);;Texto CSV (*.csv);;Texto lexíbel (*.txt) - + Crates are a great way to help organize the music you want to DJ with. Os caixóns son un xeito excelente de axudarlle a organizar a música que quere mesturar. - + Crates let you organize your music however you'd like! Os caixóns permítenlle organizar a súa música ao seu gusto! - + A crate cannot have a blank name. Un caixón non pode ter un nome baleiro. - + A crate by that name already exists. Xa existe un caixón con ese nome. @@ -3417,37 +3485,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: Coa colaboración de: - + And special thanks to: Grazas, especialmente a: - + Past Developers Desenvolvedores anteriores - + Past Contributors Colaboradores anteriores - + Official Website - + Donate @@ -4879,32 +4947,32 @@ Aplicar os axustes e continuar? DlgPrefControlsDlg - + Skin Tema - + Tool tips Consellos emerxentes - + Select from different color schemes of a skin if available. Seleccione entre diferentes esquemas de cor para os temas cando estes o permitan. - + Color scheme Esquema de cor - + Locales determine country and language specific settings. A configuración local determina os axustes específicos do país e o idioma. - + Locale Configuración local @@ -4914,52 +4982,42 @@ Aplicar os axustes e continuar? Preferencias da interface - + HiDPI / Retina scaling HiDPI / escalado Retina - + Change the size of text, buttons, and other items. Cambia o tamaño do texto, botóns e outros elementos. - - Adopt scale factor from the operating system - Usa o escalado definido no sistema operativo - - - - Auto Scaling - Escalado automático - - - + Screen saver Protector de pantalla - + Start in full-screen mode Iniciar en modo de pantalla completa - + Full-screen mode Modo de pantalla completa - + Off Apagar - + Library only Só a fonoteca - + Library and Skin Fonoteca e tema @@ -5570,38 +5628,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. O tamaño mínimo do tema seleccionado é maior que a resolución da súa pantalla. - + Allow screensaver to run Permitir que se execute o protector de pantallas - + Prevent screensaver from running Impide que se execute o protector de pantallas - + Prevent screensaver while playing Impide que se execute o protector de pantallas durante a reprodución - + This skin does not support color schemes Este tema non admite esquemas de cor - + Information Información - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5820,62 +5878,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added Engadido o directorio de música - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? Engadiu un ou máis directorios de música. As pistas destes directorios non estarán dispoñíbeis ata que volva a examinar a fonoteca. Quere examinala agora? - + Scan Examinar - + Choose a music directory Escolla un directorio de música - + Confirm Directory Removal Confirme a retirada do directorio - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks Agochar pistas - + Delete Track Metadata Eliminar os metadatos das pistas - + Leave Tracks Unchanged Deixar as pistas sen cambios - + Relink music directory to new location Volver ligar o directorio de musica nunha nova localización - + Select Library Font Seleccione o tipo de letra para a fonoteca @@ -6881,32 +6939,32 @@ O obxectivo de sonoridade é aproximado e asume que a ganancia e o nivel de saí DlgPrefWaveform - + Filtered Filtrado - + HSV HSV - + RGB RGB - + OpenGL not available OpenGL non dispoñíbel - + dropped frames cadros desbotados - + Cached waveforms occupy %1 MiB on disk. As formas de onda almacenadas na caché ocupan %1 MiB no disco. @@ -7120,72 +7178,72 @@ Select from different types of displays for the waveform, which differ primarily Fonoteca - + Interface Interface - + Waveforms Formas de onda - + Auto DJ DJ automático - + Equalizers Ecualizadores - + Decks - + Colors - + Crossfader Cursor de mestura - + Effects Efectos - + LV2 Plugins - + Recording Gravando - + Beat Detection Detección de ritmo - + Key Detection Detección de clave musical - + Normalization Normalización - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7195,12 +7253,12 @@ Select from different types of displays for the waveform, which differ primarily Control do vinilo - + Live Broadcasting Difusión en directo - + Modplug Decoder Descodificador do Modplug @@ -7341,123 +7399,123 @@ Select from different types of displays for the waveform, which differ primarily Selecciona a mellor coincidencia posíbel - - + + Track Pista - - + + Year Ano - + Title Título - - + + Artist Interprete - - + + Album Álbum - + Album Artist Interprete do álbum - + Fetching track data from the MusicBrainz database Obtendo datos da pista desde a base de datos MusicBrainz - + Mixxx could not find this track in the MusicBrainz database. Mixxx non foi quen de atopar esta pista na base de datos de MusicBrainz. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. Obter a chave da API - + Submit Submits audio fingerprints to the MusicBrainz database. Enviar - + New Column Nova columna - + New Item Novo elemento - + &Previous &Anterior - + &Next &Seguinte - + &Apply A&plicar - + &Close &Pechar - + Status: %1 Estado: %1 - + HTTP Status: %1 Estado HTTP: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. Por algunha razón descoñecida, non é posíbel conectar Mixxx a %1. - + Mixxx can't connect to %1. Non é posíbel conectar Mixxx a %1. - + Original tags Etiquetas oriinais - + Suggested tags Etiquetas suxeridas @@ -7849,17 +7907,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) Soundtouch (rápido) - + Rubberband (better) Rubberband (mellor) - + Unknown (bad value) Descoñecido (valor erróneo) @@ -7960,38 +8018,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes iTunes - - + + Select your iTunes library Seleccione a súa fonoteca de iTunes - + (loading) iTunes (cargando) iTunes - + Use Default Library Usar a fonoteca predeterminada - + Choose Library... Escoller unha fonoteca... - + Error Loading iTunes Library Produciuse un erro ao cargar a fonoteca do iTunes - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. Produciuse un erro ao cargar a súa fonoteca de iTunes. Algunhas das súas pistas ou listas de reprodución de iTunes non foron cargadas. @@ -7999,13 +8057,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. Modo seguro activado - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8014,57 +8072,57 @@ support. OpenGL. - + activate activar - + toggle conmutar - + right dereita - + left esquerda - + right small dereita pequeno - + left small esquerda pequeno - + up arriba - + down abaixo - + up small arriba pequeno - + down small abaixo pequeno - + Shortcut Atallo @@ -8085,22 +8143,22 @@ OpenGL. LibraryFeature - + Import Playlist Importar unha lista de reprodución - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Ficheiros de lista de reprodución (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8111,27 +8169,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Examinar a fonoteca - + It's taking Mixxx a minute to scan your music library, please wait... Ao Mixxx levaralle uns segundos examinar a súa fonoteca, agarde... - + Cancel Cancelar - + Scanning: Escaneando: - + Scanning cover art (safe to cancel) Escaneando as portadas (pode cancelalo sen problemas) @@ -8247,182 +8305,182 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy O dispositivo de son está ocupado - + <b>Retry</b> after closing the other application or reconnecting a sound device <b>Tenteo de novo</b> despois de pechar o outro aplicativo ou de volver conectar un dispositivo de son - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. <b>Reconfigurar</b> os axustes do dispositivo de son do Mixxx. - - + + Get <b>Help</b> from the Mixxx Wiki. Obter <b>axuda</b> no wiki de Mixxx. - - - + + + <b>Exit</b> Mixxx. <b>Saír</b> do Mixxx. - + Retry Tentar de novo - + skin - - + + Reconfigure Volver configurar - + Help Axuda - - + + Exit Saír - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error Produciuse un erro no dispositivo de son - + <b>Retry</b> after fixing an issue - + No Output Devices Non hai dispositivos de saída - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. Mixxx foi configurado sen ningún dispositivo de saída de son. Se non hai configurado.un dispositivo de saída de son o procesado será desactivado. - + <b>Continue</b> without any outputs. <b>Continuar</b> sen ningunha saída. - + Continue Continuar - + Load track to Deck %1 Cargar a pista no prato %1 - + Deck %1 is currently playing a track. O prato %1 está a reproducir unha pista. - + Are you sure you want to load a new track? Confirma que quere cargar unha nova pista? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. Non hai ningún dispositivo de entrada seleccionado para este control de paso. Seleccione antes un dispositivo de entrada nas preferencias de hardware de son. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file Produciuse un erro no ficheiro do tema - + The selected skin cannot be loaded. Non foi posíbel cargar o tema seleccionado. - + OpenGL Direct Rendering Debuxado directo OpenGL - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Confirmar a saída - + A deck is currently playing. Exit Mixxx? O prato está reproducindo. Saír do Mixxx? - + A sampler is currently playing. Exit Mixxx? Un mostreador está reproducindo actualmente. Saír dp Mixxx? - + The preferences window is still open. A xanela de preferencias segue aberta. - + Discard any changes and exit Mixxx? Desbotar calquera cambio e saír do Mixxx? @@ -8495,43 +8553,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Bloquear - + Playlists Listas de reprodución - + Unlock Desbloquear - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. Algúns DJ constrúen listas de reprodución antes de actuar en directo, outros prefiren facelo ao voo. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. Cando se utiliza unha lista de reprodución durante una sesión de DJ en directo, lembre que debe observar sempre con moita atención como reacciona o público á música que escolleu para reproducir. - + Create New Playlist Crear unha nova lista de reprodución @@ -8539,58 +8597,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Examinar - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. Anovando o Mixxx desde v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. Mixxx ten un detector de ritmo novo e mellorado. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. Ao cargar as pistas, Mixxx pode volver a analizalas e xerar novas e máis precisas grellas de ritmo. Isto fará que sexan máis fiábeis a sincronización dos ritmos e dos blucles. - + This does not affect saved cues, hotcues, playlists, or crates. Isto non afecta ás referencias gardadas, referencias activas, listas de reprodución ou caixóns. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. Se non quere que o Mixxx analice de novo as pistas, seleccione «Manter a actual grella de ritmo». Pode cambiar este axuste en calquera momento desde a sección «Detección de ritmo» das Preferencias. - + Keep Current Beatgrids Manter a actual grella de ritmo - + Generate New Beatgrids Xerar novas grellas de ritmo @@ -8774,7 +8832,7 @@ Do you want to scan your library for cover files now? - + Encoder Codificador @@ -9900,12 +9958,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10043,54 +10101,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists Listas de reprodución - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10099,7 +10157,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox Rhythmbox @@ -10150,34 +10208,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks Pistas - + Crates Caixóns - + Check for Serato databases (refresh) - + (loading) Serato @@ -10200,12 +10258,12 @@ Fully right: end of the effect period Historial - + Unlock Desbloquear - + Lock Bloquear @@ -11164,6 +11222,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12339,11 +12422,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12359,16 +12437,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. Os pratos non poden sincronizar con mostreadores e os mostreadores só poden sincronizar con pratos. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12384,16 +12452,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12947,22 +13005,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor Traktor - + (loading) Traktor (cargando) Traktor - + Error Loading Traktor Library Produciuse un erro ao cargar a fonoteca de Traktor - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. Produciuse un erro ao cargar a súa fonoteca de Traktor. Algunhas das súas pistas ou listas de reprodución de Traktor non foron cargadas. @@ -13574,20 +13632,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Pasante - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13758,8 +13816,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Xénero - - Folder + + Directory @@ -14002,155 +14060,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 Prato %1 - + Sampler %1 Mostreador %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Crear unha nova lista de reprodución - + Enter name for new playlist: Escriba o nome para a nova lista de reprodución - + New Playlist Nova lista de reprodución - - - + + + Playlist Creation Failed Non foi posíbel crear a lista de reprodución - + A playlist by that name already exists. Xa existe unha lista de reprodución con ese nome. - + A playlist cannot have a blank name. Unha lista de reprodución non pode ter un nome baleiro. - + An unknown error occurred while creating playlist: Produciuse un erro descoñecido mentres se creaba a lista de reprodución: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14158,7 +14221,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus ESC @@ -14195,128 +14258,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory Escolla o directorio da fonoteca - + controllers - + Cannot open database Non é posíbel abrir a base de datos - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14392,7 +14382,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14449,62 +14439,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse Rato HID xenérico - + Generic HID Joystick Joystick HID xenérico - + Generic HID Game Pad - + Generic HID Keyboard Teclado HID xenérico - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_he.qm b/res/translations/mixxx_he.qm index 68287a3a2ae9667d34e03953c21f2b04f5c234fc..cb845fe7bfa2665315283cb612e12669ab4e4de4 100644 GIT binary patch delta 3542 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 delta 4107 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 KhT_=9;r{~XZJy!) diff --git a/res/translations/mixxx_he.ts b/res/translations/mixxx_he.ts index 27900fc4344..dc245193a52 100644 --- a/res/translations/mixxx_he.ts +++ b/res/translations/mixxx_he.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates ארגזים - + Remove Crate as Track Source הסר תיבת מעקב - + Auto DJ תקליטן אוטומטי - + Add Crate as Track Source הוסף תיבה כמקור מעקב @@ -43,24 +43,24 @@ BansheeFeature - + Banshee - - + + Error loading Banshee database שגיאה בטעינת מאגר הנתונים Banshee - + Banshee database file not found at לא נמצאו נתוני Banshee בקובץ מסד הנתונים - + There was an error loading your Banshee database at אירעה שגיאה בטעינת מסד הנתונים של Banshee @@ -69,32 +69,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) הוסף לתור התקליטן האוטומטי (מלמטה) - + Add to Auto DJ Queue (top) הוסף לתור תקליטן האוטומטי (מלמעלה) - + Add to Auto DJ Queue (replace) - + Import Playlist יבא רשימת השמעה - + Playlist Creation Failed יצירת רשימת השמעה שנכשלה - + An unknown error occurred while creating playlist: קרתה תקלה לא ידועה בעת יצירת רשימת השמעה @@ -102,144 +102,144 @@ BasePlaylistFeature - + New Playlist רשימת השמעה חדשה - + Add to Auto DJ Queue (bottom) הוסף לתור התקליטן האוטומטי (מלמטה) - - + + Create New Playlist יצירת רשימת השמעה חדשה - + Add to Auto DJ Queue (top) הוסף לתור תקליטן האוטומטי (מלמעלה) - + Remove הסר - + Rename שנה שם - + Lock נעל - + Duplicate שכפל - - + + Import Playlist יבא רשימת השמעה - + Export Track Files יצא רצועות שמע - + Analyze entire Playlist נתח רשימת השמעה נכנסת - + Enter new name for playlist: הכנס שם חדש לרשימת השמעה - + Duplicate Playlist שכפל רשימת השמעה - - + + Enter name for new playlist: הכנס שם לרשימת השמעה חדשה - - + + Export Playlist יצא רשימת השמעה - + Add to Auto DJ Queue (replace) - + Rename Playlist שנה שם רשימת השמעה - - + + Renaming Playlist Failed שינוי שם לרשימת השמעה שנכשלה - - - + + + A playlist by that name already exists. רשימת השמעה בעלת השם הנוכחי כבר קיימת - - - + + + A playlist cannot have a blank name. רשימת השמעה אינה יכולה להיות בעלת שם ריק - + _copy //: Appendix to default name when duplicating a playlist העתק - - - - - - + + + + + + Playlist Creation Failed יצירת רשימת השמעה שנכשלה - - + + An unknown error occurred while creating playlist: קרתה תקלה לא ידועה בעת יצירת רשימת השמעה - + M3U Playlist (*.m3u) Mp3 פלייליסט (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U רשימת השמעה (m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt.*) @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. לא ניתן לטעון את הרצועה. @@ -512,7 +512,7 @@ - + Computer מחשב @@ -532,7 +532,7 @@ לסרוק - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. "מחשב" מאפשר לנווט, להציג ולטעון רצועות, מתיקיות בדיסק הקשיח ובהתקנים חיצוניים. @@ -645,12 +645,12 @@ קובץ נוצר - + Mixxx Library ספריית Mixxx - + Could not load the following file because it is in use by Mixxx or another application. לא ניתן לטעון את הקובץ כיוון שהוא נמצא בשימוש על די Mixxx או תוכנה אחרת. @@ -681,6 +681,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -863,13 +941,13 @@ - + Set to full volume הגדר את עוצמת הקול המלאה - + Set to zero volume הגדר לאפס עוצמת קול @@ -895,13 +973,13 @@ לחצן גלילה לאחור - + Headphone listen button כפתור האזנה לאוזניות - + Mute button כפתור השתק @@ -917,25 +995,25 @@ - + Mix orientation (e.g. left, right, center) כיוון המערבל (שמאל, ימין, מרכז) - + Set mix orientation to left הגדר כיוון ערבוב שמאלה - + Set mix orientation to center הגדר כיוון ערבוב למרכז - + Set mix orientation to right הגדר כיוון ערבוב ימינה @@ -979,36 +1057,6 @@ Toggle quantize mode הדלק/כבה מצב ישיבה על הביטגריד - - - Increase internal master BPM by 1 - העלאת קצב פעימות לדקה פנימי ראשי ב 1 - - - - Decrease internal master BPM by 1 - הורדת קצב פעימות לדקה פנימי ראשי ב 1 - - - - Increase internal master BPM by 0.1 - העלאת קצב פעימות לדקה פנימי ראשי ב 0.1 - - - - Decrease internal master BPM by 0.1 - הורדת קצב פעימות לדקה פנימי ראשי ב 0.1 - - - - Toggle sync master - הדלק/כבה סינכרון ראשי - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - מעבר בין 3 מצבי סינכרון (כבוי, עוקב, ראשי) - One-time beat sync (tempo only) @@ -1020,7 +1068,7 @@ סינכרון קצב חד פעמי (מיקום בלבד) - + Toggle keylock mode הדלק/כבה מצב שמירת צליל @@ -1030,199 +1078,199 @@ אקולייזר - + Vinyl Control שליטה כמו פטיפון - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) מעבר בין 3 מצבי סימון בשליטה כמו פטיפון (כבוי/יחיד/חם) - + Toggle vinyl-control mode (ABS/REL/CONST) מעבר בין 3 מצבי סוגי שליטה כמו פטיפון (מוחלט/מציאותי/קבוע) - + Pass through external audio into the internal mixer העבר אודיו חיצוני למיקסר פנימי - + Cues נקודות סימון - + Cue button לחצן סימון - + Set cue point קבע נקודת סימון - + Go to cue point קפוץ לנקודת סימון - + Go to cue point and play קפוץ לנקודת סימון ונגן - + Go to cue point and stop קפוץ לנקודת סימון ועצור - + Preview from cue point תצוגה מקדימה מנקודת הסימון - + Cue button (CDJ mode) לחצן סימון (מצב קומפקט-דיסק) - + Stutter cue נקודת סימון מגמגמת - + Hotcues נקודות סימון חמות - + Set, preview from or jump to hotcue %1 קבע, תצוגה מקדימה או קפיצה לנקודת סימון חמה %1 - + Clear hotcue %1 מחק נקודת סימון חמה %1 - + Set hotcue %1 קבע נקודת סימון חמה %1 - + Jump to hotcue %1 קפוץ לנקודת סימון חמה %1 - + Jump to hotcue %1 and stop קפוץ לנקודת סימון חמה %1 ועצור - + Jump to hotcue %1 and play קפוץ לנקודת סימון חמה %1 ונגן - + Preview from hotcue %1 תצוגה מקדימה מנקודת סימון חמה %1 - - + + Hotcue %1 נקודת סימון חמה %1 - + Looping לולאה - + Loop In button כפתור לולאה - + Loop Out button כפתור יציאה מלולאה - + Loop Exit button כפתור יציאה מלולאה - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 32 - + 64 64 - + Move loop forward by %1 beats העבר לולאה קדימה לפי % 1 פעימות - + Move loop backward by %1 beats העבר לולאה אחורה לפי% 1 פעימות - + Create %1-beat loop יצירת לולאה לפי קצב 1% - + Create temporary %1-beat loop roll גליל יצירת זמני מקצב לולאה 1% - + Library ספריה @@ -1333,20 +1381,20 @@ - - + + Volume Fader פיידר ווליום - + Full Volume ווליום הכי גבוה - + Zero Volume אפס ווליום @@ -1362,7 +1410,7 @@ - + Mute השתק @@ -1373,7 +1421,7 @@ - + Headphone Listen האזנה באוזניות @@ -1394,25 +1442,25 @@ - + Orientation כיוון - + Orient Left כוון שמאלה - + Orient Center כוון למרכז - + Orient Right כוון ימינה @@ -1511,52 +1559,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - סנכרון ראשי - Beat Sync One-Shot @@ -1573,37 +1575,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1644,466 +1646,466 @@ - + Toggle Vinyl Control הדלק/כבה שליטה כמו פטיפון - + Toggle Vinyl Control (ON/OFF) הדלק/כבה שליטה כמו פטיפון (דולק/כבוי) - + Vinyl Control Mode מצב שליטה כמו פטיפון - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In סיבוב פנימה מלולאה - + Loop Out סיבוב החוצה מלולאה - + Loop Exit יציאה מסיבוב לולאה - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) הוסף לתור התקליטן האוטומטי (מלמטה) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) הוסף לתור תקליטן האוטומטי (מלמעלה) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix - + Toggle mix recording - + Effects אפקטים - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next הבא - + Switch to next effect - + Previous הקודם - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2128,93 +2130,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2271,806 +2273,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ תקליטן אוטומטי - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3159,32 +3227,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3220,133 +3288,133 @@ CrateFeature - + Remove הסר - - + + Create New Crate - + Rename שנה שם - - + + Lock נעל - + Export Crate as Playlist - + Export Track Files יצא רצועות שמע - + Duplicate שכפל - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates ארגזים - - + + Import Crate יבא ארגזים - + Export Crate יצא ארגזים - + Unlock שחרור נעילה - + An unknown error occurred while creating crate: התרחשה שגיאה בלתי ידועה בזמן יצירת הארגז: - + Rename Crate שינוי שם הארגז - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed שינוי שם הארגז נכשל - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U רשימת השמעה (m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt.*) - + Crates are a great way to help organize the music you want to DJ with. ארגזים זו דרך נהדרת לארגן את המוזיקה שאתה רוצה כדי לתקלט איתה. - + Crates let you organize your music however you'd like! ארגזים נותנים לך לארגן את המוזיקה שלך איך שאתה רוצה! - + A crate cannot have a blank name. לארגז לא יכול להיות שם ריק. - + A crate by that name already exists. כבר קיים ארגז בשם הזה. @@ -3416,37 +3484,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4876,32 +4944,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin מעטפת - + Tool tips חלוניות עצה - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4911,52 +4979,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off כבוי - + Library only - + Library and Skin @@ -5567,38 +5625,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information פרטים - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5817,62 +5875,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added הוסף עורך מוסיקה - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? הוספת ספריית מוסיקה אחת או יותר. המסלולים בספריות אלה לא יהיו זמינים עד לסריקה מחדש של הספרייה. האם ברצונך לסרוק מחדש? - + Scan לסרוק - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6876,32 +6934,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7115,72 +7173,72 @@ Select from different types of displays for the waveform, which differ primarily ספריה - + Interface - + Waveforms - + Auto DJ תקליטן אוטומטי - + Equalizers אקולייזר - + Decks - + Colors - + Crossfader לחצות מדעך - + Effects אפקטים - + LV2 Plugins - + Recording הקלטה - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7190,12 +7248,12 @@ Select from different types of displays for the waveform, which differ primarily שליטה כמו פטיפון - + Live Broadcasting - + Modplug Decoder @@ -7336,123 +7394,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track רצועה - - + + Year שנה - + Title שם תואר - - + + Artist אמן - - + + Album אלבום - + Album Artist אמן אלבום - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. הרשם - + New Column טור חדש - + New Item ארגז חדש - + &Previous הקודם - + &Next הבא - + &Apply - + &Close סגור - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7844,17 +7902,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7955,38 +8013,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7994,13 +8052,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8008,57 +8066,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8079,22 +8137,22 @@ support. LibraryFeature - + Import Playlist יבא רשימת השמעה - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) סיומות של רשימת השמעה (m3u *.m3u8 *.pls *.csv.*) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8105,27 +8163,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8241,181 +8299,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry - + skin - - + + Reconfigure - + Help - - + + Exit - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8486,43 +8544,43 @@ Do you want to select an input device? PlaylistFeature - + Lock נעל - + Playlists - + Unlock שחרור נעילה - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist יצירת רשימת השמעה חדשה @@ -8530,58 +8588,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan לסרוק - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8765,7 +8823,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9891,12 +9949,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10034,54 +10092,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10090,7 +10148,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10141,34 +10199,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates ארגזים - + Check for Serato databases (refresh) - + (loading) Serato @@ -10191,12 +10249,12 @@ Fully right: end of the effect period - + Unlock שחרור נעילה - + Lock נעל @@ -11155,6 +11213,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12330,11 +12413,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12350,16 +12428,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12375,16 +12443,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12938,22 +12996,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13565,20 +13623,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13749,8 +13807,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.סגנון - - Folder + + Directory @@ -13993,155 +14051,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 משטח %1 - + Sampler %1 דגימה %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist יצירת רשימת השמעה חדשה - + Enter name for new playlist: הכנס שם לרשימת השמעה חדשה - + New Playlist רשימת השמעה חדשה - - - + + + Playlist Creation Failed יצירת רשימת השמעה שנכשלה - + A playlist by that name already exists. רשימת השמעה בעלת השם הנוכחי כבר קיימת - + A playlist cannot have a blank name. רשימת השמעה אינה יכולה להיות בעלת שם ריק - + An unknown error occurred while creating playlist: קרתה תקלה לא ידועה בעת יצירת רשימת השמעה - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14149,7 +14212,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14186,128 +14249,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14383,7 +14373,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14440,62 +14430,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_he_IL.ts b/res/translations/mixxx_he_IL.ts index e8421283fd9..e7c4a887c1c 100644 --- a/res/translations/mixxx_he_IL.ts +++ b/res/translations/mixxx_he_IL.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates ארגזים - + Remove Crate as Track Source הסירו ארגז כמקור רצועת השמעה - + Auto DJ תקליטן אוטומטי - + Add Crate as Track Source הוסיפו ארגז כמקור רצועת השמעה @@ -43,25 +43,25 @@ BansheeFeature - + Banshee בנשי - - + + Error loading Banshee database שגיאה בטעינת מסד הנתונים של "בנשי" - + Banshee database file not found at קובץ מסד הנתונים של "בנשי" לא נמצא במיקום - + There was an error loading your Banshee database at ארעה שגיאה בטעינת מסד הנתונים שלך עבור "בנשי" במיקום @@ -71,32 +71,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) הוסיפו לתור התקליטן האוטומטי (מלמטה) - + Add to Auto DJ Queue (top) הוסיפו לתור התקליטן האוטומטי (מלמעלה) - + Add to Auto DJ Queue (replace) - + Import Playlist ייבאו רשימת השמעה - + Playlist Creation Failed יצירת רשימת ההשמעה כשלה - + An unknown error occurred while creating playlist: אירעה שגיאה לא ידוע בזמן יצירת רשימת ההשמעה: @@ -104,144 +104,144 @@ BasePlaylistFeature - + New Playlist רשימת השמעה חדשה - + Add to Auto DJ Queue (bottom) הוסיפו לתור התקליטן האוטומטי (מלמטה) - - + + Create New Playlist צרו רשימת השמעה חדשה - + Add to Auto DJ Queue (top) הוסיפו לתור התקליטן האוטומטי (מלמעלה) - + Remove הסירו - + Rename שנו שם - + Lock נעלו - + Duplicate שכפלו - - + + Import Playlist ייבאו רשימת השמעה - + Export Track Files ייצאו את קבציי הרצועה - + Analyze entire Playlist נתחו את רשימת ההשמעה במלואה - + Enter new name for playlist: רשמו שם חדש עבור רשימת ההשמעה: - + Duplicate Playlist שכפלו את רשימת ההשמעה - - + + Enter name for new playlist: רשמו שם עבור רשימת ההשמעה החדשה: - - + + Export Playlist ייצאו את רשימת ההשמעה - + Add to Auto DJ Queue (replace) - + Rename Playlist שנו את שם רשימת ההשמעה - - + + Renaming Playlist Failed שינוי השם עבור רשימת ההשמעה כשל - - - + + + A playlist by that name already exists. רשימת השמעה עם שם זה כבר קיימת. - - - + + + A playlist cannot have a blank name. רשימת השמעה אינה יכולה להיות עם שם ריק. - + _copy //: Appendix to default name when duplicating a playlist _העתק - - - - - - + + + + + + Playlist Creation Failed יצירת רשימת ההשמעה כשלה - - + + An unknown error occurred while creating playlist: אירעה שגיאה לא ידוע בזמן יצירת רשימת ההשמעה: - + M3U Playlist (*.m3u) רשימת השמעה בתסדיר M3U (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) רשימת השמעה בתסדיר M3U (*.m3u);;רשימת השמעה בתסדירM3U8 (*.m3u8);;רשימת השמעה בתסדיר PLS (*.pls);;טקסט CSV (*.csv);;טקסט קריא (*.txt) @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. לא הצליח לטעון רצועה @@ -514,7 +514,7 @@ - + Computer @@ -534,7 +534,7 @@ - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -647,12 +647,12 @@ - + Mixxx Library - + Could not load the following file because it is in use by Mixxx or another application. @@ -683,6 +683,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -865,13 +943,13 @@ - + Set to full volume - + Set to zero volume @@ -896,13 +974,13 @@ - + Headphone listen button - + Mute button @@ -918,25 +996,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -980,36 +1058,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1021,7 +1069,7 @@ - + Toggle keylock mode @@ -1031,199 +1079,199 @@ - + Vinyl Control - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 - + 1 - + 2 - + 4 - + 8 - + 16 - + 32 - + 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library @@ -1334,20 +1382,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1363,7 +1411,7 @@ - + Mute @@ -1374,7 +1422,7 @@ - + Headphone Listen @@ -1395,25 +1443,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1512,52 +1560,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1574,37 +1576,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1645,466 +1647,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) הוסיפו לתור התקליטן האוטומטי (מלמטה) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) הוסיפו לתור התקליטן האוטומטי (מלמעלה) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix - + Toggle mix recording - + Effects - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next - + Switch to next effect - + Previous - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2129,93 +2131,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2272,806 +2274,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ תקליטן אוטומטי - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3160,32 +3228,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3221,133 +3289,133 @@ CrateFeature - + Remove הסירו - - + + Create New Crate - + Rename שנו שם - - + + Lock נעלו - + Export Crate as Playlist - + Export Track Files ייצאו את קבציי הרצועה - + Duplicate שכפלו - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates ארגזים - - + + Import Crate - + Export Crate - + Unlock - + An unknown error occurred while creating crate: - + Rename Crate - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) רשימת השמעה בתסדיר M3U (*.m3u);;רשימת השמעה בתסדירM3U8 (*.m3u8);;רשימת השמעה בתסדיר PLS (*.pls);;טקסט CSV (*.csv);;טקסט קריא (*.txt) - + Crates are a great way to help organize the music you want to DJ with. - + Crates let you organize your music however you'd like! - + A crate cannot have a blank name. - + A crate by that name already exists. @@ -3417,37 +3485,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4877,32 +4945,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin - + Tool tips - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4912,52 +4980,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off - + Library only - + Library and Skin @@ -5568,38 +5626,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5818,62 +5876,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? הוספתם תיקיה אחת או יותר של מוסיקה. הרצועות מתיקיות אלו לא יהיו זמינות עד שתסרקו מחדש את הספרייה שלכם. האם תרצו לסרוק מחדש כעת? - + Scan - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6877,32 +6935,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7116,72 +7174,72 @@ Select from different types of displays for the waveform, which differ primarily - + Interface - + Waveforms - + Auto DJ תקליטן אוטומטי - + Equalizers - + Decks - + Colors - + Crossfader - + Effects - + LV2 Plugins - + Recording - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7191,12 +7249,12 @@ Select from different types of displays for the waveform, which differ primarily - + Live Broadcasting - + Modplug Decoder @@ -7337,123 +7395,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year שנה - + Title כותר - - + + Artist אמן - - + + Album אלבום - + Album Artist אמן האלבום - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7845,17 +7903,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7956,38 +8014,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7995,13 +8053,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8009,57 +8067,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8080,22 +8138,22 @@ support. LibraryFeature - + Import Playlist ייבאו רשימת השמעה - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8106,27 +8164,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8242,181 +8300,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry - + skin - - + + Reconfigure - + Help - - + + Exit - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8487,43 +8545,43 @@ Do you want to select an input device? PlaylistFeature - + Lock נעלו - + Playlists - + Unlock - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist צרו רשימת השמעה חדשה @@ -8531,58 +8589,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8766,7 +8824,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9892,12 +9950,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10035,54 +10093,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10091,7 +10149,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10142,34 +10200,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates ארגזים - + Check for Serato databases (refresh) - + (loading) Serato @@ -10192,12 +10250,12 @@ Fully right: end of the effect period - + Unlock - + Lock נעלו @@ -11156,6 +11214,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12331,11 +12414,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12351,16 +12429,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12376,16 +12444,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12939,22 +12997,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13566,20 +13624,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13750,8 +13808,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.סוגה - - Folder + + Directory @@ -13994,155 +14052,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 - + Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist צרו רשימת השמעה חדשה - + Enter name for new playlist: רשמו שם עבור רשימת ההשמעה החדשה: - + New Playlist רשימת השמעה חדשה - - - + + + Playlist Creation Failed יצירת רשימת ההשמעה כשלה - + A playlist by that name already exists. רשימת השמעה עם שם זה כבר קיימת. - + A playlist cannot have a blank name. רשימת השמעה אינה יכולה להיות עם שם ריק. - + An unknown error occurred while creating playlist: אירעה שגיאה לא ידוע בזמן יצירת רשימת ההשמעה: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14150,7 +14213,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14187,128 +14250,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14384,7 +14374,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14441,62 +14431,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_hi_IN.ts b/res/translations/mixxx_hi_IN.ts index b3403a9c374..fb930510a23 100644 --- a/res/translations/mixxx_hi_IN.ts +++ b/res/translations/mixxx_hi_IN.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates संदूक - + Remove Crate as Track Source - + Auto DJ स्वत: डीजे - + Add Crate as Track Source @@ -43,25 +43,25 @@ BansheeFeature - + Banshee बैन्शी - - + + Error loading Banshee database बैन्शी डेटाबेस को लोड करने में त्रुटि - + Banshee database file not found at बैन्शी डेटाबेस का फ़ाइल नहीं मिला यहाँ - + There was an error loading your Banshee database at @@ -70,32 +70,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) स्वत: डीजे के पंक्ति में जोड़ें (सब से नीचे) - + Add to Auto DJ Queue (top) स्वत: डीजे के पंक्ति में जोड़ें (सब से ऊपर) - + Add to Auto DJ Queue (replace) - + Import Playlist प्लेलिस्ट आयात करें - + Playlist Creation Failed प्लेलिस्ट निर्माण विफल रहा - + An unknown error occurred while creating playlist: प्लेलिस्ट बनाते समय एक अज्ञात त्रुटि हुई: @@ -103,144 +103,144 @@ BasePlaylistFeature - + New Playlist नई प्लेलिस्ट - + Add to Auto DJ Queue (bottom) स्वत: डीजे के पंक्ति में जोड़ें (सब से नीचे) - - + + Create New Playlist नई प्लेलिस्ट बनाएं - + Add to Auto DJ Queue (top) स्वत: डीजे के पंक्ति में जोड़ें (सब से ऊपर) - + Remove हटाएं - + Rename नाम बदलें - + Lock लॉक - + Duplicate प्रतिरूप बनाएं - - + + Import Playlist प्लेलिस्ट आयात करें - + Export Track Files ट्रैक फ़ाइलें निर्यात करें - + Analyze entire Playlist पूरी प्लेलिस्ट का विश्लेषण करें - + Enter new name for playlist: प्लेलिस्ट के लिए नया नाम दर्ज करें: - + Duplicate Playlist प्लेलिस्ट का प्रतिरूप बनाएं - - + + Enter name for new playlist: नई प्लेलिस्ट के लिए नाम दर्ज करें: - - + + Export Playlist प्लेलिस्ट निर्यात करें - + Add to Auto DJ Queue (replace) - + Rename Playlist प्लेलिस्ट का नाम बदलें - - + + Renaming Playlist Failed प्लेलिस्ट का नामकरण विफल - - - + + + A playlist by that name already exists. उस नाम की एक प्लेलिस्ट पहले से मौजूद है। - - - + + + A playlist cannot have a blank name. एक प्लेलिस्ट में एक खाली नाम नहीं हो सकता। - + _copy //: Appendix to default name when duplicating a playlist _कॉपी - - - - - - + + + + + + Playlist Creation Failed प्लेलिस्ट निर्माण विफल रहा - - + + An unknown error occurred while creating playlist: प्लेलिस्ट बनाते समय एक अज्ञात त्रुटि हुई: - + M3U Playlist (*.m3u) एम३यू प्लेलिस्ट (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) एम३यू प्लेलिस्ट (*.m3u);;एम३यू८ प्लेलिस्ट (*.m3u8);;पीएलएस प्लेलिस्ट (*.pls);;टेक्स्ट सीएसवी (*.csv);;रीडेबल टेक्स्ट (*.txt) @@ -261,7 +261,7 @@ BaseTrackPlayerImpl - + Couldn't load track. ट्रैक लोड नहीं हो सका @@ -513,7 +513,7 @@ - + Computer @@ -533,7 +533,7 @@ - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -646,12 +646,12 @@ - + Mixxx Library - + Could not load the following file because it is in use by Mixxx or another application. @@ -682,6 +682,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -864,13 +942,13 @@ - + Set to full volume - + Set to zero volume @@ -895,13 +973,13 @@ - + Headphone listen button - + Mute button @@ -917,25 +995,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -979,36 +1057,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1020,7 +1068,7 @@ - + Toggle keylock mode @@ -1030,199 +1078,199 @@ - + Vinyl Control - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 - + 1 - + 2 - + 4 - + 8 - + 16 - + 32 - + 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library @@ -1333,20 +1381,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1362,7 +1410,7 @@ - + Mute @@ -1373,7 +1421,7 @@ - + Headphone Listen @@ -1394,25 +1442,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1511,52 +1559,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1573,37 +1575,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1644,466 +1646,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) स्वत: डीजे के पंक्ति में जोड़ें (सब से नीचे) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) स्वत: डीजे के पंक्ति में जोड़ें (सब से ऊपर) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix - + Toggle mix recording - + Effects - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next - + Switch to next effect - + Previous - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2128,93 +2130,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2271,806 +2273,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ स्वत: डीजे - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3159,32 +3227,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3220,133 +3288,133 @@ CrateFeature - + Remove हटाएं - - + + Create New Crate - + Rename नाम बदलें - - + + Lock लॉक - + Export Crate as Playlist - + Export Track Files ट्रैक फ़ाइलें निर्यात करें - + Duplicate नक़ल - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates संदूक - - + + Import Crate - + Export Crate - + Unlock - + An unknown error occurred while creating crate: - + Rename Crate - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) एम३यू प्लेलिस्ट (*.m3u);;एम३यू८ प्लेलिस्ट (*.m3u8);;पीएलएस प्लेलिस्ट (*.pls);;टेक्स्ट सीएसवी (*.csv);;रीडेबल टेक्स्ट (*.txt) - + Crates are a great way to help organize the music you want to DJ with. - + Crates let you organize your music however you'd like! - + A crate cannot have a blank name. - + A crate by that name already exists. @@ -3416,37 +3484,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4876,32 +4944,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin - + Tool tips - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4911,52 +4979,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off - + Library only - + Library and Skin @@ -5567,38 +5625,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5817,62 +5875,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6876,32 +6934,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7115,72 +7173,72 @@ Select from different types of displays for the waveform, which differ primarily - + Interface - + Waveforms - + Auto DJ स्वत: डीजे - + Equalizers - + Decks - + Colors - + Crossfader - + Effects - + LV2 Plugins - + Recording - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7190,12 +7248,12 @@ Select from different types of displays for the waveform, which differ primarily - + Live Broadcasting - + Modplug Decoder @@ -7336,123 +7394,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year साल - + Title शीर्षक - - + + Artist कलाकार - - + + Album एल्बम - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7844,17 +7902,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7955,38 +8013,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7994,13 +8052,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8008,57 +8066,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8079,22 +8137,22 @@ support. LibraryFeature - + Import Playlist प्लेलिस्ट आयात करें - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8105,27 +8163,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8241,181 +8299,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry - + skin - - + + Reconfigure - + Help - - + + Exit - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8486,43 +8544,43 @@ Do you want to select an input device? PlaylistFeature - + Lock लॉक - + Playlists - + Unlock - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist नई प्लेलिस्ट बनाएं @@ -8530,58 +8588,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8765,7 +8823,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9891,12 +9949,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10034,54 +10092,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10090,7 +10148,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10141,34 +10199,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates संदूक - + Check for Serato databases (refresh) - + (loading) Serato @@ -10191,12 +10249,12 @@ Fully right: end of the effect period - + Unlock - + Lock लॉक @@ -11155,6 +11213,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12330,11 +12413,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12350,16 +12428,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12375,16 +12443,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12938,22 +12996,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13565,20 +13623,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13749,8 +13807,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.शैली - - Folder + + Directory @@ -13993,155 +14051,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 - + Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist नई प्लेलिस्ट बनाएं - + Enter name for new playlist: नई प्लेलिस्ट के लिए नाम दर्ज करें: - + New Playlist नई प्लेलिस्ट - - - + + + Playlist Creation Failed प्लेलिस्ट निर्माण विफल रहा - + A playlist by that name already exists. उस नाम की एक प्लेलिस्ट पहले से मौजूद है। - + A playlist cannot have a blank name. एक प्लेलिस्ट में एक खाली नाम नहीं हो सकता। - + An unknown error occurred while creating playlist: प्लेलिस्ट बनाते समय एक अज्ञात त्रुटि हुई: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14149,7 +14212,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14186,128 +14249,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14383,7 +14373,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14440,62 +14430,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_hr.qm b/res/translations/mixxx_hr.qm index 935146ee73a2d8c3ed13212f1e1320190a0a978d..36540fda97685b5e57054bf0bf45d7a1649df86b 100644 GIT binary patch delta 2491 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 AutoDJFeature - + Crates Spremnik - + Remove Crate as Track Source Ukloni spremnik kao izvor pjesama - + Auto DJ Automatski DJ - + Add Crate as Track Source Dodaj spremnik kao izvor pjesama @@ -43,25 +43,25 @@ BansheeFeature - + Banshee Banshee - - + + Error loading Banshee database Pogreška učitavanja Banshee baze podataka - + Banshee database file not found at Datoteka s Banshee bazom podataka nije pronađena na - + There was an error loading your Banshee database at Dogodila se pogreška prilikom učitavanja Banshee baze podataka na @@ -71,32 +71,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Dodaj u automatski DJ red - + Add to Auto DJ Queue (top) Dodaj u automatski DJ red (na vrh) - + Add to Auto DJ Queue (replace) - + Import Playlist Uvezi popis izvođenja - + Playlist Creation Failed Neuspjelo kreiranje liste izvođenja - + An unknown error occurred while creating playlist: Nepoznata greška tjekom kreiranja liste izvođenja @@ -104,144 +104,144 @@ BasePlaylistFeature - + New Playlist Novi popis izvođenja - + Add to Auto DJ Queue (bottom) Dodaj u automatski DJ red - - + + Create New Playlist Izradi novu listu izvođenja - + Add to Auto DJ Queue (top) Dodaj u automatski DJ red (na vrh) - + Remove Ukloni - + Rename Preimenuj - + Lock Zaključaj - + Duplicate Dupliciraj - - + + Import Playlist Uvezi popis izvođenja - + Export Track Files Izvezi pjesme - + Analyze entire Playlist Analiziraj cijelu listu izvođenja - + Enter new name for playlist: Unesite novo ime za listu izvođenja - + Duplicate Playlist Duplicirana lista izvođenja - - + + Enter name for new playlist: Unesite ime za novu listu izvođenja - - + + Export Playlist Izvezi popis izvođenja - + Add to Auto DJ Queue (replace) - + Rename Playlist Preimenuj popis izvođenja - - + + Renaming Playlist Failed Neuspjelo preimenovanje popisa izvođenja - - - + + + A playlist by that name already exists. Popis sa tim imenom već postoji - - - + + + A playlist cannot have a blank name. Popis mora sadržavati ime - + _copy //: Appendix to default name when duplicating a playlist _kopiraj - - - - - - + + + + + + Playlist Creation Failed Neuspjelo kreiranje liste izvođenja - - + + An unknown error occurred while creating playlist: Nepoznata greška tjekom kreiranja liste izvođenja - + M3U Playlist (*.m3u) M3U lista izvođenja (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U lista (*.m3u);;M3U8 lista (*.m3u8);;PLS lista (*.pls);;Tekst CSV (*.csv);;Čitljivi tekst (*.txt) @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Ne može učitati pjesmu @@ -514,7 +514,7 @@ - + Computer Računalo @@ -534,7 +534,7 @@ Skeniraj - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -647,12 +647,12 @@ Datoteka stvorena - + Mixxx Library Mixxx Biblioteka - + Could not load the following file because it is in use by Mixxx or another application. Nemože učitati navedenu datoteku jer je koristi Mixxx ili neka druga aplikacija. @@ -683,6 +683,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -865,13 +943,13 @@ - + Set to full volume Postavi punu glasnoći - + Set to zero volume Postavi glasnoću na 0 @@ -896,13 +974,13 @@ - + Headphone listen button Gumb za slušanje na slušalice - + Mute button Gumb stop @@ -918,25 +996,25 @@ - + Mix orientation (e.g. left, right, center) Orijentacija Miksa (ljevo, desno, centar) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -980,36 +1058,6 @@ Toggle quantize mode Promijeni - - - Increase internal master BPM by 1 - Povećaj unutarnjji glavni BPM za 1 - - - - Decrease internal master BPM by 1 - Smanji unutarnji glavni BPM za 1 - - - - Increase internal master BPM by 0.1 - Povećaj unutarnji glavni BPM za 0,1 - - - - Decrease internal master BPM by 0.1 - Smanji unutarnji glavni BPM za 0,1 - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1021,7 +1069,7 @@ - + Toggle keylock mode @@ -1031,199 +1079,199 @@ - + Vinyl Control Vinil-kontrola - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 32 - + 64 64 - + Move loop forward by %1 beats Pomakni petju unaprijed za %1 udarac. - + Move loop backward by %1 beats Pomakni petlju unazad za %1 udaraca. - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library Biblioteka @@ -1334,20 +1382,20 @@ - - + + Volume Fader Klizač glasnoće - + Full Volume Puna glasnoća - + Zero Volume Utišano @@ -1363,7 +1411,7 @@ - + Mute Utišaj @@ -1374,7 +1422,7 @@ - + Headphone Listen Slušanje u slušalicama @@ -1395,25 +1443,25 @@ - + Orientation Orijentacija - + Orient Left - + Orient Center - + Orient Right @@ -1512,52 +1560,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - Unutarnji glavni BPM - - - - Internal Master BPM +1 - Unutarnji glavni BPM +1 - - - - Internal Master BPM -1 - Unutarnji glavni BPM -1 - - - - Internal Master BPM +0.1 - Unutarnji glavni BPM +0,1 - - - - Internal Master BPM -0.1 - Unutarnji glavni BPM -0,1 - - - - Sync Master - - Beat Sync One-Shot @@ -1574,37 +1576,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1645,466 +1647,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) Dodaj u automatski DJ red - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) Dodaj u automatski DJ red (na vrh) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix - + Toggle mix recording - + Effects - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next - + Switch to next effect - + Previous - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob Potenciometar za pojačanje - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2129,93 +2131,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2272,806 +2274,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ Automatski DJ - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3160,32 +3228,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3221,133 +3289,133 @@ CrateFeature - + Remove Ukloni - - + + Create New Crate - + Rename Preimenuj - - + + Lock Zaključaj - + Export Crate as Playlist - + Export Track Files Izvezi pjesme - + Duplicate Dupliciraj - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates Spremnik - - + + Import Crate Uvezi spremnik - + Export Crate Izvezi spremnik - + Unlock Otključaj - + An unknown error occurred while creating crate: Nepoznata greška pri stvaranju spremnika: - + Rename Crate Preimenuj spremnik - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed Neuspjelo preimenovanje spremnika - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U lista (*.m3u);;M3U8 lista (*.m3u8);;PLS lista (*.pls);;Tekst CSV (*.csv);;Čitljivi tekst (*.txt) - + Crates are a great way to help organize the music you want to DJ with. Spremnici su dobar način za pomoć pri organizaciji pjesama s kojim će te raditi. - + Crates let you organize your music however you'd like! Spremnici vam omogućavaju da organizirate pjesme po želji. - + A crate cannot have a blank name. Spremnik mora imati ime. - + A crate by that name already exists. Spremnik toga imena već postoji. @@ -3417,37 +3485,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4877,32 +4945,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin - + Tool tips - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4912,52 +4980,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off - + Library only - + Library and Skin @@ -5568,38 +5626,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5818,62 +5876,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added Dodan glazbeni direktorij - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? Dodali ste jedan ili više glazbenih mapa. Pjesme u tim mapama neće biti dostupne dok ne izvršite ponovno skeniranje biblioteke. Želite li to učiniti sada? - + Scan Skeniraj - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6877,32 +6935,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7116,72 +7174,72 @@ Select from different types of displays for the waveform, which differ primarily Biblioteka - + Interface - + Waveforms - + Auto DJ Automatski DJ - + Equalizers - + Decks - + Colors - + Crossfader Prelaznik - + Effects - + LV2 Plugins - + Recording - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7191,12 +7249,12 @@ Select from different types of displays for the waveform, which differ primarily Vinil-kontrola - + Live Broadcasting - + Modplug Decoder @@ -7337,123 +7395,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Godina - + Title Naslov - - + + Artist Izvođač - - + + Album Album - + Album Artist Izvođač albuma - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7845,17 +7903,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7956,38 +8014,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7995,13 +8053,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8009,57 +8067,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8080,22 +8138,22 @@ support. LibraryFeature - + Import Playlist Uvezi popis izvođenja - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Datoteke liste izvođenja (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8106,27 +8164,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8242,181 +8300,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry - + skin - - + + Reconfigure - + Help - - + + Exit - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8487,43 +8545,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Zaključaj - + Playlists - + Unlock Otključaj - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist Izradi novu listu izvođenja @@ -8531,58 +8589,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Skeniraj - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8766,7 +8824,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9892,12 +9950,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10035,54 +10093,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10091,7 +10149,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10142,34 +10200,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates Spremnik - + Check for Serato databases (refresh) - + (loading) Serato @@ -10192,12 +10250,12 @@ Fully right: end of the effect period - + Unlock Otključaj - + Lock Zaključaj @@ -11156,6 +11214,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12331,11 +12414,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12351,16 +12429,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12376,16 +12444,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12939,22 +12997,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13566,20 +13624,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13750,8 +13808,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Vrsta glazbe - - Folder + + Directory @@ -13994,155 +14052,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 Svirač %1 - + Sampler %1 Sempler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Izradi novu listu izvođenja - + Enter name for new playlist: Unesite ime za novu listu izvođenja - + New Playlist Novi popis izvođenja - - - + + + Playlist Creation Failed Neuspjelo kreiranje liste izvođenja - + A playlist by that name already exists. Popis sa tim imenom već postoji - + A playlist cannot have a blank name. Popis mora sadržavati ime - + An unknown error occurred while creating playlist: Nepoznata greška tjekom kreiranja liste izvođenja - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14150,7 +14213,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14187,128 +14250,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14384,7 +14374,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14441,62 +14431,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_hu.qm b/res/translations/mixxx_hu.qm index f60af41ad8c15d847a406063de8013aad8dd7543..73fe7638a18f24d56bc4c1b4f8349791e655deb4 100644 GIT binary patch delta 6926 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 f$mwXcI4tMzlsV=(wy_s_N&YleB%{H0_3 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 AutoDJFeature - + Crates Rekeszek - + Remove Crate as Track Source Rekesz, mint zene forrás eltávoltása - + Auto DJ Auto DJ - + Add Crate as Track Source Rekesz, mint zene forrás hozzáadása @@ -43,25 +43,25 @@ BansheeFeature - + Banshee Banshee - - + + Error loading Banshee database Banshee adatbázis betöltés hiba - + Banshee database file not found at Nem található a Banshee adatbázis fájl - + There was an error loading your Banshee database at Hiba történt a Banshee adatbázisod betöltése közben @@ -71,32 +71,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Hozzáadás az Auto DJ listához (végére) - + Add to Auto DJ Queue (top) Hozzáadás az Auto DJ listához (elejére) - + Add to Auto DJ Queue (replace) Hozzáadás az Auto DJ listához (csere) - + Import Playlist Lejátszólista importálása - + Playlist Creation Failed Lejátszólista készítése sikertelen - + An unknown error occurred while creating playlist: Ismeretlen hiba történt a lejátszólista készítésekor: @@ -104,144 +104,144 @@ BasePlaylistFeature - + New Playlist Új lejátszólista - + Add to Auto DJ Queue (bottom) Hozzáadás az Auto DJ listához (végére) - - + + Create New Playlist Új lejátszólista készítése - + Add to Auto DJ Queue (top) Hozzáadás az Auto DJ listához (elejére) - + Remove Eltávolítás - + Rename Átnevezés - + Lock Zárolás - + Duplicate Másolat - - + + Import Playlist Lejátszólista importálása - + Export Track Files Zeneszám fájlok exportálása - + Analyze entire Playlist Teljes lejátszólista elemzése - + Enter new name for playlist: Add meg a lejátszólista új nevét: - + Duplicate Playlist Lejátszólista másolata - - + + Enter name for new playlist: Add meg az új lejátszólista nevét: - - + + Export Playlist Lejátszólista exportálása - + Add to Auto DJ Queue (replace) Hozzáadás az Auto DJ listához (csere) - + Rename Playlist Lejátszólista átnevezése - - + + Renaming Playlist Failed Lejátszólista átnevezése sikertelen - - - + + + A playlist by that name already exists. Egy lejátszólista ezzel a névvel már létezik. - - - + + + A playlist cannot have a blank name. A lejátszólista nem tartalmazhat üres helyet. - + _copy //: Appendix to default name when duplicating a playlist _másolás - - - - - - + + + + + + Playlist Creation Failed Lejátszólista készítése sikertelen - - + + An unknown error occurred while creating playlist: Ismeretlen hiba történt a lejátszólista készítésekor: - + M3U Playlist (*.m3u) M3U lejátszási lista (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U lejátszási lista (*.m3u);;M3U8 lejátszási lista (*.m3u8);;PLS lejátszási lista (*.pls);;Szöveg CSV (*.csv);;Olvasható szöveg (*.txt) @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Nem lehet a számot betölteni. @@ -514,7 +514,7 @@ - + Computer Számítógép @@ -534,7 +534,7 @@ Beolvasás - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. A "Számítógép" enged navigálni, megnézni és betölteni számokat a mappákból a merevlemezeden, vagy cserélhető adattárolókból @@ -647,12 +647,12 @@ A fájl készítve - + Mixxx Library Mixxx Könyvtár - + Could not load the following file because it is in use by Mixxx or another application. A fájlt nem lehet betölteni, mert a Mixxx, vagy egy másik program használja. @@ -683,6 +683,84 @@ A '%1' fájl üres, így nem sikerült betölteni. + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -865,13 +943,13 @@ - + Set to full volume Teljes hangerő - + Set to zero volume Alapértelmezett hangerő @@ -896,13 +974,13 @@ Visszafele görgetés (Cenzúra) gomb - + Headphone listen button Fejhallgató belehallgatás gomb - + Mute button Némítás @@ -918,25 +996,25 @@ - + Mix orientation (e.g. left, right, center) Keverő orientáció (pl. bal, jobb, közép) - + Set mix orientation to left Keverés orientáció beállítása balra - + Set mix orientation to center Keverés orientáció beállítása középre - + Set mix orientation to right Keverés orientáció beállítása jobbra @@ -980,36 +1058,6 @@ Toggle quantize mode Kvantálási mód megváltoztatása - - - Increase internal master BPM by 1 - BPM emelése a Masteren 1-gyel - - - - Decrease internal master BPM by 1 - BPM csökkentése a Masteren 1-gyel - - - - Increase internal master BPM by 0.1 - BPM emelése a Masteren 0.1-el - - - - Decrease internal master BPM by 0.1 - BPM csökkentése a Masteren 0.1-el - - - - Toggle sync master - Ütem igazítása mesterhez - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - Ütemigazítás kapcsolása három állapot között (KI, KÖVETŐ, MESTER) - One-time beat sync (tempo only) @@ -1021,7 +1069,7 @@ Egyszeres ütemigazítás (csak fázis) - + Toggle keylock mode Hangszín zár kapcsoló @@ -1031,199 +1079,199 @@ Hangszínszabályzók - + Vinyl Control Bakelit vezérlés - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) Bakelit vezérlési mód váltása (ABSZ/REL/KONST) - + Pass through external audio into the internal mixer - + Cues Cue pontok - + Cue button Cue gomb - + Set cue point Cue pont beállítása - + Go to cue point Cue pontra ugrás - + Go to cue point and play Cue pontra ugrás és lejátszás - + Go to cue point and stop Cue pontra ugrás és megállítás - + Preview from cue point Előhallgatás cue ponttól - + Cue button (CDJ mode) Cue gomb (CDJ mód) - + Stutter cue - + Hotcues Hotcue pontok - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 Hotcue %1 törlése - + Set hotcue %1 Hotcue %1 beállítása - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 Hotcue %1 - + Looping Ismétlés - + Loop In button Ismétlés kezdete gomb - + Loop Out button Ismétlés vége gomb - + Loop Exit button Ismétlésből kilépés gomb - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 32 - + 64 64 - + Move loop forward by %1 beats Ismétlés előre mozgatása %1 ütemmel - + Move loop backward by %1 beats Ismétlés hátra mozgatása %1 ütemmel - + Create %1-beat loop %1 ütem ismétlésének létrehozása - + Create temporary %1-beat loop roll %1 ütem ismétlésének átmeneti létrehozása csúsztatással - + Library Könyvtár @@ -1334,20 +1382,20 @@ - - + + Volume Fader Hangerő Fader - + Full Volume Teljes hangerő - + Zero Volume Némítás @@ -1363,7 +1411,7 @@ - + Mute Némítás @@ -1374,7 +1422,7 @@ - + Headphone Listen @@ -1395,25 +1443,25 @@ - + Orientation Tájolás - + Orient Left Balra igazítás - + Orient Center Középre igazítás - + Orient Right Jobbra igazítás @@ -1512,52 +1560,6 @@ Sync Szinkron - - - Sync Mode - Szinkron mód - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1574,37 +1576,37 @@ - + Pitch control (does not affect tempo), center is original pitch Hangmagasság vezérlő (nincs hatással a tempóra), középen az eredeti érték - + Pitch Adjust Hangmagasság állítás - + Adjust pitch from speed slider pitch Hangmagasság állítása a sebesség csúszkával - + Match musical key Zenei hangnem illesztése - + Match Key Hangnem illesztése - + Reset Key Hangnem visszaállítása - + Resets key to original Visszaállítja a hangnemet az eredetire @@ -1645,466 +1647,466 @@ Mély EQ - + Toggle Vinyl Control Bakelit vezérlés kapcsolása - + Toggle Vinyl Control (ON/OFF) Bakelit vezérlés kapcsolása (BE/KI) - + Vinyl Control Mode Bakelit vezérlés mód - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck Bakelit vezérlés következő lejátszó - + Single deck mode - Switch vinyl control to next deck Egylejátszós mód - Bakelit vezérlés váltása a következő lejátszóra - + Cue Cue - + Set Cue Cue pont beállítása - + Go-To Cue Cue pontra ugrás - + Go-To Cue And Play Cue pontra ugrás és lejátszás - + Go-To Cue And Stop Cue pontra ugrás és megállítás - + Preview Cue Cue pont előhallgatása - + Cue (CDJ Mode) Cue (CDJ mód) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In Ismétlést kezd - + Loop Out Ismétlést zár - + Loop Exit Ismétlésből kilép - + Reloop/Exit Loop Újraismétlés/kilépés - + Loop Halve Ismétlés felezése - + Loop Double Ismétlés kétszerezése - + 1/32 1/32 - + 1/16 1/16 - + 1/8 1/8 - + 1/4 1/4 - + Move Loop +%1 Beats Ismétlés mozgatása +%1 ütemmel - + Move Loop -%1 Beats Ismétlés mozgatása -%1 ütemmel - + Loop %1 Beats %1 ütem ismétlése - + Loop Roll %1 Beats %1 ütem ismétlése csúsztatással - + Add to Auto DJ Queue (bottom) Hozzáadás az Auto DJ listához (végére) - + Append the selected track to the Auto DJ Queue A kiválasztott szám hozzáadása az Auto DJ lejátszási listájának végére - + Add to Auto DJ Queue (top) Hozzáadás az Auto DJ listához (elejére) - + Prepend selected track to the Auto DJ Queue A kiválasztott szám hozzáadása az Auto DJ lejátszási listájának elejére - + Load Track Szám betöltése - + Load selected track Kiválasztott szám betöltése - + Load selected track and play Kiválasztott szám betöltése és lejátszás - - + + Record Mix Mix felvétele - + Toggle mix recording Mix felvételének kapcsolása - + Effects Effektek - + Quick Effects Gyors effektek - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect Gyors effekt - + Clear effect rack - + Clear Effect Rack - + Clear Unit Egység ürítése - + Clear effect unit - + Toggle Unit Egység kapcsolása - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain Következő lánc - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next Következő - + Switch to next effect - + Previous Előző - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue Az Auto DJ lejátszási lista tartalmának összekeverése. - + Skip the next track in the Auto DJ queue Az Auto DJ lejátszási lista következő számának átugrása - + Auto DJ Toggle Auto DJ kapcsolása - + Toggle Auto DJ On/Off Auto DJ be/kikapcsolása - + Microphone & Auxiliary Show/Hide Mikrofon és külső bemenetek mutatása/rejtése - + Show/hide the microphone & auxiliary section Megmutatja/elrejti a mikrofon és külső bemenet részt - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide Keverő mutatása/rejtése - + Show or hide the mixer. Megmutatja vagy elrejti a keverőt - + Cover Art Show/Hide (Library) Borítókép mutatása/rejtése (Könyvtár) - + Show/hide cover art in the library Megmutatja vagy elrejti a könyvtárban a borítóképet - + Library Maximize/Restore Könyvtár maximalizálása/visszaállítása - + Maximize the track library to take up all the available screen space. Maximalizálja a számkönyvtárat, hogy minden elérhető helyet elfoglaljon a képernyőn. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2129,93 +2131,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) Hangmagasság (Zenei hangnem) - + Increase Speed Sebesség növelése - + Adjust speed faster (coarse) Sebesség növelése (durva) - - + + Increase Speed (Fine) Sebesség növelése (finom) - + Adjust speed faster (fine) Sebesség növelése (finom) - + Decrease Speed Sebesség csökkentése - + Adjust speed slower (coarse) Sebesség csökkentése (durva) - + Adjust speed slower (fine) Sebesség csökkentése (finom) - + Temporarily Increase Speed Sebesség csökkentése (finom) - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2272,806 +2274,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed Sebesség - + Pitch (Musical Key) Hangmagasság (Zenei hangnem) - + Increase Pitch Hangmagasság növelése - + Increases the pitch by one semitone Hangmagasság növelése félhanggal - + Increase Pitch (Fine) Hangmagasság növelése (finom) - + Increases the pitch by 10 cents - + Decrease Pitch Hangmagasság csökkentése - + Decreases the pitch by one semitone Hangmagasság csökkentése félhanggal - + Decrease Pitch (Fine) Hangmagasság csökkentése (finom) - + Decreases the pitch by 10 cents - + Keylock Hangnemzár - + CUP (Cue + Play) CUP (Cue + Lejátszás) - + Shift cue points earlier Cue pontok igazítása korábbra - + Shift cue points 10 milliseconds earlier Cue pontok igazítása 10 milliszekundummal korábbra - + Shift cue points earlier (fine) Cue pontok igazítása korábbra (finom) - + Shift cue points 1 millisecond earlier Cue pontok igazítása 1 milliszekundummal korábbra - + Shift cue points later Cue pontok igazítása későbbre - + Shift cue points 10 milliseconds later Cue pontok igazítása 10 milliszekundummal későbbre - + Shift cue points later (fine) Cue pontok igazítása későbbre (finom) - + Shift cue points 1 millisecond later Cue pontok igazítása 1 milliszekundummal későbbre - + Hotcues %1-%2 Hotcuek %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats Kiválasztott ütemek ismétlése - + Create a beat loop of selected beat size Kiválasztott ütemszámú ismétlés indítása - + Loop Roll Selected Beats Kiválasztott ütemek ismétlése csúsztatással - + Create a rolling beat loop of selected beat size Kiválasztott ütemszámú ismétlés indítása csúsztatással - + Loop Beats Ütemek ismétlése - + Loop Roll Beats Ütemek ismétlése csúsztatással - + Toggle loop on/off and jump to Loop In point if loop is behind play position Ismétlés be/kikapcsolása és ugrás az ismétlés kezdőpontjára, ha az ismétlés a lejátszótű mögött van - + Reloop And Stop Újraismétlés és megállítás - + Enable loop, jump to Loop In point, and stop Ismétlés bekapcsolása, kezdetére ugrás és megállítása - + Halve the loop length Az ismétlés hosszának felezése - + Double the loop length Az ismétlés hosszának duplázása - + Beat Jump / Loop Move Ütemugrás / Ismétlés mozgatása - + Jump / Move Loop Forward %1 Beats Ugorj / Mozgasd az ismétlést %1 ütemmel előre - + Jump / Move Loop Backward %1 Beats Ugorj / Mozgasd az ismétlést %1 ütemmel vissza - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation Navigáció - + Move up Mozgás fel - + Equivalent to pressing the UP key on the keyboard Megegyezik a FEL billentyűvel - + Move down Mozgás le - + Equivalent to pressing the DOWN key on the keyboard Megegyezik a LE billentyűvel - + Move up/down Fel/le mozgás - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys Mozogj függőlegesen mindkét irányba enkóder használatával, mintha a FEL/LE gombokat nyomkodnád - + Scroll Up Tekerés fel - + Equivalent to pressing the PAGE UP key on the keyboard Megegyezik a PAGE UP billentyűvel - + Scroll Down Tekerés le - + Equivalent to pressing the PAGE DOWN key on the keyboard Megegyezik a PAGE DOWN billentyűvel - + Scroll up/down Tekerés fel/le - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys Tekerj függőlegesen mindkét irányba enkóder használatával, mintha a PGUP/PGDOWN gombokat nyomkodnád - + Move left Mozgás balra - + Equivalent to pressing the LEFT key on the keyboard Megegyezik a BAL billentyűvel - + Move right Mozgás jobbra - + Equivalent to pressing the RIGHT key on the keyboard Megegyezik a JOBB billentyűvel - + Move left/right Mozgás balra/jobbra - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys Mozogj vízszintesen mindkét irányba enkóder használatával, mintha a BAL/JOBB gombokat nyomkodnád - + Move focus to right pane Fókusz mozgatása a jobb panelra - + Equivalent to pressing the TAB key on the keyboard Megegyezik a TAB billentyűvel - + Move focus to left pane Fókusz mozgatása a bal panelra - + Equivalent to pressing the SHIFT+TAB key on the keyboard Megegyezik a SHIFT+TAB billentyűkombinációval - + Move focus to right/left pane Fókusz mozgatása a jobb/bal panelra - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys Fókusz mozgatása egy panellal jobbra vagy balra, mintha a TAB/SHIFT+TAB billentyűket nyomkodnád - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play Szám betöltése és lejátszás - + Add to Auto DJ Queue (replace) Hozzáadás az Auto DJ listához (csere) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off Mikrofon be/ki - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ Auto DJ - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3160,32 +3228,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3221,133 +3289,133 @@ CrateFeature - + Remove Eltávolítás - - + + Create New Crate Új Rekesz készítése - + Rename Átnevezés - - + + Lock Zárolás - + Export Crate as Playlist - + Export Track Files Zeneszám fájlok exportálása - + Duplicate Másolat - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates Rekeszek - - + + Import Crate Rekesz importálása - + Export Crate Rekesz exportálása - + Unlock Feloldás - + An unknown error occurred while creating crate: Egy ismeretlen hiba lépett fel a rekesz készítése közben: - + Rename Crate Rekesz átnevezése - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed Rekesz átnevezése sikertelen - + Crate Creation Failed Rekesz elkészítése sikertelen - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U lejátszási lista (*.m3u);;M3U8 lejátszási lista (*.m3u8);;PLS lejátszási lista (*.pls);;Szöveg CSV (*.csv);;Olvasható szöveg (*.txt) - + Crates are a great way to help organize the music you want to DJ with. - + Crates let you organize your music however you'd like! A Rekeszekkel tudod a zenéidet úgy rendszerezni, ahogy szeretnéd! - + A crate cannot have a blank name. Rekesz neve nem lehet üres. - + A crate by that name already exists. Rekesz ezzel a névvel már létezik. @@ -3417,37 +3485,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4877,32 +4945,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin Kinézet - + Tool tips Eszköz tippek - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4912,52 +4980,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off Ki - + Library only - + Library and Skin @@ -5587,38 +5645,38 @@ Fogd-és-vidd módszerrel mindig másolhatsz lejátszókat. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. A kiválasztott kinézet mérete nagyobb, mint a képernyőd felbontása. - + Allow screensaver to run Képernyővédő engedése - + Prevent screensaver from running Képernyővédő letiltása - + Prevent screensaver while playing Képernyővédő letiltása lejátszás közben - + This skin does not support color schemes Ez a kinézet nem támogat színsémákat - + Information Információ - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5837,62 +5895,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added Zenei könyvtár hozzáadva - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? Hozzáadtál egy vagy több zenei könyvtárat. A zeneszámok ezekben a könyvtárakban nem lesznek elérhetők, amíg újra nem olvastatod a könyvtáraidat. Szeretnéd most újraolvastatni? - + Scan Beolvasás - + Choose a music directory Válassz zenei gyűjtemény könyvtárat - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks Számok elrejtése - + Delete Track Metadata Számok adatainak törlése - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6896,32 +6954,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7135,72 +7193,72 @@ Select from different types of displays for the waveform, which differ primarily Könyvtár - + Interface Felület - + Waveforms - + Auto DJ Auto DJ - + Equalizers Hangszínszabályzók - + Decks - + Colors - + Crossfader Crossfader - + Effects Effektek - + LV2 Plugins - + Recording Rögzítés - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7210,12 +7268,12 @@ Select from different types of displays for the waveform, which differ primarily Bakelit vezérlés - + Live Broadcasting Élő közvetítés - + Modplug Decoder @@ -7356,123 +7414,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Év - + Title Cím - - + + Artist Előadó - - + + Album Album - + Album Artist Album Előadó - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply &Alkalmaz - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags Eredeti előadó - + Suggested tags Javasolt címkék @@ -7864,17 +7922,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7975,38 +8033,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -8014,13 +8072,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8028,57 +8086,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8099,22 +8157,22 @@ support. LibraryFeature - + Import Playlist Lejátszólista importálása - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Lejátszólista típusok - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8125,27 +8183,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... A Mixxx-nek egy időbe telik amíg ellenőrzi a zene könyvtárat, várjon... - + Cancel Mégsem - + Scanning: - + Scanning cover art (safe to cancel) @@ -8261,181 +8319,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy A hangeszköz foglalt - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. Kapjon <b>segítséget</b> a Mixxx Wikiből. - - - + + + <b>Exit</b> Mixxx. - + Retry Újra - + skin - - + + Reconfigure Újrakonfigurálás - + Help Súgó - - + + Exit Kilépés - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8506,43 +8564,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Zárolás - + Playlists Lejátszólista - + Unlock Feloldás - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. Néhány DJ az élő előadása előtt állít össze lejátszási listákat, míg mások szeretik inkább az előadásuk helyszínén összerakni a sajátjaikat. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist Új lejátszólista készítése @@ -8550,58 +8608,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Beolvasás - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8785,7 +8843,7 @@ Do you want to scan your library for cover files now? - + Encoder Kódoló @@ -9911,12 +9969,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10054,54 +10112,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists Lejátszólista - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10110,7 +10168,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox Rhythmbox (zenelejátszó) @@ -10161,34 +10219,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates Rekeszek - + Check for Serato databases (refresh) - + (loading) Serato @@ -10211,12 +10269,12 @@ Fully right: end of the effect period - + Unlock Feloldás - + Lock Zárolás @@ -11175,6 +11233,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12350,11 +12433,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12370,16 +12448,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12395,16 +12463,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12958,22 +13016,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13585,20 +13643,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13769,8 +13827,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Műfaj - - Folder + + Directory @@ -14013,155 +14071,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 Deck %1 - + Sampler %1 Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Új lejátszólista készítése - + Enter name for new playlist: Add meg az új lejátszólista nevét: - + New Playlist Új lejátszólista - - - + + + Playlist Creation Failed Lejátszólista készítése sikertelen - + A playlist by that name already exists. Egy lejátszólista ezzel a névvel már létezik. - + A playlist cannot have a blank name. A lejátszólista nem tartalmazhat üres helyet. - + An unknown error occurred while creating playlist: Ismeretlen hiba történt a lejátszólista készítésekor: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14169,7 +14232,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14206,128 +14269,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory Válasszon zene gyűjtemény könyvtárat - + controllers - + Cannot open database Az adatbázis megnyitása nem sikerült - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14403,7 +14393,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14460,62 +14450,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_hy.ts b/res/translations/mixxx_hy.ts index 7d732b377b7..162382d61e1 100644 --- a/res/translations/mixxx_hy.ts +++ b/res/translations/mixxx_hy.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates - + Remove Crate as Track Source - + Auto DJ Ավտո DJ - + Add Crate as Track Source @@ -43,24 +43,24 @@ BansheeFeature - + Banshee - - + + Error loading Banshee database - + Banshee database file not found at - + There was an error loading your Banshee database at @@ -69,32 +69,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Ավելացնել ավտո DJ-ի հերթին - + Add to Auto DJ Queue (top) Ավելացնել ավտո DJ-ի հերթին - + Add to Auto DJ Queue (replace) - + Import Playlist Փլեյլիստի իմպորտ - + Playlist Creation Failed Չհաջողվեց ստեղծել փլեյլիստ - + An unknown error occurred while creating playlist: Անհայտ սխալ ծագեց փլեյլիստի ստեղծման ժամանակ՝ @@ -102,144 +102,144 @@ BasePlaylistFeature - + New Playlist Նոր փլեյլիստ - + Add to Auto DJ Queue (bottom) Ավելացնել ավտո DJ-ի հերթին - - + + Create New Playlist - + Add to Auto DJ Queue (top) Ավելացնել ավտո DJ-ի հերթին - + Remove Ջնջել - + Rename Վերանվանել - + Lock Լոք - + Duplicate - - + + Import Playlist Փլեյլիստի իմպորտ - + Export Track Files - + Analyze entire Playlist - + Enter new name for playlist: - + Duplicate Playlist Կրկնօրինակել փլեյլիստը - - + + Enter name for new playlist: - - + + Export Playlist Փլեյլիստի էքսպորտ - + Add to Auto DJ Queue (replace) - + Rename Playlist Վերանվանել փլեյլիստը - - + + Renaming Playlist Failed Վերանվանումը ձախողվեց - - - + + + A playlist by that name already exists. Այս անունով փլեյլիստ արդեն կա - - - + + + A playlist cannot have a blank name. Փլեյլիստը չի կարող ունենալ դատարկ անուն - + _copy //: Appendix to default name when duplicating a playlist _copy - - - - - - + + + + + + Playlist Creation Failed Չհաջողվեց ստեղծել փլեյլիստ - - + + An unknown error occurred while creating playlist: Անհայտ սխալ ծագեց փլեյլիստի ստեղծման ժամանակ՝ - + M3U Playlist (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U Փլեյլիստ (*.m3u);;M3U8 Փլեյլիստ (*.m3u8);;PLS Փլեյլիստ (*.pls);;Տեքստային CSV (*.csv);;Կարդացվեղ տեքստ (*.txt) @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Չկարողացա բացել երգը @@ -512,7 +512,7 @@ - + Computer @@ -532,7 +532,7 @@ - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -645,12 +645,12 @@ - + Mixxx Library - + Could not load the following file because it is in use by Mixxx or another application. @@ -681,6 +681,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -863,13 +941,13 @@ - + Set to full volume - + Set to zero volume @@ -894,13 +972,13 @@ - + Headphone listen button - + Mute button @@ -916,25 +994,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -978,36 +1056,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1019,7 +1067,7 @@ - + Toggle keylock mode @@ -1029,199 +1077,199 @@ - + Vinyl Control - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 - + 1 - + 2 - + 4 - + 8 - + 16 - + 32 - + 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library @@ -1332,20 +1380,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1361,7 +1409,7 @@ - + Mute @@ -1372,7 +1420,7 @@ - + Headphone Listen @@ -1393,25 +1441,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1510,52 +1558,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1572,37 +1574,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1643,466 +1645,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) Ավելացնել ավտո DJ-ի հերթին - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) Ավելացնել ավտո DJ-ի հերթին - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix - + Toggle mix recording - + Effects - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next - + Switch to next effect - + Previous - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2127,93 +2129,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2270,806 +2272,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ Ավտո DJ - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3158,32 +3226,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3219,133 +3287,133 @@ CrateFeature - + Remove Ջնջել - - + + Create New Crate - + Rename Վերանվանել - - + + Lock Լոք - + Export Crate as Playlist - + Export Track Files - + Duplicate - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates - - + + Import Crate - + Export Crate - + Unlock - + An unknown error occurred while creating crate: - + Rename Crate - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U Փլեյլիստ (*.m3u);;M3U8 Փլեյլիստ (*.m3u8);;PLS Փլեյլիստ (*.pls);;Տեքստային CSV (*.csv);;Կարդացվեղ տեքստ (*.txt) - + Crates are a great way to help organize the music you want to DJ with. - + Crates let you organize your music however you'd like! - + A crate cannot have a blank name. - + A crate by that name already exists. @@ -3415,37 +3483,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4875,32 +4943,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin - + Tool tips - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4910,52 +4978,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off - + Library only - + Library and Skin @@ -5566,38 +5624,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5816,62 +5874,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6875,32 +6933,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7114,72 +7172,72 @@ Select from different types of displays for the waveform, which differ primarily - + Interface - + Waveforms - + Auto DJ Ավտո DJ - + Equalizers - + Decks - + Colors - + Crossfader - + Effects - + LV2 Plugins - + Recording - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7189,12 +7247,12 @@ Select from different types of displays for the waveform, which differ primarily - + Live Broadcasting - + Modplug Decoder @@ -7335,123 +7393,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Տարի - + Title Անուն - - + + Artist Արտիստ - - + + Album Ալբոմ - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7843,17 +7901,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7954,38 +8012,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7993,13 +8051,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8007,57 +8065,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8078,22 +8136,22 @@ support. LibraryFeature - + Import Playlist Փլեյլիստի իմպորտ - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Փլեյլիստներ (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8104,27 +8162,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8240,181 +8298,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry - + skin - - + + Reconfigure - + Help - - + + Exit - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8485,43 +8543,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Լոք - + Playlists - + Unlock - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist @@ -8529,58 +8587,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8764,7 +8822,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9890,12 +9948,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10033,54 +10091,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10089,7 +10147,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10140,34 +10198,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates - + Check for Serato databases (refresh) - + (loading) Serato @@ -10190,12 +10248,12 @@ Fully right: end of the effect period - + Unlock - + Lock Լոք @@ -11154,6 +11212,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12329,11 +12412,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12349,16 +12427,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12374,16 +12442,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12937,22 +12995,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13564,20 +13622,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13748,8 +13806,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Ժանր - - Folder + + Directory @@ -13992,155 +14050,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 - + Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist - + Enter name for new playlist: - + New Playlist Նոր փլեյլիստ - - - + + + Playlist Creation Failed Չհաջողվեց ստեղծել փլեյլիստ - + A playlist by that name already exists. Այս անունով փլեյլիստ արդեն կա - + A playlist cannot have a blank name. Փլեյլիստը չի կարող ունենալ դատարկ անուն - + An unknown error occurred while creating playlist: Անհայտ սխալ ծագեց փլեյլիստի ստեղծման ժամանակ՝ - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14148,7 +14211,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14185,128 +14248,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14382,7 +14372,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14439,62 +14429,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_id.qm b/res/translations/mixxx_id.qm index 023c9f520dc850679bf9dbb0de90b5eceb77f9ac..a4aeeb24e4b54072eed5f933470588195e0729e2 100644 GIT binary patch delta 3052 zcmXZed0dX^8VB%S@B2RQzD$ag3Z*((Qd;emQrZ;lDJ5}QwW-Xgmn<#9bYhMq3?(xO zBaURoSc)idXiVlq<1>?wV;SQxGoO=&IahPdU*G3_-e$>jix$hhlU9J~>Z0r;b zz#7n0lQux`HFoJeHaU@W0xas;wBl-CTdVkWfQuEKy-LzuOXC2K5jO*KMr^6xZmG{$ z1^5L6IUCr*WU>JW9r;bhdf51Gstr2k@q7Vya)2NKm-jnEEl5gr@%&YNY*NWjE^B{z5-1A36g*L0*jtN z@^e2u@DQ8Q&gM!XxYhxRL+rdhHv18qR|p}J?ho~06J!u-OZ33#+am`w(*iap6hadX zD$x_d#T39u#g5y@F8+kg8f5d`AqbaY{5-T^?3}KR$$t73SU?QoIwe87zdZlZ-K}c@VEbp zo|DOr5wQuMv1v!x^ftDj8o`mBTYwK2deipj7PjQ&ACjqTvcvgghI~4{CvBAvm{{;x}b2y4F*k}g(7@xx4l}959M_0_>Q9re#J=CB(3*cL4#=ShFOL-mRMC58 zEER|RIiMQxs%*Up&9G0L7fKhTNX5m8-83>A@lh%tOu8yQdO4A5&_{gZohOC9UHmMb zLcY>cVqHfWc1oAbNT-1&S4#Bez_q~auX1MUCVF=cGJ4V&T07TQXxPOP8^J(Sey zvuH%6T1n%vGGMW(2)R2c#D@Js`AK@vs2En?DpW1(1k^g#Gnowo z8{5X}p9xj|u5_KBo)0{C342P5fen$uo@OdK!+oq-CY!xfsQ0G-OC|^h{b&Yj%-B4M z@OjtQKu98+*u>`62%RH+&MTkI8O7!`2|a#qfWH?Cy|FITH%-qAckfZ>4zUpKd4vGs zEOyQ$mB#&pUK3y~EeP@grW;AO&sso>=m{HJDBUy4f%^BS(nDtwsP>;ouWCv#1uiAh zt{nPfTBWqR<|VbU9%;`#T6OvY>A*-Prl(1t22c$yA6v6sW;?5Rn#}&YOLV%A-C!!4 zem4b>&1dHs%NB@eJ|D!&!qaKdt_YWHGapZt*HiP8%u?^#COiL-qOj_BSx09dpqkH? z#K@lSr0Ki=A$RStrs?*xsb9+dy?m))!TLOt`zKrjT;1hiN0Ncn{_@yhdY#8ndG=f} zb^lxPP5Zp5M>@$Xl^5uH86@97_dcC3lpia&M$KrcvAm_-g_^9Zyv^|`P3yS4+nAaS z7O>;Dv%W)Ys-Z$v{+QyP#EyB!hWt}ueo_mV2P*;|(ENRp6~U|D)9+3;q)!pkn@204 zT9N#m?$3=Mk(yEdTSZ1j6BVExYxyCblq6DNh~*j5A0*9mHsr>Zufg zMQfCrDO3ro?36CoS5nvdTDfu#g;KYlHJQZDtoqA-Wx>fP+9mw1+;jI3RZ={gx`@r+ zt*pH)0Yr~k)poYzo$^3Er8X{Gc}zc-)}&j7^4uLNAuAg;=NoqYkn+4gl?*;-C5^1* zKK4U*WzWzinu(Kgpu>`S#7*U|S15({MJmDjQ(%0TYO_{NTZ=YTSv`e*)NOX$N;Yew zO25mHHfT`?RfiwYg}(M|Um8yoT%Jm~Jf*Q%MmcpGr?EIbjoP%6X7aLDipX7! z!wIUDm;uegEp%T>gl5s=4nX>d&ECSU*B{n|lu^iRyELKOD3q%oY0~X`X(Q^bsrDQI zBnoz2gI20)q!&Hc&Mqhe!t1p@tLggDncAowA=E|dv~evofw3>OTRbS|%b#iY4pMDI zcxk_IJ5684vDyoRRJ2od+Upx9(Li#vcg$#&=)>M<2b?!h6}Pa$UiPDWoh;xvZ5rHk z(;KNa?D}+$_A{vsH|v}>In$=9Qs){mQZwgtv$yV`)TOe4huL5cU0O2@(9Vr5KCL@Y zLZuY@QrFl^DYq-uwYy6ohpd$1SQ=XMV#$owFVzE9t#*#4LTk6{1YK*OuPpHYbWTto delta 3338 zcmb`}XINBM8VB${GjpexC@L1D*gGI#4XZSWMeGgf*LfItXWHvjc(Smm`x{c%>KtWPo8I=XFu+Tnctl|_ug~Pd*1V&d!|}- z<#pA@b^-YSx&xL?v?nlWlo%f)X5OFyK-X$9=le~Oy}G6R3kd4Qv*#%9in|I7bNO%J zc^cny(>gC_-W?z+8YuipoPU$<0VcbC(0f!!%nzMlK zKcV?!BrqWrn#UY)YG*NPuvkBl^iyuRo#``D#NlbM@*;?)d+Fy1Z z0EsPPVI!2cz68>bLpfy!+)ZMa*Tl(IF+W)>IRxd&QeGD-cDW?xLCha0E|>(}oGU<& zx1gJU4d@jL-F9aRz{r^W5u?ArwkQ)2d>ebtG9&c)sJXQjn0XE-Rxo}8 z)}e9XcMR;;Xo}6F zyZI%YX2Y+z4NW}Hj%{`eNq&PlAMZB3hW9Pgx;dZp0tV)*VpkiOddF2c9#&o-s#^Xu z7#P*4+7{pj{Na$Q=2JeW?@ra}qpeJ>VIQc@oq7cbi&9Sg(%!%nk&)smB*E z!f993<15%sV2(P*)uGWQ_3V772S@lwT@=d;W|ylMrCngpLe%@1KIl1Bz3)sK{aAhe zm(dJ;o%+E{hTOhI(|tQK$G^-D@8d!f4JFFCQtHr#7;`|+& zibJ#5p?J+!r-MCOwnDS_z)B!?lV;x8T~bWebmagsC;niAqcP96^r{aw5+V)$A z0b{(iLn}sdb#>H6<#B3lw?&UM(XmA=Yokqinaxeut}UGy3i$Wet{V{!%t#fJ9&4-G z4q_eOrQQ8r3c?Zet9Jic?r7c3+WoC=K%XPpa~94-@D^=j0WTc1TYI6hh2`z8_Tnd8 zjf-2fcU&{%zf^mFJaaQ`V`Yi1m$Q7YuJ2z@^YkNe$tIoORXd;?C621lg{wHe=Mr^s zIb6&c7jupQjJ5@6IaI!~X05IYIidp^;2+h+}5y$EN(551OQ({ALCpbV{EX&5n%l z(dUOS#oaIIm%SFosv4kQV?4>!uh;Jg`IP79=?|3hzPJkg!MY$;K}{4GW%@}?m=>nVRXh_Mq5 zGn$Lopuv#wkoOl|7fTBbxw&sKV|$C8o{Dqb#IntX>V)>q+`vv7>N3A{y)PK*&%eu= zyI(ob;N@J{-Ee>BJ1n=Jh9}1k1O1GKCm)sYva3dY#$BLYu9&#OXdb|Uj{nMN>7T+^ zgq_Bqrc73|zZf&0XTWSbM2{ZgNX>7?8cPo+@U5ZPSao$bGi#BQ@`?H*oej80n*e<}k(e#ql%-Z8`T3O9Fw!JKN$rR_dnl`ry;7aIddgB(a8?#HC zcw3AqFul3=Z@}Ca#Kj#<$K3n!P3Fckof!S1>4PJ!-0%`j7wf*|iuqE^QJLTXRs$PsjGu`VCRnN6Q%-FBBLFztl(-62Q0LHb)y z-em?3>}_pY(t{l-uwLoRl%JYoy%V??a62d}+r)*BY`XCexe>?M{Pr>f`lQ?Z`wj;R zy4wPl1@cWmWec7V?@Emmwvj8=bMC$nqq~SPhi!9e*umasMdtw9&T_8N-D=XLTQ&i^2 R_^t1izWut?z8|ie@E@DKkC*@e diff --git a/res/translations/mixxx_id.ts b/res/translations/mixxx_id.ts index e096542aba7..b04ac2d8b3d 100644 --- a/res/translations/mixxx_id.ts +++ b/res/translations/mixxx_id.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Peti - + Remove Crate as Track Source - + Auto DJ Auto DJ - + Add Crate as Track Source @@ -43,24 +43,24 @@ BansheeFeature - + Banshee - - + + Error loading Banshee database - + Banshee database file not found at - + There was an error loading your Banshee database at @@ -69,32 +69,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Tambahkan ke Auto DJ (bawah) - + Add to Auto DJ Queue (top) Tambahkan ke Auto DJ (atas) - + Add to Auto DJ Queue (replace) - + Import Playlist Impor Playlist - + Playlist Creation Failed Pembuatan Playlist Tidak Berhasil - + An unknown error occurred while creating playlist: Kesalahan yang tidak diketahui terjadi saat membuat playlist: @@ -102,144 +102,144 @@ BasePlaylistFeature - + New Playlist Playlist Baru - + Add to Auto DJ Queue (bottom) Tambahkan ke Auto DJ (bawah) - - + + Create New Playlist Buat Playlist Baru - + Add to Auto DJ Queue (top) Tambahkan ke Auto DJ (atas) - + Remove Hapus - + Rename Ganti Nama - + Lock Kunci - + Duplicate Duplikasi - - + + Import Playlist Impor Playlist - + Export Track Files - + Analyze entire Playlist Analisa Seluruh Playlist - + Enter new name for playlist: Ganti nama baru untuk Playlist ini: - + Duplicate Playlist Duplikasi Playlist - - + + Enter name for new playlist: Masukkan nama baru untuk Playlist ini: - - + + Export Playlist Ekspor Playlist - + Add to Auto DJ Queue (replace) - + Rename Playlist Ganti Nama Playlist - - + + Renaming Playlist Failed Ganti Nama Playlist Gagal - - - + + + A playlist by that name already exists. Nama playlist tersebut sudah digunakan - - - + + + A playlist cannot have a blank name. Playlist tidak bisa memiliki nama kosong - + _copy //: Appendix to default name when duplicating a playlist _salin - - - - - - + + + + + + Playlist Creation Failed Pembuatan Playlist Tidak Berhasil - - + + An unknown error occurred while creating playlist: Kesalahan yang tidak diketahui terjadi saat membuat playlist: - + M3U Playlist (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Playlist M3U (*.m3u);;Playlist M3U8 (*.m3u8);;Playlist PLS (*.pls);;Teks CSV (*.csv);;Teks Terbaca (*.txt) @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Tidak dapat memuat lagu @@ -512,7 +512,7 @@ - + Computer @@ -532,7 +532,7 @@ Pindai - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -645,12 +645,12 @@ File Dibuat - + Mixxx Library Library Mixxx - + Could not load the following file because it is in use by Mixxx or another application. Tidak dapat memuat file karena sedang digunakan oleh Mixxx atau aplikasi lain. @@ -681,6 +681,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -863,13 +941,13 @@ - + Set to full volume buat jadi volume maksimal - + Set to zero volume buat jadi tidak ada volume @@ -894,13 +972,13 @@ - + Headphone listen button Tombol dengar headphone - + Mute button Tombol diam @@ -916,25 +994,25 @@ - + Mix orientation (e.g. left, right, center) Orientasi mix (misalnya kiri, tengah, kanan) - + Set mix orientation to left Jadikan orientasi mix ke kiri - + Set mix orientation to center Jadikan orientasi mix ke tengah - + Set mix orientation to right Jadikan orientasi mix ke kanan @@ -978,36 +1056,6 @@ Toggle quantize mode Mode pengalihan quantisasi - - - Increase internal master BPM by 1 - Naikkan BPM master internal jadi 1 - - - - Decrease internal master BPM by 1 - Turunkan BPM master internal jadi 1 - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - Aktifkan Master sync - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1019,7 +1067,7 @@ - + Toggle keylock mode Aktifkan mode Keylock @@ -1029,199 +1077,199 @@ Equalizer - + Vinyl Control Kontrol Vinil - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) Pengalihan mode penanda kontrol-vinil (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) Pengalihan mode kontrol-vinil (ABS/REL/CONST) - + Pass through external audio into the internal mixer Sambungkan Audio eksternal ke Mixer internal - + Cues Penanda - + Cue button Tombol penanda - + Set cue point Atur titik penanda - + Go to cue point Lompat ke titik penanda - + Go to cue point and play Lompat ke titik penanda dan play - + Go to cue point and stop Ke titik penanda dan stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues Penanda Utama - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 Hapus penanda tepat %1 - + Set hotcue %1 - + Jump to hotcue %1 Loncat ke penanda tepat %1 - + Jump to hotcue %1 and stop Loncat ke penanda tepat %1 dan stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping Putaran - + Loop In button Tombol Masuk Putaran - + Loop Out button Tombol Keluar Putaran - + Loop Exit button - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 - + 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop Buat %1-putaran ketukan - + Create temporary %1-beat loop roll - + Library Pustaka @@ -1332,20 +1380,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1361,7 +1409,7 @@ - + Mute @@ -1372,7 +1420,7 @@ - + Headphone Listen @@ -1393,25 +1441,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1510,52 +1558,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1572,37 +1574,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1643,466 +1645,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) Tambahkan ke Auto DJ (bawah) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) Tambahkan ke Auto DJ (atas) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track Muat lagu yang dipilih - + Load selected track and play Buka trek terpilih dan mainkan - - + + Record Mix - + Toggle mix recording - + Effects Efek - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next - + Switch to next effect - + Previous - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob Tombol tambah - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2127,93 +2129,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2270,806 +2272,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off Mikrofon on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ Auto DJ - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface Antarmuka Pengguna - + Samplers Show/Hide - + Show/hide the sampler section Tampilkan/sembunyikan seksi sampler/contoh - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section Tampil/sembunyikan bagian kontrol vinil - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget Tampil/sembunyikan bagian widget vinil - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3158,32 +3226,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3219,133 +3287,133 @@ CrateFeature - + Remove Hapus - - + + Create New Crate - + Rename Ganti Nama - - + + Lock Kunci - + Export Crate as Playlist - + Export Track Files - + Duplicate Duplikasi - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates Peti - - + + Import Crate Impor Peti - + Export Crate Ekspor Peti - + Unlock Buka Kunci - + An unknown error occurred while creating crate: Kesalahan tidak diketahui terjadi saat membuat peti: - + Rename Crate Ubah nama peti - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed Penamaan Peti Gagal - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Playlist M3U (*.m3u);;Playlist M3U8 (*.m3u8);;Playlist PLS (*.pls);;Teks CSV (*.csv);;Teks Terbaca (*.txt) - + Crates are a great way to help organize the music you want to DJ with. Peti merupakan cara yang baik membantu mengatur musik yang akan di mix. - + Crates let you organize your music however you'd like! Peti memberi kebebasan Anda mengatur musik seperti yang diinginkan! - + A crate cannot have a blank name. Sebuah peti tidak dapat memiliki nama kosong - + A crate by that name already exists. Sebuah peti dengan nama tersebut sudah ada @@ -3415,37 +3483,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4875,32 +4943,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin - + Tool tips - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale Locale @@ -4910,52 +4978,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off Mati - + Library only - + Library and Skin @@ -5566,38 +5624,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5816,62 +5874,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added Berkas Musik Ditambahkan - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan Pindai - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6875,32 +6933,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7114,72 +7172,72 @@ Select from different types of displays for the waveform, which differ primarily Pustaka - + Interface - + Waveforms - + Auto DJ Auto DJ - + Equalizers Equalizer - + Decks - + Colors - + Crossfader Crossfader - + Effects Efek - + LV2 Plugins - + Recording - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7189,12 +7247,12 @@ Select from different types of displays for the waveform, which differ primarily Kontrol Vinil - + Live Broadcasting - + Modplug Decoder @@ -7335,123 +7393,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Tahun - + Title Judul - - + + Artist Artis - - + + Album Album - + Album Artist Artis dari Album - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7843,17 +7901,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7954,38 +8012,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7993,13 +8051,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8007,57 +8065,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8078,22 +8136,22 @@ support. LibraryFeature - + Import Playlist Impor Playlist - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Berkas Daftar putar (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8104,27 +8162,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8240,181 +8298,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry - + skin - - + + Reconfigure - + Help - - + + Exit - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8485,43 +8543,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Kunci - + Playlists - + Unlock Buka Kunci - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist Buat Playlist Baru @@ -8529,58 +8587,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Pindai - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8764,7 +8822,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9890,12 +9948,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10033,54 +10091,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10089,7 +10147,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10140,34 +10198,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates Peti - + Check for Serato databases (refresh) - + (loading) Serato @@ -10190,12 +10248,12 @@ Fully right: end of the effect period - + Unlock Buka Kunci - + Lock Kunci @@ -11154,6 +11212,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12329,11 +12412,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12349,16 +12427,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12374,16 +12442,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12937,22 +12995,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13564,20 +13622,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13748,8 +13806,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Aliran - - Folder + + Directory @@ -13992,155 +14050,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 Deck %1 - + Sampler %1 Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Buat Playlist Baru - + Enter name for new playlist: Masukkan nama baru untuk Playlist ini: - + New Playlist Playlist Baru - - - + + + Playlist Creation Failed Pembuatan Playlist Tidak Berhasil - + A playlist by that name already exists. Nama playlist tersebut sudah digunakan - + A playlist cannot have a blank name. Playlist tidak bisa memiliki nama kosong - + An unknown error occurred while creating playlist: Kesalahan yang tidak diketahui terjadi saat membuat playlist: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14148,7 +14211,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14185,128 +14248,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory Pilih petunjuk pustaka musik. - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14382,7 +14372,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14439,62 +14429,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_is.ts b/res/translations/mixxx_is.ts index 459692ba119..515f0c2b9a8 100644 --- a/res/translations/mixxx_is.ts +++ b/res/translations/mixxx_is.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Kassar - + Remove Crate as Track Source - + Auto DJ Sjálfvirk hljóðblöndun - + Add Crate as Track Source @@ -43,24 +43,24 @@ BansheeFeature - + Banshee - - + + Error loading Banshee database - + Banshee database file not found at - + There was an error loading your Banshee database at @@ -69,32 +69,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) - + Add to Auto DJ Queue (top) - + Add to Auto DJ Queue (replace) - + Import Playlist Innfæra lagalista - + Playlist Creation Failed - + An unknown error occurred while creating playlist: @@ -102,144 +102,144 @@ BasePlaylistFeature - + New Playlist - + Add to Auto DJ Queue (bottom) - - + + Create New Playlist - + Add to Auto DJ Queue (top) - + Remove Fjarlægja - + Rename Endurnefna - + Lock Læsa - + Duplicate - - + + Import Playlist Innfæra lagalista - + Export Track Files - + Analyze entire Playlist - + Enter new name for playlist: - + Duplicate Playlist - - + + Enter name for new playlist: - - + + Export Playlist - + Add to Auto DJ Queue (replace) - + Rename Playlist - - + + Renaming Playlist Failed - - - + + + A playlist by that name already exists. - - - + + + A playlist cannot have a blank name. - + _copy //: Appendix to default name when duplicating a playlist - - - - - - + + + + + + Playlist Creation Failed - - + + An unknown error occurred while creating playlist: - + M3U Playlist (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Gat ekki opnað lag. @@ -512,7 +512,7 @@ - + Computer @@ -532,7 +532,7 @@ - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -645,12 +645,12 @@ - + Mixxx Library - + Could not load the following file because it is in use by Mixxx or another application. @@ -681,6 +681,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -863,13 +941,13 @@ - + Set to full volume - + Set to zero volume @@ -894,13 +972,13 @@ - + Headphone listen button - + Mute button @@ -916,25 +994,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -978,36 +1056,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1019,7 +1067,7 @@ - + Toggle keylock mode @@ -1029,199 +1077,199 @@ Tónjafnarar - + Vinyl Control - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 - + 1 1 - + 2 - + 4 - + 8 - + 16 - + 32 - + 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library Safn @@ -1332,20 +1380,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1361,7 +1409,7 @@ - + Mute @@ -1372,7 +1420,7 @@ - + Headphone Listen @@ -1393,25 +1441,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1510,52 +1558,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1572,37 +1574,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1643,466 +1645,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix - + Toggle mix recording - + Effects - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next Næsta - + Switch to next effect - + Previous Fyrri - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2127,93 +2129,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2270,806 +2272,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ Sjálfvirk hljóðblöndun - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3158,32 +3226,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3219,133 +3287,133 @@ CrateFeature - + Remove Fjarlægja - - + + Create New Crate - + Rename Endurnefna - - + + Lock Læsa - + Export Crate as Playlist - + Export Track Files - + Duplicate - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates Kassar - - + + Import Crate - + Export Crate - + Unlock - + An unknown error occurred while creating crate: Óþekkt villa kom upp við gerð nýs kassa: - + Rename Crate Endurnefna kassa - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed Ekki tókst að endurnefna kassa - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) - + Crates are a great way to help organize the music you want to DJ with. - + Crates let you organize your music however you'd like! - + A crate cannot have a blank name. Kassi verður að hafa heiti - + A crate by that name already exists. Kassi með þessu nafni er til fyrir @@ -3415,37 +3483,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4875,32 +4943,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin Þema - + Tool tips Tóla ábendingar - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4910,52 +4978,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off Af - + Library only - + Library and Skin @@ -5566,38 +5624,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5816,62 +5874,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6875,32 +6933,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7114,72 +7172,72 @@ Select from different types of displays for the waveform, which differ primarily Safn - + Interface Viðmót - + Waveforms - + Auto DJ Sjálfvirk hljóðblöndun - + Equalizers Tónjafnarar - + Decks - + Colors - + Crossfader Krossblandari - + Effects - + LV2 Plugins - + Recording Upptaka - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7189,12 +7247,12 @@ Select from different types of displays for the waveform, which differ primarily - + Live Broadcasting Lifandi útsending - + Modplug Decoder @@ -7335,123 +7393,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Ár - + Title Heiti - - + + Artist Flytjandi - - + + Album Plata - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply &Virkja - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7843,17 +7901,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7954,38 +8012,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7993,13 +8051,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8007,57 +8065,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8078,22 +8136,22 @@ support. LibraryFeature - + Import Playlist Innfæra lagalista - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8104,27 +8162,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8240,181 +8298,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry - + skin - - + + Reconfigure - + Help - - + + Exit - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8485,43 +8543,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Læsa - + Playlists - + Unlock - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist @@ -8529,58 +8587,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8764,7 +8822,7 @@ Do you want to scan your library for cover files now? - + Encoder Kóðari @@ -9890,12 +9948,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10033,54 +10091,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10089,7 +10147,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10140,34 +10198,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates Kassar - + Check for Serato databases (refresh) - + (loading) Serato @@ -10190,12 +10248,12 @@ Fully right: end of the effect period - + Unlock - + Lock Læsa @@ -11154,6 +11212,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12329,11 +12412,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12349,16 +12427,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12374,16 +12442,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12937,22 +12995,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13564,20 +13622,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13748,8 +13806,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Stíll - - Folder + + Directory @@ -13992,155 +14050,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 - + Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist - + Enter name for new playlist: - + New Playlist - - - + + + Playlist Creation Failed - + A playlist by that name already exists. - + A playlist cannot have a blank name. - + An unknown error occurred while creating playlist: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14148,7 +14211,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14185,128 +14248,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory Veldu möppu sem inniheldur lagasafn - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14382,7 +14372,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14439,62 +14429,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_it.qm b/res/translations/mixxx_it.qm index 582df9dc5833f54b3b186e28b6214b1bc09248a3..8f8b34b89d0dc71f927bb8e0be3360958cbb7dd2 100644 GIT binary patch delta 14257 zcmXAwcR)_xAICrE-0?j3nJU?`%9g#!OjgNO5h7dm$mpS=GBPp}vWkd??2(boej%HX zWc0Q7&hOoQ{(9YeyU)Gne9mW|+oPk#B|D6(O1JJvL^X(P%YaTqj}lcfdwVNaHUJwD zvup<&6V>un$#!_Jc6YEeamHC^Vol3|UBEM7S7Oa~fUd+^R0g{dYt{qb{$GgO_96@QFUExf zL<1nE0}$oF3&ad#i3VYfCKgeJgw7art#A-ZTI&@FU4Iet>SZCp4QuB$kA(1&HEcxUEFH1bSQ3*q z5!dFc6!iZCGl^U}l9+OVxDr6(VOOHeIpAZQuP5=?dt#>@RdQVi60eEGo}MT1x+}4A zStQ=Ypk0TnCPNNO7di7p|jTOTaRdzH*mhNSMziOScs(kVzKvt)Eo4|uct zB=t@p@~flC%T9<=AYJc0VIF!Ih+> z5k!mHk(An;c!f=17osJODtYEsz1y?N1{=QUoiyyJ;yQzAy#X$V#2y(Kl zgDoyp$qy{2+RdPy3sz9=mQczCr>J&sXz@RV>O!e_{z|HQ-3dHRb)h@_X&b7CrDE|e zR_;Ga^#+ELKp-T_Z+KF@YZr+Zx>5bE&xxuJqz0Fp5HtCavt`gN;^yb%Jj4y$P0q2S zU|Kz>;qd_CN0w5faz}}Rhf!0iPBivCH7gmIS9xj{3ObIb<|VGya*3LkSdUjOwH#Ao zZhfd#ZD(THW2w!81Y)lXtb7}6<@Rmb?- zS*T|Vi2mFe>N#lu%%(2&TnfLQ7D+uXCc>^;Q*S-Yud}O4KE_PF-HyS|f0KJ96Y)mB z$lW^=uJtLoXN3{j|Fg3CS}WhKP|4D>RSMD|@>qWcX6!{C+xj9PSuRr_DIIn{&B`fW zRz?Jq=iu|iLS|VRkx8CsqKKcJL7pEr68*KIeoN00`{7Uhjz$sXng7Z^aQG^p}oCRX_;4 z2x5XC&(X0Z7Wl0pN9g#tXArF;oo(nsl)I5G4sJ!m{ZXNna{Na7NS3QGh`(Z1S&QYENB-?W|Jze08RMU-~`8yC7 z-_h%Sdx-pl>9u7Z*5d14dVSK4*w-%fX_^nQ<(uj2n(f4$JJQ!@5MkTj^xfz}JYhcl zDS2S`K>Bm;9Z{AO6@LoA1gg-#Lr6hu5MxjBh>z>XgvP$aE;ut`CbET7c1%0D8u5mG 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«ouW!@A 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%0D#|NAGbex4C=xyqA4Ef9UK-1tT>{{54 zG7VWDi}qQ{^^R&dKDnA68y1!!-2XWAwWInMOS8flg0t)94XNXvEYt zjh$vkEU<=Y{?i=dE{UeaECao+LQ{z41gtn{w<$C*lK7n;rm$Al1KeBU0PfgA;H&ld9fpmrJU)1kQhDjG38e9$G*!k(;a85 z+~KRHhb3EV1=CD<7m%$__A@(1gzYBhUs5L z&|{mKN_zRROU%4EL|=BUnWw@gcw@7sXUXn_hgo|OM%ePPS!X$XpLor=X1(qldQmUT zdekX&y^GmU7>4gCGR?-5m|@RDX5(k%xKm!3%_ZmEuc+jcY|W)6Lvrg{n{9?73vk|V zF549os?pF~zS4bc3fwSPEGovQccabK=0p*1eZgFR4s_(!G;_lQgcA2@W=o?wt%>Dq zHa8AwihUNz+~g=E&|PP4J`gu_*kW!`8wJ$NpXS!Ju!c!z&24HU$}gX4ZaY2{z4tff zwo9UraGkgEfnwz&$=o3t%1Ld_ofjP>wy2AFbi49sQFk)?pX)&E(Ma?7lmVy;`dQQi zL0Dm)kQ4%uK2#|fmzt+YP|62M<|#FLBfV&Ao_{cacqcFOvf+9X%04%*UWTZ=u&;T2 zPt15TMT%qchxm;3-1Dm(S+(l03u3(|oASXIRBF^YNATp zTKU$Tu~xwr_)zm{XRLA5F7xU8{@CIEVLts0&%657e10(`cIuq@!URZkSReD{iczQv za#iw2->kGezF|Fh(pIHVzLxpwa8Fd>m(1C=ImGF+`Sws>VnQK%fiRQeDjChqX=KK*jA5zo&Ed4XlnS66$lR3mPzkWsV^|KG4Y&9dOw;+H;9EIzF&N zbmzzp>AK|&T1J1(JefW+Ym=1T*aj_4D4Wd9?( P|L_W>j=VMs(>?wVXlEHx delta 16322 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 AutoDJFeature - + Crates Ceste - + Remove Crate as Track Source Rimuovi Cesto come sorgente tracce - + Auto DJ Auto DJ - + Add Crate as Track Source Aggiungi Cesto come sorgente tracce @@ -43,25 +43,25 @@ BansheeFeature - + Banshee Banshee - - + + Error loading Banshee database Errore nel caricamento della libreria Banshee - + Banshee database file not found at File del database Banshee non trovato in - + There was an error loading your Banshee database at C'è stato un errore nel caricamento del database Banshee in @@ -71,32 +71,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Aggiungi a fine coda in «Auto DJ» - + Add to Auto DJ Queue (top) Aggiungi alla coda in modalità "Auto DJ" (in cima) - + Add to Auto DJ Queue (replace) - + Import Playlist Importa Playlist - + Playlist Creation Failed Creazione della playlist non riuscita - + An unknown error occurred while creating playlist: Errore sconosciuto durante la creazione della playlist: @@ -104,144 +104,144 @@ BasePlaylistFeature - + New Playlist Nuova Playlist - + Add to Auto DJ Queue (bottom) Aggiungi a fine coda in «Auto DJ» - - + + Create New Playlist Crea Nuova Playlist - + Add to Auto DJ Queue (top) Aggiungi alla coda in modalità "Auto DJ" (in cima) - + Remove Rimuovi - + Rename Rinomina - + Lock Bloccato - + Duplicate Duplica - - + + Import Playlist Importa Playlist - + Export Track Files Esporta Tracce - + Analyze entire Playlist Analizza l'intera Playlist - + Enter new name for playlist: Inserisci il nuovo nome per la playlist: - + Duplicate Playlist Duplica Playlist - - + + Enter name for new playlist: Inserisci il nome per la playlist: - - + + Export Playlist Esporta Playlist - + Add to Auto DJ Queue (replace) - + Rename Playlist Rinomina Playlist - - + + Renaming Playlist Failed Errore nel rinominare la Playlist - - - + + + A playlist by that name already exists. Esiste già una playlist con questo nome. - - - + + + A playlist cannot have a blank name. Il nome della playlist non può essere vuoto. - + _copy //: Appendix to default name when duplicating a playlist _copy - - - - - - + + + + + + Playlist Creation Failed Creazione della playlist non riuscita - - + + An unknown error occurred while creating playlist: Errore sconosciuto durante la creazione della playlist: - + M3U Playlist (*.m3u) Playlist M3U (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Playlist M3U (*.m3u);;Playlist M3U8 (*.m3u8);;Playlist PLS (*.pls);;Testo CSV (*.csv);;File testuale (*.txt) @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Impossibile caricare la traccia @@ -514,7 +514,7 @@ - + Computer @@ -534,7 +534,7 @@ Scansiona - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -647,12 +647,12 @@ File Creato - + Mixxx Library Libreria Mixxx - + Could not load the following file because it is in use by Mixxx or another application. Non è possibile caricare il seguente file perchè è in uso da parte di Mixxx o altra applicazione. @@ -683,6 +683,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -865,13 +943,13 @@ - + Set to full volume Imposta a volume massimo - + Set to zero volume Imposta a volume zero @@ -896,13 +974,13 @@ Bottone riproduci al contrario (censura) - + Headphone listen button Bottone preascolto cuffia - + Mute button Bottone Muto @@ -918,25 +996,25 @@ - + Mix orientation (e.g. left, right, center) Orientamento mix (ad esempio a sinistra, a destra, centrale) - + Set mix orientation to left Imposta orientamento del mix a sinistra - + Set mix orientation to center Imposta orientamento mix centrale - + Set mix orientation to right Imposta orientamento mix a destra @@ -980,36 +1058,6 @@ Toggle quantize mode Attiva quantizzazione - - - Increase internal master BPM by 1 - Aumenta BPM interno principale di 1 - - - - Decrease internal master BPM by 1 - Diminuisci BPM interno principale di 1 - - - - Increase internal master BPM by 0.1 - Aumenta BPM interno principale di 0.1 - - - - Decrease internal master BPM by 0.1 - Diminuisci BPM interno principale di 0.1 - - - - Toggle sync master - Abilita sync master - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - Sync mode a tre stati (OFF, FOLLOWER, MASTER) - One-time beat sync (tempo only) @@ -1021,7 +1069,7 @@ Beat sync ad un tempo (solo fase) - + Toggle keylock mode Attiva modalità keylock @@ -1031,199 +1079,199 @@ Equalizzatori - + Vinyl Control Controllo Vinile - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) Abilita/Disabilita la modalità di coda del controllo vinile - + Toggle vinyl-control mode (ABS/REL/CONST) Abilita/Disabilita la modalità controllo vinile (Assoluta/Relativa/Costante) - + Pass through external audio into the internal mixer Inoltro diretto da audio esterno nel mixer interno - + Cues Cue - + Cue button Bottone Cue - + Set cue point Setta punto di Cue - + Go to cue point Vai al punto di Cue - + Go to cue point and play Vai al punto di Cue e riproduci - + Go to cue point and stop Vai al punto di Cue e Stop - + Preview from cue point Anteprima dal punto di cue - + Cue button (CDJ mode) Bottone Cue (Modalità CDJ) - + Stutter cue Cue a singhiozzo - + Hotcues Hotcue - + Set, preview from or jump to hotcue %1 Imposta, anteprima da o salta a hotcue %1 - + Clear hotcue %1 Cancella hotcue %1 - + Set hotcue %1 Imposta hotcue %1 - + Jump to hotcue %1 Salta a hotcue %1 - + Jump to hotcue %1 and stop Salta a hotcue %1 e stop - + Jump to hotcue %1 and play Salta a hotcue %1 e riproduci - + Preview from hotcue %1 Anteprima da hotcue %1 - - + + Hotcue %1 Hotcue %1 - + Looping Ripetizione - + Loop In button Pulsante di Loop In - + Loop Out button Pulsante di Loop Out - + Loop Exit button Pulsante di uscita dal loop - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 32 - + 64 64 - + Move loop forward by %1 beats Sposta loop in avanti di %1 battute - + Move loop backward by %1 beats Sposta loop indietro di %1 battute - + Create %1-beat loop Crea un loop di %1 battute - + Create temporary %1-beat loop roll Crea un loop roll temporaneo di %1 beat - + Library Libreria @@ -1334,20 +1382,20 @@ - - + + Volume Fader Fader Volume - + Full Volume Volume Massimo - + Zero Volume Volume Zero @@ -1363,7 +1411,7 @@ - + Mute Muto @@ -1374,7 +1422,7 @@ - + Headphone Listen Preascolto cuffia @@ -1395,25 +1443,25 @@ - + Orientation Orientamento - + Orient Left Orienta a Sinistra - + Orient Center Orienta al Centro - + Orient Right Orienta a Destra @@ -1512,52 +1560,6 @@ Sync Sincronizza - - - Sync Mode - Modalità sincronizza - - - - Internal Sync Master - Master Sync Interno - - - - Toggle Internal Sync Master - Beat S - - - - - Internal Master BPM - BPM interno principale - - - - Internal Master BPM +1 - BPM interno principale +1 - - - - Internal Master BPM -1 - BPM interno principale -1 - - - - Internal Master BPM +0.1 - BPM interno principale +0.1 - - - - Internal Master BPM -0.1 - BPM interno principale -0.1 - - - - Sync Master - Sincronizzazione Principale - Beat Sync One-Shot @@ -1574,37 +1576,37 @@ Sync Fase Un-Tocco - + Pitch control (does not affect tempo), center is original pitch Controllo Pitch (non influenza il tempo), Centro è il pitch originale - + Pitch Adjust Controlla intonazione - + Adjust pitch from speed slider pitch Regola il pitch dal pitch velocità slider - + Match musical key Sincronizza chiave musicale - + Match Key Allinea Chiave - + Reset Key Resetta chiave musicale - + Resets key to original Resetta chiave musicale all'originale @@ -1645,466 +1647,466 @@ EQ Bassi - + Toggle Vinyl Control Abilita/Disabilita il controllo vinile - + Toggle Vinyl Control (ON/OFF) Abilita/Disabilita il controllo vinile (ON/OFF) - + Vinyl Control Mode Modalità Controllo Vinile - + Vinyl Control Cueing Mode Modo Controllo Cueing tipo Vinile - + Vinyl Control Passthrough Inoltro Diretto Controllo Vinile - + Vinyl Control Next Deck Prossimo Deck Controllo Vinile - + Single deck mode - Switch vinyl control to next deck Modo Deck Singolo - passa in controllo vinile al prossimo deck - + Cue Cue - + Set Cue Imposta Cue - + Go-To Cue Vai al Cue - + Go-To Cue And Play Vai al Cue e Riproduci - + Go-To Cue And Stop Vai al Cue e Stop - + Preview Cue Anteprima Cue - + Cue (CDJ Mode) Cue (modalità CDJ) - + Stutter Cue Cue a Singhiozzo - + Go to cue point and play after release - + Clear Hotcue %1 Cancella Hotcue %1 - + Set Hotcue %1 Imposta Hotcue %1 - + Jump To Hotcue %1 Salta all' hotcue %1 - + Jump To Hotcue %1 And Stop Salta all' hotcue %1 e Ferma - + Jump To Hotcue %1 And Play Salta all' hotcue %1 e riproduci - + Preview Hotcue %1 Anteprima Hotcue %1 - + Loop In Loop In - + Loop Out Loop Out - + Loop Exit Esci dal Loop - + Reloop/Exit Loop Reloop/Esci dal loop - + Loop Halve Dimezza Loop - + Loop Double Raddoppia Loop - + 1/32 1/32 - + 1/16 1/16 - + 1/8 1/8 - + 1/4 1/4 - + Move Loop +%1 Beats Sposta Battiti Loop +%1 - + Move Loop -%1 Beats Sposta Battiti Loop -%1 - + Loop %1 Beats Battiti Loop %1 - + Loop Roll %1 Beats Beat Loop Roll %1 - + Add to Auto DJ Queue (bottom) Aggiungi a fine coda in «Auto DJ» - + Append the selected track to the Auto DJ Queue Aggiungi la traccia selezionata in coda alla lista dell'Auto-dj - + Add to Auto DJ Queue (top) Aggiungi alla coda in modalità "Auto DJ" (in cima) - + Prepend selected track to the Auto DJ Queue Aggiungi traccia selezionata in cima alla scaletta Auto-DJ - + Load Track Carica Traccia - + Load selected track Carica traccia selezionata - + Load selected track and play Carica traccia selezionata e riproduci - - + + Record Mix Registra il Mix - + Toggle mix recording Abilita registrazione mix - + Effects Effetti - + Quick Effects Effetti veloci - + Deck %1 Quick Effect Super Knob Deck %1 Effetto Rapido Super Manopola - + Quick Effect Super Knob (control linked effect parameters) Super Manopola (controlla i parametri di effetti connessi) - - + + Quick Effect Effetto Rapido - + Clear effect rack Svuota rack effetti - + Clear Effect Rack Cancella Rack Effetti - + Clear Unit Cancella Unità - + Clear effect unit Cancella unità effetti - + Toggle Unit Attiva Unità - + Dry/Wet Asciutto/Bagnato - + Adjust the balance between the original (dry) and processed (wet) signal. Regola il bilanciamento fra il segnale originale (dry) e quello elaborato (wet). - + Super Knob Super Manopola - + Next Chain Prossima Catena - + Assign Assegna - + Clear Cancella - + Clear the current effect Cancella l'effetto corrente - + Toggle Abilita - + Toggle the current effect Abilità l'effetto corrente - + Next Successivo - + Switch to next effect Passa all'effetto successivo - + Previous Precedente - + Switch to the previous effect Passa all'effetto precedente - + Next or Previous Precedente o Successivo - + Switch to either next or previous effect Passa all'effetto precedente o al successivo - - + + Parameter Value Valore Parametro - - + + Microphone Ducking Strength Livello Ducking microfono - + Microphone Ducking Mode Modo Ducking Microfono - + Gain Guadagno - + Gain knob Potenziometro Guadagno - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle Abilita Auto Dj - + Toggle Auto DJ On/Off Abilita/Disabilita Auto Dj - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. Mostra o Nascondi il mixer - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore Massimizza/Ripristina Libreria - + Maximize the track library to take up all the available screen space. Massimizza la libreria tracce per occupare tutto lo spazio disponibile sullo schermo - + Effect Rack Show/Hide Mostra/Nascondi Rack Effetti - + Show/hide the effect rack Mostra/Nasconde il rack effetti - + Waveform Zoom Out Waveform Zoom out @@ -2129,93 +2131,93 @@ - + Playback Speed Velocità Riproduzione - + Playback speed control (Vinyl "Pitch" slider) Controllo velocità riproduzione (slider "pitch" vinile) - + Pitch (Musical key) Pitch (Chiave Musicale) - + Increase Speed Aumenta la Velocità - + Adjust speed faster (coarse) Regola Velocità in salita (grande) - - + + Increase Speed (Fine) Aumenta velocitù in salita (fine) - + Adjust speed faster (fine) Regola Velocità in salita (fine) - + Decrease Speed Diminuisce la velocità - + Adjust speed slower (coarse) Regola Velocità in diminuzione (grande) - + Adjust speed slower (fine) Regola Velocità in diminuzione (fine) - + Temporarily Increase Speed Aumenta Velocità temporaneamente - + Temporarily increase speed (coarse) Aumenta Velocità temporaneamente (grande) - + Temporarily Increase Speed (Fine) Aumenta Velocità temporaneamente (fine) - + Temporarily increase speed (fine) Aumenta Velocità temporaneamente (fine) - + Temporarily Decrease Speed Diminuisce velocità temporaneamente - + Temporarily decrease speed (coarse) Diminuisce velocità temporaneamente (grande) - + Temporarily Decrease Speed (Fine) Diminuisce velocità temporaneamente (fine) - + Temporarily decrease speed (fine) Diminuisce velocità temporaneamente (fine) @@ -2272,806 +2274,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed Velocità - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing Abilita o disabilita processore effetti - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset Preset prossima catena - + Previous Chain Catena Precedente - + Previous chain preset Preset catena precedente - + Next/Previous Chain Passa alla Prossima/Precedente catena - + Next or previous chain preset Passa alla Prossima/Precedente catena - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary Microfono / Ausiliario - Aux - + Microphone On/Off Microfono Acceso/Spento - + Microphone on/off Microfono acceso/spento - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) Abilita/Disabilita la modalità del ducking (OFF, AUTO, MANUALE) - + Auxiliary On/Off Ausiliario - Aux On/Off - + Auxiliary on/off Ausiliario - Aux - On/Off - + Auto DJ Auto DJ - + Auto DJ Shuffle Auto Dj Mescola - + Auto DJ Skip Next Auto Dj Salta alla prossima - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next Audo Dj Sfuma alla prossima - + Trigger the transition to the next track Attiva la transizione alla prossima traccia - + User Interface Interfaccia Grafica - + Samplers Show/Hide Mostra/Nascondi Samplers - + Show/hide the sampler section Mostra/nascondi la sezione campionatore - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. Trasmetti il tuo mix su internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide Mostra/Nascondi Controllo Vinile - + Show/hide the vinyl control section Mostra/nasconde la sezione controllo vinile - + Preview Deck Show/Hide Mostra/Nascondi il Deck Anteprima - + Show/hide the preview deck Mostra/Nascondi l'anteprima del deck - + Toggle 4 Decks Abilita 4 Deck - + Switches between showing 2 decks and 4 decks. Mostra 2 oppure 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide Mostra/Nascondi Controllo Vinile - + Show/hide spinning vinyl widget Mostra/Nascondi Strumento Controllo Vinile - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom Waveform Zoom out - + Waveform Zoom Waveform Zoom - + Zoom waveform in Waveform zoom in - + Waveform Zoom In Waveform Zoom in - + Zoom waveform out Waveform Zoom out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3160,32 +3228,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. Prova a ripristinare resettando il tuo controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. Il codice dello script deve essere riparato. @@ -3221,133 +3289,133 @@ CrateFeature - + Remove Rimuovi - - + + Create New Crate Crea nuovo cesto - + Rename Rinomina - - + + Lock Bloccato - + Export Crate as Playlist - + Export Track Files Esporta Tracce - + Duplicate Duplica - + Analyze entire Crate Analizza l'intero Cesto - + Auto DJ Track Source Sorgente traccia Auto DJ - + Enter new name for crate: Inserisci il nuovo nome per il cesto: - - + + Crates Ceste - - + + Import Crate Importa il Cesto - + Export Crate Esporta il Cesto - + Unlock Sblocca - + An unknown error occurred while creating crate: Si è verificato un errore sconosciuto durante la creazione del Cesto: - + Rename Crate Rinomina il Cesto - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed Impossibile Rinominare il Cesto - + Crate Creation Failed Impossibile creare il Cesto - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Playlist M3U (*.m3u);;Playlist M3U8 (*.m3u8);;Playlist PLS (*.pls);;Testo CSV (*.csv);;File testuale (*.txt) - + Crates are a great way to help organize the music you want to DJ with. Le cassette ti aiutano a gestire meglio la musica che vuoi mixare. - + Crates let you organize your music however you'd like! Le cassette ti permettono di organizzare i tuoi brani nel modo che più ti piace! - + A crate cannot have a blank name. Il Cesto deve avere un nome. - + A crate by that name already exists. Un Cesto deve avere un nome @@ -3417,37 +3485,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: Con contributi da: - + And special thanks to: E ringraziamenti speciali a: - + Past Developers Sviluppatori passati - + Past Contributors Collaboratori passati - + Official Website - + Donate @@ -4878,32 +4946,32 @@ Applicare la configurazione e continuare? DlgPrefControlsDlg - + Skin Skin - + Tool tips Suggerimenti - + Select from different color schemes of a skin if available. Seleziona tra diversi colori di un tema se disponibili. - + Color scheme Schema colori - + Locales determine country and language specific settings. La lingua determina impostazioni specifici dello stato e della lingua. - + Locale Lingua @@ -4913,52 +4981,42 @@ Applicare la configurazione e continuare? Preferenze Interfaccia - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode Apri in modalità schermo intero. - + Full-screen mode Modalità Schermo intero - + Off Off - + Library only Solo Libreria - + Library and Skin Libreria e Skin @@ -5569,38 +5627,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. La dimensione minore della skin selezionata è maggiore della risoluzione del tuo schermo. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes Questa skin non supporta gli schemi di colore. - + Information Informazione - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5819,62 +5877,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added Aggiunta Cartella Musica - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? Hai aggiunto una o più cartelle musicali. Le tracce in queste cartelle non saranno disponibili fino a che non si effettua una scansione della libreria. Vuoi effettuarla ora? - + Scan Scansiona - + Choose a music directory Seleziona una cartella della musica - + Confirm Directory Removal Conferma rimozione cartella - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. Mixxx non monitorerà più questa directory alla ricerca di nuove tracce. Cosa intendi fare con le tracce di questa directory e subdirectory?<ul><li>Nascondi tutte le tracce da questa directory e subdirectory</li></li><li>Cancella tutti i metadata di queste tracce da Mixxx permanentemente</li><li>Lascia le tracce inalterate nella tua libreria</li></ul>Se nascondi le tracce, i loro metadata saranno conservati nel caso tu dovessi riaggiungerle in futuro - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. Metadata significa tutti i dati della traccia (artista, titolo, etc.) e anche beatgrids, hotcues, e loop. Questo riguarda solo la libreria Mixxx. Non verranno modificati o cancellati i files sul disco. - + Hide Tracks Nascondi Traccie - + Delete Track Metadata Elimina Metadati Traccia - + Leave Tracks Unchanged Lascia le tracce senza cambiamenti - + Relink music directory to new location Collega la cartella della musica alla nuova posizione - + Select Library Font Seleziona Font Libreria @@ -6879,32 +6937,32 @@ Il loudness finale è approssimativo e presume che pregain e master livello mast DlgPrefWaveform - + Filtered Filtrato - + HSV HSV - + RGB RGB - + OpenGL not available OpenGL non disponibile - + dropped frames frames persi - + Cached waveforms occupy %1 MiB on disk. I waveforms nella cache occupano %1 Mib sul disco @@ -7118,72 +7176,72 @@ Select from different types of displays for the waveform, which differ primarily Libreria - + Interface Interfaccia - + Waveforms Forme d'onda - + Auto DJ Auto DJ - + Equalizers Equalizzatori - + Decks - + Colors - + Crossfader Crossfader - + Effects Effetti - + LV2 Plugins - + Recording Registrazione - + Beat Detection Riconoscimento Beat - + Key Detection Rilevamento della chiave - + Normalization Normalizzazione - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7193,12 +7251,12 @@ Select from different types of displays for the waveform, which differ primarily Controllo Vinile - + Live Broadcasting Trasmissione live - + Modplug Decoder Decoder Modplug @@ -7339,123 +7397,123 @@ Select from different types of displays for the waveform, which differ primarily Seleziona la migliore corrispondenza possibile - - + + Track Traccia - - + + Year Anno - + Title Titolo - - + + Artist Artista - - + + Album Album - + Album Artist Artista Album - + Fetching track data from the MusicBrainz database Prendendo i dati delle tracce dal database MusicBrainz - + Mixxx could not find this track in the MusicBrainz database. Mixxx non è riuscito a trovare questa traccia nel database MusicBrainz. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. Ottieni chiave API - + Submit Submits audio fingerprints to the MusicBrainz database. Invia - + New Column Nuova Colonna - + New Item Nuovo Oggetto - + &Previous &Precedente - + &Next &Successivo - + &Apply &Applica - + &Close &Chiudi - + Status: %1 Stato: %1 - + HTTP Status: %1 Stato HTTP: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx non riesce a connettersi a %1 per un motivo sconosciuto. - + Mixxx can't connect to %1. Mixxx non riesce a connettersi a %1. - + Original tags Tag Originali - + Suggested tags Tag Suggeriti @@ -7847,17 +7905,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) Soundtouch (più veloce) - + Rubberband (better) Rubberband (migliore) - + Unknown (bad value) Sconosciuto (valore errato) @@ -7958,38 +8016,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes iTunes - - + + Select your iTunes library Selezionare la libreria iTunes - + (loading) iTunes (in caricamento) iTunes - + Use Default Library Usa libreria di default - + Choose Library... Scegli libreria... - + Error Loading iTunes Library Errore nel caricamento della libreria iTunes - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. Si è verificato un errore durante il caricamento della libreria di iTunes. Alcuni dei vostri brani o le playlist di iTunes potrebbero non essere caricati. @@ -7997,13 +8055,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. Modalità Sicura Attivata - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8012,57 +8070,57 @@ support. supporto OpenGL. - + activate Attiva - + toggle Attiva - + right destra - + left sinistra - + right small destra piccolo - + left small sinistra poco - + up su - + down giù - + up small su poco - + down small giu poco - + Shortcut Scorciatoia da tastiera @@ -8083,22 +8141,22 @@ supporto OpenGL. LibraryFeature - + Import Playlist Importa Playlist - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) File playlist (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8109,27 +8167,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Analizza libreria - + It's taking Mixxx a minute to scan your music library, please wait... Mixxx necessita di un po' di tempo per scansionare la tua libreria musicale. Attendi, per cortesia... - + Cancel Annulla - + Scanning: Scansione: - + Scanning cover art (safe to cancel) Scansione cover art (è possibile interrompere) @@ -8246,183 +8304,183 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy Periferica audio occupata - + <b>Retry</b> after closing the other application or reconnecting a sound device <b>Riprova</b> dopo aver chiuso l'altra applicazione o riconnesso la periferica audio - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. <b>Riconfigura</b> settaggi dei dispositivi di Mixxx. - - + + Get <b>Help</b> from the Mixxx Wiki. Ottieni <b>Aiuto</b> dal Wiki di Mixxx - - - + + + <b>Exit</b> Mixxx. <b>Uscire</b> da Mixxx - + Retry Riprova - + skin - - + + Reconfigure Riconfigura - + Help Guida - - + + Exit Esci - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices Nessun dispositivo di output - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. Mixxx è stato configurato senza un dispositivo audio di output. L'elaborazione audio sarà disabilitata senza un dispositivo audio configurato. - + <b>Continue</b> without any outputs. <b>Continua</b> senza alcun output - + Continue Continua - + Load track to Deck %1 Carica una traccia dal mazzo %1 - + Deck %1 is currently playing a track. Il mazzo %1 sta correntemente riproducendo una traccia. - + Are you sure you want to load a new track? Sei sicuro di voler caricare una nuova traccia? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. Non è stato selezionato nessuno dispositivo di input per il controllo vinile. Prego selezionare prima un dispositivo di controllo di input nel pannello di preferenze hardware. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. Nessun dispositivo di input è stato selezionato per il controllo diretto passtrough. Prego selezionare prima un dispositivo di input nel pannello di preferenze hardware. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file Errore nel file della Skin - + The selected skin cannot be loaded. La seguente Skin non può essere caricata. - + OpenGL Direct Rendering Rendering Diretto OpenGL - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Conferma uscita - + A deck is currently playing. Exit Mixxx? Un deck è in riproduzione. Uscire da Mixxx? - + A sampler is currently playing. Exit Mixxx? Un campionamento è attualmente in riproduzione. Uscire da Mixxx? - + The preferences window is still open. La finestra delle Preferenze è ancora aperta. - + Discard any changes and exit Mixxx? Annullare ogni modifica e uscire da Mixxx? @@ -8495,43 +8553,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Bloccato - + Playlists Playlists - + Unlock Sblocca - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. Alcuni Djs organizzano le playlist prima della performance live, ma altri preferiscono farle al "volo". - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. Quando usi una playlist durante una esibizione Live Dj, ricordati sempre di prestare molta attenzione a come il tuo pubblico reagisce alla musica da eseguire che hai selezionato - + Create New Playlist Crea Nuova Playlist @@ -8539,59 +8597,59 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx Aggiornando Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? Mixxx adesso supporta la visualizzazione delle cover art. Vuoi scansionare la tua libreria alla ricerca di file di cover adesso? - + Scan Scansiona - + Later Successivamente - + Upgrading Mixxx from v1.9.x/1.10.x. Aggiornare Mixxx da v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. Mixxx ha un nuovo e migliorato Rilevatore di Battiti. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. Quando carichi le tracce, Mixxx può ri-analizzarle e generare nuove e più accurate beatgrids. Questo renderà il beatsync automatico e il looping più affidabile - + This does not affect saved cues, hotcues, playlists, or crates. Questo non coinvolge le cues salvate, le hotcues, le playlist o le ceste. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. Se non vuoi che Mixxx ri-analizzi le tue tracce, scegli "Mantieni il beatgrid corrente". Puoi cambiare questa impostazione in ogni momento dalla sezione "Riconoscimento Beat" delle Preferenze - + Keep Current Beatgrids Mantieni il Beatgrid Corrente - + Generate New Beatgrids Genera Nuovi Beatgrids @@ -8775,7 +8833,7 @@ Vuoi scansionare la tua libreria alla ricerca di file di cover adesso? - + Encoder Encoder @@ -9901,12 +9959,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10044,54 +10102,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10100,7 +10158,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox Rhythmbox @@ -10151,34 +10209,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates Ceste - + Check for Serato databases (refresh) - + (loading) Serato @@ -10201,12 +10259,12 @@ Fully right: end of the effect period Storico - + Unlock Sblocca - + Lock Bloccato @@ -11165,6 +11223,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12340,11 +12423,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize Vecchio Sincronizza - - - (This skin should be updated to use Master Sync!) - (Questa skin deve essere aggiornata per usare il Master Sync!) - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12360,16 +12438,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. I Deck non si possono sincronizzare con i samplers e i samplers si possono sincronizzare solo con i deck - - - Enable Master Sync - Abilita il Master Sync - - - - Tap to sync the tempo to other playing tracks or the master clock. - Tocca per sincronizzare il tempo ad un altra traccia in esecuzione oppure al master clock. - Hold for at least a second to enable sync lock for this deck. @@ -12385,16 +12453,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. Resetta la chiave alla chiave originale della traccia - - - Enable Sync Clock Master - Abilita Master Sync Clock - - - - When enabled, this device will serve as the master clock for all other decks. - Quando abilitato, questo dispositivo verrà utilizzato come master clock per tutti gli altri deck - Speed Control @@ -12948,22 +13006,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor Traktor - + (loading) Traktor (in caricamento) Traktor - + Error Loading Traktor Library Errore di caricamento della libreria di Traktor - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. Si è verificato un errore durante il caricamento della libreria Traktor. Alcuni dei vostri brani o le playlist Traktor non possono essere caricati. @@ -13575,20 +13633,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Passthrough - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13759,8 +13817,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Genere - - Folder + + Directory @@ -14003,155 +14061,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 Deck %1 - + Sampler %1 Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Crea Nuova Playlist - + Enter name for new playlist: Inserisci il nome per la playlist: - + New Playlist Nuova Playlist - - - + + + Playlist Creation Failed Creazione della playlist non riuscita - + A playlist by that name already exists. Esiste già una playlist con questo nome. - + A playlist cannot have a blank name. Il nome della playlist non può essere vuoto. - + An unknown error occurred while creating playlist: Errore sconosciuto durante la creazione della playlist: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14159,7 +14222,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus ESC @@ -14196,128 +14259,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects effetti - + audio interface - + decks - + library - + Choose music library directory Scegli la cartella della tua libreria musicale - + controllers - + Cannot open database Impossibile aprire il database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14396,7 +14386,7 @@ Clicca su OK per uscire. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14453,62 +14443,62 @@ Clicca su OK per uscire. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse Mouse HID generico - + Generic HID Joystick Joystick HID generico - + Generic HID Game Pad - + Generic HID Keyboard Tastiera HID Generica - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_it_IT.qm b/res/translations/mixxx_it_IT.qm index 12523cf12597e59bc7f2df61a723efd725b20827..1064a4ebecae9287fc8d7dbea8ecb757e5c47372 100644 GIT binary patch literal 360339 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�NZAnP-XmE{HnBSjO!O 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 AutoDJFeature - + Crates - Ceste + Contenitori - + Remove Crate as Track Source - Rimuove Cesta come Sorgente Traccia + Rimuove Contenitore da Sorgente Traccia - + Auto DJ Auto DJ - + Add Crate as Track Source - Aggiunge Cesta come Sorgente Traccia + Aggiunge Contenitore come Sorgente Traccia BansheeFeature - + Banshee Banshee - - + + Error loading Banshee database Errore durante il caricamento del database Banshee - + Banshee database file not found at File database Banshee non trovato al - + There was an error loading your Banshee database at Si è verificato un errore durante il caricamento del database Banshee da @@ -71,32 +71,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Aggiungi alla coda di Auto DJ (in fondo) - + Add to Auto DJ Queue (top) Aggiungi alla coda di Auto DJ (in cima) - + Add to Auto DJ Queue (replace) Aggiungi a Auto DJ (sostituisci) - + Import Playlist Importa Playlist - + Playlist Creation Failed Creazione Playlist Fallita - + An unknown error occurred while creating playlist: Si è verificato un errore sconosciuto durante la creazione della playlist: @@ -104,146 +104,146 @@ BasePlaylistFeature - + New Playlist Nuova Playlist - + Add to Auto DJ Queue (bottom) Aggiungi alla coda di Auto DJ (in fondo) - - + + Create New Playlist Crea Nuova Playlist - + Add to Auto DJ Queue (top) Aggiungi alla coda di Auto DJ (in cima) - + Remove Rimuovi - + Rename Rinomina - + Lock Blocca - + Duplicate Duplica - - + + Import Playlist Importa Playlist - + Export Track Files Esporta Track Files - + Analyze entire Playlist Analizza intera Playlist - + Enter new name for playlist: Specifica un nuovo nome per la playlist: - + Duplicate Playlist Duplica Playlist - - + + Enter name for new playlist: Specifica nome per la playlist: - - + + Export Playlist Esporta Playlist - + Add to Auto DJ Queue (replace) Aggiunge a Auto DJ (sostituisce) - + Rename Playlist Rinomina Playlist - - + + Renaming Playlist Failed Cambio nome della Playlist Fallito - - - + + + A playlist by that name already exists. Una playlist con quel nome esiste già. - - - + + + A playlist cannot have a blank name. La playlist non può avere un nome nullo. - + _copy //: Appendix to default name when duplicating a playlist _copy - - - - - - + + + + + + Playlist Creation Failed Creazione Playlist Fallita - - + + An unknown error occurred while creating playlist: Si è verificato un errore sconosciuto durante la creazione della playlist: - + M3U Playlist (*.m3u) - + M3U Playlist (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Non posso caricare la traccia. @@ -327,7 +327,7 @@ Last Played - + Ultimo Suonato @@ -377,7 +377,7 @@ Samplerate - Campionamento + Frequenza di campionamento @@ -410,7 +410,7 @@ Please enable at least one connection to use Live Broadcasting. - Abilitare almeno una connessione per usare il Live Broadcasting. + Abilitare almeno una connessione per usare la Trasmissione Live. @@ -418,12 +418,12 @@ Can't use secure password storage: keychain access failed. - + Impossibile utilizzare l'archiviazione sicura delle password: accesso keychain non riuscito. Secure password retrieval unsuccessful: keychain access failed. - + Recupero sicuro della password senza successo: accesso keychain non riuscito. @@ -514,7 +514,7 @@ - + Computer Computer @@ -534,7 +534,7 @@ Scansiona - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. "Computer" permette di navigare, vedere, e caricare tracce da cartelle sul tuo hard disk o dispositivi esterni. @@ -647,12 +647,12 @@ File Creato - + Mixxx Library Libreria Mixxx - + Could not load the following file because it is in use by Mixxx or another application. Non posso caricare il file seguente perchè in uso da Mixxx o altra applicazione. @@ -680,6 +680,84 @@ The file '%1' is empty and could not be loaded. + Il file '%1' è vuoto e non può essere caricato. + + + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. @@ -704,7 +782,7 @@ Remove Palette - + Rimuovi Tavolozza @@ -714,7 +792,7 @@ Assign to Hotcue Number - + Assegna al Numero Hotcue @@ -724,7 +802,7 @@ Do you really want to remove the palette permanently? - + Vuoi veramente rimuovere permanentemente la tavolozza? @@ -737,7 +815,7 @@ %1 %2 - + %1 %2 @@ -790,7 +868,7 @@ Sampler %1 - + Campionatore %1 @@ -836,22 +914,22 @@ Headphone mix (pre/main) - + Mix cuffia (pre/main) Toggle headphone split cueing - + Attiva/disattiva il cueing separato delle cuffie Headphone delay - Ritardo cuffie + Ritardo cuffia Transport - + Transporto @@ -865,13 +943,13 @@ - + Set to full volume Imposta a tutto volume - + Set to zero volume Imposta a volume zero @@ -893,16 +971,16 @@ Reverse roll (Censor) button - + Bottone reverse Roll (Censura) - + Headphone listen button - Bottone ascolto cuffie + Bottone ascolto cuffia - + Mute button Bottone mute @@ -918,32 +996,32 @@ - + Mix orientation (e.g. left, right, center) - + Orientamento mix (es. sinistra, destra, centro) - + Set mix orientation to left Imposta orientamento mix a sinistra - + Set mix orientation to center Imposta orientamento mix al centro - + Set mix orientation to right Imposta orientamento mix a destra Toggle slip mode - + Attiva/disattiva Modo Scivolamento @@ -973,57 +1051,27 @@ BPM tap button - + Pulsante BPM tap Toggle quantize mode - - - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - + Attiva/disattiva modo quantizzazione One-time beat sync (tempo only) - + Sync battuta una tantum (solo tempo) One-time beat sync (phase only) - + Sync battuta una tantum (solo fase) - + Toggle keylock mode - + Attiva modo keylock @@ -1031,221 +1079,221 @@ Equalizzatori - + Vinyl Control Controllo Vinile - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Abilita/Disabilita il modo cueing controllo-vinile (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Abilita/Disabilita modo controllo-vinile (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Inoltro diretto da audio esterno nel mixer interno - + Cues - + Cue - + Cue button - + Bottone Cue - + Set cue point - + Imposta punto cue - + Go to cue point - + Và al punto cue - + Go to cue point and play - + Và al punto di cue e riproduce - + Go to cue point and stop - + Và al punto di cue e si ferma - + Preview from cue point Anteprima dal punto di taglio - + Cue button (CDJ mode) - + Bottone cue (modo CDJ) - + Stutter cue - + Cue balbuzziente - + Hotcues - + Hotcue - + Set, preview from or jump to hotcue %1 - + Imposta, anteprima da o salta a hotcue %1 - + Clear hotcue %1 - + Cancella hotcue %1 - + Set hotcue %1 - + Imposta hotcue %1 - + Jump to hotcue %1 - + Salta a hotcue %1 - + Jump to hotcue %1 and stop - + Salta a hotcue %1 e ferma - + Jump to hotcue %1 and play - + Salta a hotcue %1 e riproduce - + Preview from hotcue %1 - + Anteprima da hotcue %1 - - + + Hotcue %1 - + Hotcue %1 - + Looping - + Ripetizione - + Loop In button - + Pulsante di Loop In - + Loop Out button - + Pulsante di Loop Out - + Loop Exit button - + Pulsante di Uscita Loop - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 32 - + 64 64 - + Move loop forward by %1 beats - + Sposta loop in avanti di %1 battute - + Move loop backward by %1 beats - + Sposta loop indietro di %1 battute - + Create %1-beat loop - + Crea un loop di %1 battute - + Create temporary %1-beat loop roll - + Crea un loop roll temporaneo di %1 battute - + Library Libreria Slot %1 - + Slot %1 Headphone Mix - + Mix Cuffia Headphone Split Cue - + Separa Cue Cuffia Headphone Delay - Ritardo Cuffie + Ritardo Cuffia @@ -1290,7 +1338,7 @@ Reverse Roll (Censor) - + Reverse Roll (Censura) @@ -1334,20 +1382,20 @@ - - + + Volume Fader - + Fader Volume - + Full Volume Volume massimo - + Zero Volume Volume Zero @@ -1359,13 +1407,13 @@ Track Gain knob - + Manopola Guadagno Traccia - + Mute - + Muto @@ -1374,14 +1422,14 @@ - + Headphone Listen Ascolto in Cuffia Headphone listen (pfl) button - + Bottone preascolto cuffia (pfl) @@ -1391,29 +1439,29 @@ Slip Mode - + Modo Slip - + Orientation Orientamento - + Orient Left Orientamento a Sinistra - + Orient Center Orientamento Centrato - + Orient Right Orientamento a Destra @@ -1440,7 +1488,7 @@ BPM Tap - + BPM Tap @@ -1450,7 +1498,7 @@ Increase track's average BPM by 0.01 - + Aumenta BPM medio della traccia di 0.01 @@ -1460,12 +1508,12 @@ Decrease track's average BPM by 0.01 - + Diminuisci BPM medio della traccia di 0.01 Move Beatgrid Earlier - + Muove BeatGrid anticipando @@ -1475,7 +1523,7 @@ Move Beatgrid Later - + Muove Beatgrid Posticipando @@ -1490,7 +1538,7 @@ Align beatgrid to current position - + Allinea beatgrid alla posizione corrente @@ -1505,108 +1553,62 @@ Quantize Mode - + Modalità quantizzazione Sync - - - - - Sync Mode - Modo Sync - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - + Sync Beat Sync One-Shot - + Beat Sync Un-Tocco Sync Tempo One-Shot - + Sync Tempo Un-Tocco Sync Phase One-Shot - + Sync Fase Un-Tocco - + Pitch control (does not affect tempo), center is original pitch - + Controllo Pitch (non influenza il tempo), Centro è il pitch originale - + Pitch Adjust Regolazione Pitch - + Adjust pitch from speed slider pitch Regola il passo dal passo dello speed slider - + Match musical key - + Sincronizza chiave musicale - + Match Key - + Allinea Chiave - + Reset Key - + Resetta Chiave - + Resets key to original - + Reimposta chiave all'originale @@ -1622,22 +1624,22 @@ Main Output - + Uscita Master Main Output Balance - + Bilanciamento Uscita Master Main Output Delay - + Ritardo Uscita Master Main Output Gain - + Guadagno Uscita Master @@ -1645,579 +1647,579 @@ EQ Bassi - + Toggle Vinyl Control - + Abilita/Disabilita il controllo vinile - + Toggle Vinyl Control (ON/OFF) Attiva disattiva Controllo Vinile (ON/OFF) - + Vinyl Control Mode Modo Controllo Vinile - + Vinyl Control Cueing Mode - + Modo Controllo Cueing Vinile - + Vinyl Control Passthrough - + Inoltro Diretto Controllo Vinile - + Vinyl Control Next Deck - + Prossimo Deck Controllo Vinile - + Single deck mode - Switch vinyl control to next deck - + Modo deck Singolo - passa in controllo vinile al prossimo deck - + Cue - + Cue - + Set Cue - + Imposta Cue - + Go-To Cue - + Vai-A Cue - + Go-To Cue And Play - + Và-a Cue e Riproduce - + Go-To Cue And Stop - + Và-a Cue e Ferma - + Preview Cue - + Anteprima Cue - + Cue (CDJ Mode) - + Cue (modo CDJ) - + Stutter Cue - + Cue a Singhiozzo - + Go to cue point and play after release Và al punto di taglio e riproduce al rilascio - + Clear Hotcue %1 - + Cancella Hotcue %1 - + Set Hotcue %1 - + Imposta Hotcue %1 - + Jump To Hotcue %1 - + Salta A Hotcue %1 - + Jump To Hotcue %1 And Stop - + Salta A Hotcue %1 E Ferma - + Jump To Hotcue %1 And Play - + Salta A Hotcue %1 E Suona - + Preview Hotcue %1 - + Anteprima Hotcue %1 - + Loop In - + Loop In - + Loop Out - + Loop Out - + Loop Exit - + Uscita Loop - + Reloop/Exit Loop - + Reloop/Uscita Loop - + Loop Halve - + Dimezza Loop - + Loop Double - + Raddoppia Loop - + 1/32 1/32 - + 1/16 1/16 - + 1/8 1/8 - + 1/4 1/4 - + Move Loop +%1 Beats - + Sposta Battiti Loop +%1 - + Move Loop -%1 Beats - + Sposta Battiti Loop -%1 - + Loop %1 Beats - + Battiti Loop %1 - + Loop Roll %1 Beats - + Loop Roll %1 Battute - + Add to Auto DJ Queue (bottom) Aggiungi alla coda di Auto DJ (in fondo) - + Append the selected track to the Auto DJ Queue Accoda la traccia selezionata alla lista di Auto DJ - + Add to Auto DJ Queue (top) Aggiungi alla coda di Auto DJ (in cima) - + Prepend selected track to the Auto DJ Queue Inserisce in cima la traccia selezionata alla lista di Auto DJ - + Load Track Carica Traccia - + Load selected track Carica traccia selezionata - + Load selected track and play Carica la traccia selezionata e suona - - + + Record Mix - + Registra il Mix - + Toggle mix recording - + Attiva/Disattiva registrazione mix - + Effects Effetti - + Quick Effects Effetti Veloci - + Deck %1 Quick Effect Super Knob - + Deck %1 Suoer Manopola Effetto Rapido - + Quick Effect Super Knob (control linked effect parameters) - + Super Manopola Effetto Rapido (controlla parametri effetti collegati). - - + + Quick Effect Effetto Veloce - + Clear effect rack - + Svuota rack effetti - + Clear Effect Rack - + Svuota Rack Effetto - + Clear Unit - + Cancella Unità - + Clear effect unit - + Svuota unità effetto - + Toggle Unit - + Attiva/disattiva Unità - + Dry/Wet - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. Regola il bilanciamento fra il segnale originale (dry) e processato (wet). - + Super Knob - + Super Manopola - + Next Chain - + Prossima Catena - + Assign Assegna - + Clear Togli - + Clear the current effect Toglie l'effetto attuale - + Toggle Attiva/Disattiva - + Toggle the current effect Attiva/disattiva l'effetto corrente - + Next Successivo - + Switch to next effect Salta all'effetto successivo - + Previous Precedente - + Switch to the previous effect Salta all'effetto precedente - + Next or Previous Successivo o Precedente - + Switch to either next or previous effect Salta all'effetto successivo o precedente - - + + Parameter Value Valore Parametro - - + + Microphone Ducking Strength - + Forza Ducking Microfono - + Microphone Ducking Mode - + Modo Ducking Microfono - + Gain - + Guadagno - + Gain knob - + Potenziometro Guadagno - + Shuffle the content of the Auto DJ queue - + Mischia il contenuto della coda Auto DJ - + Skip the next track in the Auto DJ queue - + Salta la traccia successiva nella coda dell'Auto DJ - + Auto DJ Toggle Attiva/disattiva Auto DJ - + Toggle Auto DJ On/Off - + Abilita/Disabilita Auto Dj - + Microphone & Auxiliary Show/Hide - + Microfono & Ausiliario Mostra/Nascondi - + Show/hide the microphone & auxiliary section - + Mostra/nasconde la sezione microfono & ausiliario - + 4 Effect Units Show/Hide - + Mostra/Nasconde Unità 4 Effetti - + Switches between showing 2 and 4 effect units - + Mostra 2 o 4 unità effetti - + Mixer Show/Hide - + Mostra/Nascondi Mixer - + Show or hide the mixer. Mostra o nasconde mixer. - + Cover Art Show/Hide (Library) - + Mostra/Nascondi Copertina (Libreria) - + Show/hide cover art in the library - + Mostra/Nasconde copertina nella libreria - + Library Maximize/Restore - + Lireria Massimizza/Ripristina - + Maximize the track library to take up all the available screen space. - + Massimizza la libreria tracce per occupare tutto lo spazio disponibile sullo schermo. - + Effect Rack Show/Hide Mostra/nasconde Rack Effetto - + Show/hide the effect rack Mostra/nasconde il rack effetto - + Waveform Zoom Out Forma d'onda Zoom Indietro Headphone Gain - + Guadagno Cuffia Headphone gain - + Guadagno cuffia Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync - + Tocca per sincronizzare il tempo (e la fase con Quantizza abilitato), tieni premuto per abilitare la sincronizzazione permanente One-time beat sync tempo (and phase with quantize enabled) - + Tempo di sincronizzazione della battuta una tantum (e fase con Quantizza abilitato) - + Playback Speed - + Velocità Riproduzione - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Pitch (Chiave Musicale) - + Increase Speed Aumenta Velocità - + Adjust speed faster (coarse) Regola velocità rapidamente (coarse) - - + + Increase Speed (Fine) - + Aumenta Velocità (Fine) - + Adjust speed faster (fine) Regola velocità rapidamente (fine) - + Decrease Speed Diminuisce Velocità - + Adjust speed slower (coarse) Regola velocità lentamente (coarse) - + Adjust speed slower (fine) Regola velocità lentamente (fine) - + Temporarily Increase Speed Aumenta Temporaneamente la Velocità - + Temporarily increase speed (coarse) - + Aumenta Velocità temporaneamente (grande) - + Temporarily Increase Speed (Fine) - + Aumenta Velocità temporaneamente (fine) - + Temporarily increase speed (fine) - + Aumenta Velocità temporaneamente (fine) - + Temporarily Decrease Speed - + Diminuisce Velocità Temporaneamente - + Temporarily decrease speed (coarse) - + Diminuisce velocità temporaneamente (grossolanamente) - + Temporarily Decrease Speed (Fine) - + Diminuisce Velocità Temporaneamente (Fine) - + Temporarily decrease speed (fine) - + Diminuisce velocità temporaneamente (fine) @@ -2228,852 +2230,918 @@ Effect Unit %1 - + Unità Effetto %1 Crossfader / Orientation - + Crossfader / Orientamento Main Output gain - + Guadagno Uscita Master Main Output balance - + Bilanciamento Uscita Master Main Output delay - + Ritardo Uscita Master Headphone - + Cuffia Kill %1 - + Kill %1 BPM / Beatgrid - + BPM / Grigliabattute Sync / Sync Lock + Sincronizza / Blocca Sincronizzazione + + + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 - + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed Velocità - + Pitch (Musical Key) - + Pitch (Chiave Musicale) - + Increase Pitch - + Incrementa Pitch - + Increases the pitch by one semitone - + Incrementa il pitch di un semitono - + Increase Pitch (Fine) - + Incrementa Pitch (Fine) - + Increases the pitch by 10 cents - + Incrementa il pitch di 10 centesimi - + Decrease Pitch - + Diminuisce Pitch - + Decreases the pitch by one semitone - + Decrementa il pitch di un semitono - + Decrease Pitch (Fine) - + Decrementa Pitch (Fine) - + Decreases the pitch by 10 cents - + Decrementa il pitch di 10 centesimi - + Keylock - + Blocco tastiera - + CUP (Cue + Play) - + CUP (Cue + Play) - + Shift cue points earlier - + Sposta punti di cue anticipando - + Shift cue points 10 milliseconds earlier - + Sposta punti di cue 10 millisecondi prima - + Shift cue points earlier (fine) - + Sposta punti di cue prima (fine) - + Shift cue points 1 millisecond earlier - + Sposta punti di cue 1 millisecondo prima - + Shift cue points later - + Sposta punti di cue dopo - + Shift cue points 10 milliseconds later - + Sposta punti di cue 10 millisecondi dopo - + Shift cue points later (fine) - + Sposta punti di cue dopo (fine) - + Shift cue points 1 millisecond later - + Sposta punti di cue 1 millisecondo dopo - + Hotcues %1-%2 - + Hotcues %1-%2 - + Intro / Outro Markers - + Marcatori Intro / Outro - + Intro Start Marker - + Marcatore Inizio Intro - + Intro End Marker - + Marcatore Fine Intro - + Outro Start Marker - + Marcatore Inizio Outro - + Outro End Marker - + Marcatore Fine Outro - + intro start marker - + marcatore inizio intro - + intro end marker - + marcatore fine intro - + outro start marker - + marcatore inizio outro - + outro end marker - + marcatore fine outro - + Activate %1 [intro/outro marker - + Attiva %1 - + Jump to or set the %1 [intro/outro marker - + Salta a o imposta il %1 - + Set %1 [intro/outro marker - + Imposta %1 - + Set or jump to the %1 [intro/outro marker - + Imposta o salta a %1 - + Clear %1 [intro/outro marker - + Pulisci %1 - + Clear the %1 [intro/outro marker - + Pulisci il %1 - + Loop Selected Beats - + Loop Battute Selezionate - + Create a beat loop of selected beat size - + Crea un loop di battute della dimensione delle battute selezionate - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Crea un ciclo di battitura a rotazione della dimensione di battitura selezionata - + Loop Beats - + Loop Battute - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Attiva/disattiva loop e passa al punto Loop In se loop è dietro la posizione di riproduzione - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Abilita loop, passa al punto di Loop In ed interrompe - + Halve the loop length - + Dimezza la lunghezza del loop - + Double the loop length - + Raddoppia la lunghezza del loop - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Salta / Sposta loop Avanti di %1 Battute - + Jump / Move Loop Backward %1 Beats - + Salta / Sposta loop Indietro di %1 Battute - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Salta in avanti di %1 beats, o se un loop è abilitato, sposta il loop avanti di %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Salta all'indietro di %1 beats, o se un loop è abilitato, sposta il loop indietro di %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Salto Beat / Sposta Loop Avanti Beat Selezionati - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Salta in avanti di %1 beats, o se un loop è abilitato, sposta il loop in avanti in base al numero di beats selezionato - + Beat Jump / Loop Move Backward Selected Beats - + Salto Beat / Sposta Loop Indietro Beat Selezionati - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Salta all'indietro del numero di beats, o se un loop è abilitato, sposta il loop all'indietro in base al numero di beats selezionato - + Beat Jump / Loop Move Forward - + Salto Battito / Loop Sposta Avanti - + Beat Jump / Loop Move Backward - + Salto Battito / Loop Sposta Indietro - + Loop Move Forward - + Loop Sposta Avanti - + Loop Move Backward - + Loop Sposta Indietro - + Navigation - + Navigazione - + Move up - + Muove sù - + Equivalent to pressing the UP key on the keyboard - + Equivale a premere il tasto SU sulla tastiera - + Move down - + Muove giù - + Equivalent to pressing the DOWN key on the keyboard - + Equivale a premere il tasto GIU sulla tastiera - + Move up/down Muove sù/giù - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Muove verticalmente in ciascuna direzione usando una manopola, come se si premesse il tasto SU/GIU sulla tastiera - + Scroll Up - + Scorri in alto - + Equivalent to pressing the PAGE UP key on the keyboard Equivale a premere il tasto PAGINA sù sulla tastiera - + Scroll Down - + Scorri in basso - + Equivalent to pressing the PAGE DOWN key on the keyboard Equivale a premere il tasto PAGINA giù sulla tastiera - + Scroll up/down - + Scorri su/giu - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Scorre verticalmente in ciascuna direzione usando una manopola, come se si premessero i tasti PGSU/PGGIU sulla tastiera - + Move left - + Muovi sinistra - + Equivalent to pressing the LEFT key on the keyboard - + Equivale a premere il tasto SINISTRA sulla tastiera - + Move right - + Muovi destra - + Equivalent to pressing the RIGHT key on the keyboard - + Equivale a premere il tasto DESTRA sulla tastiera - + Move left/right - + Muovi sinistra/destra - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Muove orizzontalmente in ciascuna direzione usando una manopola, come se si premesse il tasto DESTRA/SINISTRA sulla tastiera - + Move focus to right pane - + Sposta il focus al pannello di destra - + Equivalent to pressing the TAB key on the keyboard - + Equivale a premere il tasto TAB sulla tastiera - + Move focus to left pane - + Sposta il focus al pannello di sinistra - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Equivale a premere il tasto SHIFT+TAB sulla tastiera - + Move focus to right/left pane - + Sposta il focus al pannello di destra/sinistra - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Sposta il focus ad un panello sulla destra o sinistra usando una manopola, come se si premesse il tasto TAB/SHIFT+TAB sulla tastiera - + Go to the currently selected item Và all'elemento attualmente selezionato - + Choose the currently selected item and advance forward one pane if appropriate - + Sceglie l'elemento attualmente selezionato e avanza di un riquadro, se appropriato - + Load Track and Play - + Carica Traccia e Suona - + Add to Auto DJ Queue (replace) Aggiunge a Auto DJ (sostituisce) - + Replace Auto DJ Queue with selected tracks Sostituisce la Coda Auto DJ con le tracce selezionate - + Select next search history - + Seleziona cronologia ricerche successive - + Selects the next search history entry - + Seleziona la voce successiva nella cronologia delle ricerche - + Select previous search history - + Seleziona cronologia ricerche precedente - + Selects the previous search history entry - + Seleziona la voce precedente nella cronologia delle ricerche - + Move selected search entry - + Sposta la voce di ricerca selezionata - + Moves the selected search history item into given direction and steps - + Sposta l'elemento della cronologia delle ricerche selezionato nella direzione e nei passaggi indicati - + Deck %1 Quick Effect Enable Button Deck %1 Bottone Abilitazione Effetto Veloce - + Quick Effect Enable Button Bottone Abilitazione Effetto Veloce - + Enable or disable effect processing Abilita o disabilita elaborazione effetto - + Super Knob (control effects' Meta Knobs) - + Manopola Super (controllo effetti Manopola Meta) - + Mix Mode Toggle - + Attiva/disattiva Modo Mix - + Toggle effect unit between D/W and D+W modes - + Alterna unità effetto fra modi D/W e D+W - + Next chain preset - + Preset prossima catena - + Previous Chain - + Catena Precedente - + Previous chain preset - + Preset catena precedente - + Next/Previous Chain - + Catena Successiva/Precedente - + Next or previous chain preset - + Preset catena successiva o precedente - - + + Show Effect Parameters Mostra parametri effetto - + Effect Unit Assignment - + Assegnazione Unità Effetto - + Meta Knob - + Manopola Meta - + Effect Meta Knob (control linked effect parameters) - + Effetto Manopola Meta (controlla parametri effetti collegati). - + Meta Knob Mode - + Modo Manopola Meta - + Set how linked effect parameters change when turning the Meta Knob. - + Configura come i parametri degli effetti collegati cambiano quando ruoti il Meta Knob. - + Meta Knob Mode Invert - + Manopola Meta Modo Inverso - + Invert how linked effect parameters change when turning the Meta Knob. - + Inverte come i parametri degli effetti collegati cambiano quando ruoti il Meta Knob. - - + + Button Parameter Value - + Valore Parametro Pulsante - + Microphone / Auxiliary - + Microfono / Ausiliario - + Microphone On/Off Microfono On/Off - + Microphone on/off Microfono on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Abilita/disabilita la modalità ducking del microfono (OFF, AUTO, MANUALE) - + Auxiliary On/Off Ausiliario On/Off - + Auxiliary on/off Ausiliario on/off - + Auto DJ Auto DJ - + Auto DJ Shuffle - + Auto Dj Mescola - + Auto DJ Skip Next - + Auto Dj Salta alla Successiva - + Auto DJ Add Random Track - + Auto DJ Aggiunge Tracce Casuali - + Add a random track to the Auto DJ queue - + Aggiunge una traccia casuale alla coda Auto DJ - + Auto DJ Fade To Next - + Audo Dj Sfuma Alla Successiva - + Trigger the transition to the next track Attiva la transizione alla prossima traccia - + User Interface Interfaccia Utente - + Samplers Show/Hide - + Campionatori Mostra/Nascondi - + Show/hide the sampler section - + Mostra/nascondi la sezione campionatore - + Start/Stop Live Broadcasting - + Avvia/Ferma Trasmissione Live - + Stream your mix over the Internet. - + Trasmette il tuo mix su Internet. - + Start/stop recording your mix. - + Avvia/Ferma la registrazione del tuo mix. - - + + Samplers - + Campionatori - + Vinyl Control Show/Hide Mostra/Nasconde Controllo Vinile - + Show/hide the vinyl control section Mostra/nasconde la sezione controllo vinile - + Preview Deck Show/Hide Anteprima Deck Mostra/Nascondi - + Show/hide the preview deck Mostra/nasconde anteprima deck - + Toggle 4 Decks - + Abilita/disabilita 4 Decks - + Switches between showing 2 decks and 4 decks. - + Mostra 2 o 4 decks. - + Cover Art Show/Hide (Decks) - + Mostra/Nasconde copertina (Decks) - + Show/hide cover art in the main decks - + Mostra/Nasconde copertina nei decks principali - + Vinyl Spinner Show/Hide Mostra/Nasconde Indicatore Vinile - + Show/hide spinning vinyl widget Mostra/nasconde il widget rotazione vinile - + Vinyl Spinners Show/Hide (All Decks) - + Mostra/Nasconde Indicatori Vinile (Tutti i Decks) - + Show/Hide all spinnies - + Mostra/Nasconde tutti gli indicatori vinile - + Toggle Waveforms - + Mostra/nasconde Forme d'onda - + Show/hide the scrolling waveforms. - + Mostra/Nascondi lo scorrimento delle forme d'onda. - + Waveform zoom Ingrandisce forma d'onda - + Waveform Zoom Ingrandisce forma d'onda - + Zoom waveform in Zoom Forma d'onda avanti - + Waveform Zoom In Zoom Forma d'onda Avanti - + Zoom waveform out Forma d'onda Zoom Avanti - + Star Rating Up - + Incrementa Valutazione Stelle - + Increase the track rating by one star - + Incrementa il punteggio della traccia di una stella - + Star Rating Down - + Decrementa Valutazione Stelle - + Decrease the track rating by one star - + Decrementa il punteggio della traccia di una stella @@ -3081,27 +3149,27 @@ Channel - + Canale Opcode - + Opcode Control - + Controllo Options - + Opzioni Action - + Azione @@ -3114,42 +3182,42 @@ Channel - + Canale Opcode - + Opcode Control - + Controllo On Value - + Valore On Off Value - + Valore Off Action - + Azione On Range Min - + Intervallo Min On On Range Max - + Intervallo Max On @@ -3160,34 +3228,34 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + La funzionalità fornita da questo mapping controller sarà disabilitata fino a che il problema non sarà risolto. - + You can ignore this error for this session but you may experience erratic behavior. - + Puoi ignorare questo errore per questa sessione ma puoi incontrare comportamenti incoerenti. - + Try to recover by resetting your controller. - + Tentativo di ripristino tramite il reset del tuo controller. - + Controller Mapping Error - + Errore Mappatura Controller - + The mapping for your controller "%1" is not working properly. - + La mappatura per il tuo controller "%1" non funziona correttamente. - + The script code needs to be fixed. - + Il codice dello script deve essere riparato. @@ -3195,161 +3263,161 @@ Controller Mapping File Problem - + Problema File Mappatura Controller The mapping for controller "%1" cannot be opened. - + La mappatura per il tuo controller "%1" non può essere aperta. The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + La funzionalità fornita da questo mapping controller sarà disabilitata fino a che il problema non sarà risolto. File: - + File: Error: - + Errore: CrateFeature - + Remove Rimuovi - - + + Create New Crate - Crea una Nuova Cesta + Crea un Nuovo Contenitore - + Rename Rinomina - - + + Lock Blocca - + Export Crate as Playlist - + Esporta Contenitore come Playlist - + Export Track Files Esporta Files Tracce - + Duplicate Duplica - + Analyze entire Crate - Analizza intera Cesta + Analizza intero Contenitore - + Auto DJ Track Source Auto DJ Sorgente Traccia - + Enter new name for crate: - Inserisci nuovo nome per la cesta: + Inserisci nuovo nome per il contenitore: - - + + Crates - Ceste + Contenitori - - + + Import Crate - Importa Cesta + Importa Contenitore - + Export Crate - Esporta Cesta + Esporta Contenitore - + Unlock Sblocca - + An unknown error occurred while creating crate: - Si è verificato un errore sconosciuto durante la creazione della cesta: + Si è verificato un errore sconosciuto durante la creazione del contenitore: - + Rename Crate - Rinomina Cesta + Rinomina Contenitore - - + + Export to Engine Prime - + Esporta a Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - + Crea un contenitore per il tuo prossimo spettacolo, per le tue tracce ElectroHouse preferite, o per quelle più richieste. - - + + Renaming Crate Failed - Cambio nome Cesta Fallito + Cambio nome Contenitore Fallito - + Crate Creation Failed - Creazione Cesta Fallita + Creazione Contenitore Fallita - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) - + Crates are a great way to help organize the music you want to DJ with. - Le ceste sono di grande aiuto per organizzare la musica che vuoi. + I contenitori sono di grande aiuto per organizzare la musica DJ che desideri. - + Crates let you organize your music however you'd like! - Le Ceste ti consentono di organizzare la tua musica a tuo piacimento! + I contenitori ti consentono di organizzare la tua musica a tuo piacimento! - + A crate cannot have a blank name. - Una cesta non può avere un nome nullo. + Un contenitore non può avere un nome nullo. - + A crate by that name already exists. - Una cesta con quel nome esiste già. + Un contenitore con quel nome esiste già. @@ -3357,99 +3425,99 @@ New Crate - Nuova Cesta + Nuovo Contenitore Create New Crate - Crea una Nuova Cesta + Crea Nuovo Contenitore Enter name for new crate: - Inserisci il nome per la nuova cesta: + Inserisci il nome per il nuovo contenitore: Creating Crate Failed - Creazione Cesta Fallito + Creazione Contenitore Fallito A crate cannot have a blank name. - Una cesta non può avere un nome nullo. + Un contenitore non può avere un nome nullo. A crate by that name already exists. - Una cesta con quel nome esiste già. + Un contenitore con quel nome esiste già. An unknown error occurred while creating crate: - Si è verificato un errore sconosciuto durante la creazione della cesta: + Si è verificato un errore sconosciuto durante la creazione del contenitore: copy //: - + copia Duplicate Crate - Duplica Cesta + Duplica Contenitore Duplicating Crate Failed - Duplicazione Cesta Fallito + Duplicazione Contenitore Fallito DlgAbout - + Mixxx %1.%2 Development Team - + Mixxx %1.%2 Development Team - + With contributions from: - + Con contributi da: - + And special thanks to: - + E ringraziamenti speciali a: - + Past Developers - + Sviluppatori precedenti - + Past Contributors - + Collaboratori precedenti - + Official Website - + Sito Ufficiale - + Donate - + Dona @@ -3457,7 +3525,7 @@ About Mixxx - + Informazioni su Mixxx @@ -3469,27 +3537,27 @@ Date: - + Data: Git Version: - + Versione Git: Platform: - + Piattaforma: Credits - + Crediti License - + Licenza @@ -3504,27 +3572,27 @@ Shows tracks added to the library within the last 7 days. - + Mostra le tracce aggiunte alla libreria negli ultimi 7 giorni. New - + Nuovo Shows all tracks in the library. - + Mostra tutte le tracce nella libreria. All - + Tutto Progress - + Avanzamento @@ -3539,22 +3607,22 @@ Runs beatgrid, key, and ReplayGain detection on the selected tracks. Does not generate waveforms for the selected tracks to save disk space. - + Rileva chiave, ReplayGain e battute sulle tracce selezionate. Non genera forme d'onda per le tracce selezionate per risparmiare spazio su disco. Stop Analysis - + Ferma Analisi Analyzing %1% %2/%3 - + Analisi %1% %2/%3 Analyzing %1/%2 - + Analisi %1/%2 @@ -3562,17 +3630,17 @@ Skip - + Salta Random - + Casuale Fade - + Sfuma @@ -3632,7 +3700,7 @@ Scorciatoia: Shift+F9 Seconds - + Secondi @@ -3741,14 +3809,14 @@ suono. Shuffle - + Mischia Adds a random track from track sources (crates) to the Auto DJ queue. If no track sources are configured, the track is added from the library instead. - Aggiunge una traccia casuale dalle sorgenti traccia (ceste) alla coda di Auto DJ. -Se nessuna sorgenti traccia sono configurate, la traccia verrà aggiunta invece dalla libreria. + Aggiunge una traccia casuale dalle sorgenti traccia (contenitori) alla coda di Auto DJ. +Se non è configurata nessuna sorgente traccia, la traccia verrà invece aggiunta dalla libreria. @@ -3761,47 +3829,52 @@ Se nessuna sorgenti traccia sono configurate, la traccia verrà aggiunta invece Enable BPM and Beat Detection - + Abilita il riconoscimento BPM e dei Beat Choose between different algorithms to detect beats. - + Sceglie fra diversi algoritmi per individuare le battute. Beat Detection Preferences - + Preferenze Riconoscimento Beat When beat detection is enabled, Mixxx detects the beats per minute and beats of your tracks, automatically shows a beat-grid for them, and allows you to synchronize tracks using their beat information. - + Quando il rilevamento del beat battute è abilitato, Mixxx rileva i bits per minuto delle tue tracce, +automaticamente mostra una griglia per le battute, e ti permette di sincronizzare le tracce usando le informazioni collezionate. Enable fast beat detection. If activated Mixxx only analyzes the first minute of a track for beat information. This can speed up beat detection on slower computers but may result in lower quality beatgrids. - + Abilita individuazione veloce dei battiti. +Se attivato Mixxx analizza solo il primo minuto delle tracce per ottenere informazioni sulle battute. +Questo velocizza il rilevamento dei battiti su computer lenti ma può generare griglie di battute di bassa qualità. Converts beats detected by the analyzer into a fixed-tempo beatgrid. Use this setting if your tracks have a constant tempo (e.g. most electronic music). Often results in higher quality beatgrids, but will not do well on tracks that have tempo shifts. - + Converte i battiti rilevati dall'analizzatore in una tabella con tempo fisso. +Usa quest'opzione se le tue tracce hanno un ritmo costante (ad esempio la maggior parte della musica elettronica). +Spesso si avrà un buon risultato con tracce a ritmo costante, non funzionerà bene su tracce che hanno cambi di ritmo. Re-analyze beatgrids imported from other DJ software - + Ri-analizza le beatgrids importate da altri DJ software Choose Analyzer - + Scegli Analizzatore @@ -3816,7 +3889,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Assume constant tempo (Recommended) - + Assume un tempo costante (Consigliato) @@ -3827,7 +3900,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Re-analyze beats when settings change or beat detection data is outdated - + Rianalizza battute quando le opzioni cambiano o le informazioni sulla traccia sono obsolete @@ -3835,52 +3908,52 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Controller Learning Wizard - + Wizard Addestramento Controller Learn - + Addestra Close - + Chiudi Choose Control... - + Scegli Controllo... Hints: If you're mapping a button or switch, only press or flip it once. For knobs and sliders, move the control in both directions for best results. Make sure to touch one control at a time. - + Suggerimento: Se stai mappando un bottone o un interruttore, premilo o azionalo una volta. Per manopole e sliders, muovi il controllo in entrambe le direzioni per risultati migliori. Assicurati di premere solo un controllo alla volta. Cancel - + Annulla Advanced MIDI Options - + Opzioni MIDI Avanzate Switch mode interprets all messages for the control as button presses. - + Modalità tasto interpreta tutti i messaggi per il controllo come pressioni di tasti. Switch Mode - + Modalità Tasto Ignores slider or knob movements until they are close to the internal value. This helps prevent unwanted extreme changes while mixing but can accidentally ignore intentional rapid movements. - + Ignora il movimento di manopole e slider fino a quando non sono vicini al valore interno. Questo permette di prevenire cambiamenti estremi durante i mix ma potrebbero venir ignorati movimenti intenzionalmente rapidi. @@ -3890,42 +3963,42 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Reverses the direction of the control. - + Inverti la direzione del controllo. Invert - + Inverti For jog wheels or infinite-scroll knobs. Interprets incoming messages in two's complement. - + Per jog wheels o manopole infinite-scroll. Interpreta i messaggi in arrivo nel complemento di due. Jog Wheel / Select Knob - + Jog Wheel / Select Knob Retry - + Riprova Learn Another - + Addestra Altro Done - + Fatto Click anywhere in Mixxx or choose a control to learn - + Clicca dovunque su Mixxx o seleziona un controllo da addestrare @@ -3935,22 +4008,22 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Now test it out! - + Ora provalo! If you manipulate the control, you should see the Mixxx user interface respond the way you expect. - + Se tu utilizzi il controllo, dovresti vedere l'interfaccia utente di Mixxx rispondere nella modo previsto. Not quite right? - + Non proprio così? If the mapping is not working try enabling an advanced option below and then try the control again. Or click Retry to redetect the midi control. - + Se la mappatura non sta funzionando, prova ad abilitare un opzione avanzata fra le seguenti e prova il controllo di nuovo. Oppure clicca Riprova per riconoscere il controllo midi. @@ -3958,37 +4031,37 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Developer Tools - + Strumenti Sviluppatore Controls - + Controlli Dumps all ControlObject values to a csv-file saved in the settings path (e.g. ~/.mixxx) - + Esegue il dump di tutti i valori ControlObject in un file csv salvato nelle impostazioni dei percorsi (esempio ~/.mixxx) Dump to csv - + Salva dump in csv Log - + Log Search - + Cerca Stats - + Statistiche @@ -3996,7 +4069,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Hidden Tracks - + Tracce Nascoste @@ -4016,7 +4089,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Purge - + Elimina @@ -4026,12 +4099,12 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Unhide - + Mostra Ctrl+S - + Ctrl+S @@ -4039,7 +4112,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Keywheel - + Keywheel @@ -4052,7 +4125,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Missing Tracks - + Tracce Mancanti @@ -4072,7 +4145,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Purge - + Elimina @@ -4085,12 +4158,12 @@ Often results in higher quality beatgrids, but will not do well on tracks that h hh:mm - + hh:mm Minimum available tracks in Track Source - + Tracce minime disponibili nella Sorgente Tracce @@ -4100,7 +4173,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Re-queue Tracks - + Ri-accoda Tracce @@ -4116,12 +4189,12 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Uncheck, to ignore all played tracks. - + Deseleziona, per ignorare tutte le tracce suonate. Suspend track in Track Source from re-queue - + Sospende la traccia dal riaccodamento dalle Tracce Sorgenti @@ -4131,12 +4204,12 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Add Random Tracks - + Aggiungi Tracce Casuali Enable random track addition to queue - + Abilita l'aggiunta tracce casuali alla coda @@ -4146,7 +4219,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Minimum allowed tracks before addition - + Numero minimo tracce prima di consentire l'aggiunta @@ -4159,47 +4232,47 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Icecast 2 - + Icecast 2 Shoutcast 1 - + Shoutcast 1 Icecast 1 - + Icecast 1 MP3 - + MP3 Ogg Vorbis - + Ogg Vorbis Opus - + Opus AAC - + AAC HE-AAC - + HE-AAC HE-AACv2 - + HE-AACv2 @@ -4228,48 +4301,49 @@ Often results in higher quality beatgrids, but will not do well on tracks that h '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server can't have the same mountpoint. - + '%1' ha lo stesso mountpoint Icecast di '%2'. +Due connessioni sorgente allo stesso server non possono avere lo stesso mountpoint. You can't create more than %1 source connections. - + Non puoi creare più di %1 connessioni sorgente. Source connection %1 - + Connessione sorgente %1 At least one source connection is required. - + Almeno una connessione sorgente è richiesta. Are you sure you want to disconnect every active source connection? - + Sei sicuro di voler disconnettere tutte le connessioni sorgente attive? Confirmation required - + Richiesta conferma Are you sure you want to delete '%1'? - + Sei sicuro di voler cancellare '%1'? Renaming '%1' - + Rinomino '%1' New name for '%1': - + Nuovo nome per '%1': @@ -4282,37 +4356,37 @@ Two source connections to the same server can't have the same mountpoint. Live Broadcasting Preferences - Preferenze Live Broadcasting + Preferenze Trasmissione Live Mixxx Icecast Testing - + Mixxx Icecast Testing Public stream - + Stream pubblico http://www.mixxx.org - + http://www.mixxx.org Stream name - + Nome stream Due to flaws in some streaming clients, updating Ogg Vorbis metadata dynamically can cause listener glitches and disconnections. Check this box to update the metadata anyway. - + A causa di falle in alcuni client per lo streaming, aggiornare i metadata Ogg Vorbis dinamicamente potrebbe causare problemi e disconnessioni agli ascoltatori. Spunta questa casella per aggiornare i metadata comunque. Live Broadcasting source connections - Sorgente connessione Live Broadcasting + Sorgente connessioni Trasmissione Live @@ -4322,7 +4396,7 @@ Two source connections to the same server can't have the same mountpoint. Create new connection - + Crea nuova connessione @@ -4332,17 +4406,17 @@ Two source connections to the same server can't have the same mountpoint. Disconnect all - + Disconnetti tutto Turn on Live Broadcasting when applying these settings - Attiva il live Broadcasting all'applicazione di queste impostazioni. + Attiva la Trasmissione Live quando si applicano queste impostazioni Settings for %1 - + Impostazione per %1 @@ -4352,47 +4426,47 @@ Two source connections to the same server can't have the same mountpoint. ICQ - + ICQ AIM - + AIM Website - + Sito Web Live mix - + Mix live IRC - + IRC Select a source connection above to edit its settings here - + Seleziona una connessione sorgente sopra per modificarne le impostazioni qui Password storage - + Memorizzazione password Plain text - + Testo in chiaro Secure storage (OS keychain) - + Memorizzazione sicura (OS keychain) @@ -4412,7 +4486,7 @@ Two source connections to the same server can't have the same mountpoint. Encoding - + Codifica @@ -4423,7 +4497,7 @@ Two source connections to the same server can't have the same mountpoint. Format - + Formato @@ -4433,7 +4507,7 @@ Two source connections to the same server can't have the same mountpoint. Server connection - + Connessione server @@ -4443,32 +4517,32 @@ Two source connections to the same server can't have the same mountpoint. Host - + Host Login - + Login Mount - + Mount Port - + Porta Password - + Password Stream info - + Stream info @@ -4478,17 +4552,17 @@ Two source connections to the same server can't have the same mountpoint. Use static artist and title. - + Usa artista e titolo statici. Static title - + Titolo statico Static artist - + Artista statico @@ -4498,7 +4572,7 @@ Two source connections to the same server can't have the same mountpoint. Time to wait before the first reconnection attempt is made. - + Tempo di attesa prima di effettuare il primo tentativo di riconnessione. @@ -4509,32 +4583,32 @@ Two source connections to the same server can't have the same mountpoint. Wait until first attempt - + Attesa fino al primo tentativo Reconnect period - + Periodo di riconnessione Time to wait between two reconnection attempts. - + Tempo di attesa fra due tentativi di riconnessione. Limit number of reconnection attempts - + Numero limite di tentativi di riconnessione Maximum retries - + Numero massimo tentativi Reconnect if the connection to the streaming server is lost. - + Riconnetti se la connessione al streaming server è persa. @@ -4548,7 +4622,7 @@ Two source connections to the same server can't have the same mountpoint. By hotcue number - + Per numero hotcue @@ -4572,32 +4646,32 @@ Two source connections to the same server can't have the same mountpoint. Edit… - + Modifica… Track palette - + Tavolozza traccia Loop default color - + Loop colore default Hotcue palette - + Tavolozza hotcue Hotcue default color - + Hotcue colore default Replace… - + Sostituisci… @@ -4605,88 +4679,89 @@ Two source connections to the same server can't have the same mountpoint. Apply device settings? - + Applico impostazioni periferica? Your settings must be applied before starting the learning wizard. Apply settings and continue? - + La configurazione deve essere applicata prima di iniziare l'auto apprendimento. +Applicare la configurazione e continuare? None - + Nessuno/a %1 by %2 - + %1 by %2 No Name - + Nessun Nome No Description - + Nessuna descrizione No Author - + Nessun Autore Mapping has been edited - + La mappatura è stata modificata Always overwrite during this session - + Sovrascrivi sempre durante questa sessione Save As - + Salva come Overwrite - + Sovrascrivi Save user mapping - + Salva mapping utente Enter the name for saving the mapping to the user folder. - + Digita il nome per salvare il mapping nella cartella utente. Saving mapping failed - + Salvataggio mapping fallito A mapping cannot have a blank name and may not contain special characters. - + Un mapping non può avere un nome nullo e non deve contenere caratteri speciali. A mapping file with that name already exists. - + Un file mapping con lo stesso nome esiste già. missing - + mancante @@ -4696,47 +4771,47 @@ Apply settings and continue? Do you want to save the changes? - + Vuoi salvare le modifiche? Troubleshooting - + Risoluzione dei problemi <font color='#BB0000'><b>If you use this mapping your controller may not work correctly. Please select another mapping or disable the controller.</b></font><br><br>This mapping was designed for a newer Mixxx Controller Engine and cannot be used on your current Mixxx installation.<br>Your Mixxx installation has Controller Engine version %1. This mapping requires a Controller Engine version >= %2.<br><br>For more information visit the wiki page on <a href='https://mixxx.org/wiki/doku.php/controller_engine_versions'>Controller Engine Versions</a>. - + <font color='#BB0000'><b>ISe si utilizza questa mappatura, il controller potrebbe non funzionare correttamente. Selezionare un'altra mappatura o disabilitare il controller.</b></font><br><br>Questa mappatura è stata progettata per un nuovo motore di controllo Mixxx e non può essere utilizzata nell'installazione corrente di Mixxx.<br>L'installazione di Mixxx ha Controller Engine versione %1. Questa mappatura richiede una versione del motore di controllo >= %2.<br><br>Per maggiori informazioni visita la pagina wiki su <a href='https://mixxx.org/wiki/doku.php/controller_engine_versions'>Controller Engine Versions</a>. Mapping already exists. - + Mapping esiste già. <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + <b>%1</b> esiste già nella cartella mapping dell'utente.<br>Sovrascrivo o salvo con un nuovo nome? Clear Input Mappings - + Elimina Mappature di Input Are you sure you want to clear all input mappings? - + Sei sicuro di voler eliminare tutte le mappature di input? Clear Output Mappings - + Elimina Mappature di Output Are you sure you want to clear all output mappings? - + Sei sicuro di voler eliminare tutte le mappature di output? @@ -4744,12 +4819,12 @@ Apply settings and continue? (device category goes here) - + (la categoria del dispositivo va qui) Controller Name - + Nome controller @@ -4759,23 +4834,23 @@ Apply settings and continue? Description: - + Descrizione: Support: - + Supporto: Input Mappings - + Mappature Input Add - + Aggiungi @@ -4786,58 +4861,58 @@ Apply settings and continue? Click to start the Controller Learning wizard. - + Clicca per iniziare l'Addestramento Guidato del Supporto Controller Preferences - + Preferenze Controller Controller Setup - + Impostazione Controller Load Mapping: - + Carica Mapping: Mapping Info - + Mapping Info Author: - + Autore: Name: - + Nome: Learning Wizard (MIDI Only) - + Procedura guidata di apprendimento (Solo MIDI) Mapping Files: - + Files Mapping: Clear All - + Pulisci Tutto Output Mappings - + Output Mappings @@ -4845,22 +4920,22 @@ Apply settings and continue? Mixxx uses "mappings" to connect messages from your controller to controls in Mixxx. If you do not see a mapping for your controller in the "Load Mapping" menu when you click on your controller on the left sidebar, you may be able to download one online from the %1. Place the XML (.xml) and Javascript (.js) file(s) in the "User Mapping Folder" then restart Mixxx. If you download a mapping in a ZIP file, extract the XML and Javascript file(s) from the ZIP file to your "User Mapping Folder" then restart Mixxx. - + Mixxx usa i "mappings" per collegare messaggi dal tuo controller ai controlli presenti in Mixxx. Se non trovi una mappatura per il tuo controller nel menu "Carica Mappature" quando clicchi sul tuo controller nella barra laterale di sinistra, puoi scaricarne uno online da %1. Copia i file(s) XML (.xml) e Javascript (.js) nella cartella di "Cartella Mappature Utente" e riavvia Mixxx. Se scarichi una mappatura in formato ZIP, estrai dallo Zip i file(s) XML e Javascript nella cartella "v" e poi riavvia Mixxx. Mixxx DJ Hardware Guide - + Mixxx DJ Guida Hardware MIDI Mapping File Format - + MIDI Mapping Formato File MIDI Scripting with Javascript - + MIDI Scripting con Javascript @@ -4868,130 +4943,120 @@ Apply settings and continue? Controller Preferences - + Preferenze Controller Controllers - + Controllers Mixxx did not detect any controllers. If you connected the controller while Mixxx was running you must restart Mixxx first. - + Mixxx non ha rilevato nessun controller. Se hai collegato il controller mentre Mixx era in esecuzione, devi prima riavviare Mixxx. Mappings - + Mappings Open User Mapping Folder - + Apri Cartella Preset Utente Resources - + Risorse Controllers are physical devices that send MIDI or HID signals to your computer over a USB connection. These allow you to control Mixxx in a more hands-on way than a keyboard and mouse. Attached controllers that Mixxx recognizes are shown in the "Controllers" section in the sidebar. - + I controller sono dispositivi fisici che inviano segnali MIDI o HID al tuo computer tramite una connessione USB. Questi ti permettono di controllare Mixxx in modo più pratico rispetto a tastiera e mouse. I controller collegati che vengono riconosciuti da Mixxx sono mostrati nella sezione "Controllers" nella barra laterale. You can create your own mapping by using the MIDI Learning Wizard when you select your controller in the sidebar. You can edit mappings by selecting the "Input Mappings" and "Output Mappings" tabs in the preference page for your controller. See the Resources below for more details on making mappings. - + Puoi creare la tua mappatura personalizzata usando la Procedura guidata di apprendimento MIDI quando selezioni il tuo controller nella sidebar. Puoi modificare le mappature selezionando i tab "Mappature di Input" e "Mappature di Output" nella pagina delle preferenze per il tuo controller. Controlla per maggiori dettagli le risorse seguenti riguardo la creazione delle mappature. DlgPrefControlsDlg - + Skin - + Skin - + Tool tips - + Suggerimenti - + Select from different color schemes of a skin if available. - + Seleziona fra differenti schema colori di un tema se disponibili. - + Color scheme Schema colore - + Locales determine country and language specific settings. - + I locales determinano paese e impostazioni specifiche della lingua. - + Locale - + Locale Interface Preferences - + Preferenze Interfaccia - + HiDPI / Retina scaling - + Scalatura HiDPI / Retina - + Change the size of text, buttons, and other items. - + Modifica la dimensione del testo, bottoni, ed altri elementi. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Salvaschermo - + Start in full-screen mode - + Avvia in modalità schermo intero - + Full-screen mode - + Modalità schermo intero - + Off - + Off - + Library only - + Solo libreria - + Library and Skin - + Libreria e Skin @@ -4999,12 +5064,12 @@ Apply settings and continue? Crossfader Preferences - + Preferenze Crossfader Crossfader Curve - + Curva Crossfader @@ -5014,32 +5079,32 @@ Apply settings and continue? Constant power - + Potenza Costante Mixing - + Mixaggio Scratching - + Scratching Linear - + Lineare Logarithmic - + Logaritmico Reverse crossfader (Hamster Style) - + Crossfader inverso (Hamster style) @@ -5047,117 +5112,117 @@ Apply settings and continue? Mixxx mode - + Modalità Mixxx Mixxx mode (no blinking) - + Modo Mixxx (nessun lampeggio) Pioneer mode - + Modalità Pioneer Denon mode - + Modalità Denon Numark mode - + Modalità Numark CUP mode - + Modalità Cue mm:ss%1zz - Traditional - + mm:ss%1zz - Tradizionale mm:ss - Traditional (Coarse) - + mm:ss - Tradizionale (Grossolano) s%1zz - Seconds - + s%1zz - Secondi sss%1zz - Seconds (Long) - + sss%1zz - Secondi (Long) s%1sss%2zz - Kiloseconds - + s%1sss%2zz - Kilosecondi Intro start - + Intro inizio Main cue - + Main cue First sound (skip silence) - + Primo suono (salta silenzio) Beginning of track - + Inizio della traccia 4% - + 4% 6% (semitone) - + 6% (semitono) 8% (Technics SL-1210) - + 8% (Technics SL-1210) 10% - + 10% 16% - + 16% 24% - + 24% 50% - + 50% 90% - + 90% @@ -5165,17 +5230,17 @@ Apply settings and continue? Deck Preferences - + Preferenze Deck Deck options - + Opzioni Deck Cue mode - + Modo Cue @@ -5198,32 +5263,50 @@ CUP mode: - Cue button while pause not at cue point = set cue point and play after release - Cue button while playing = go to cue point and play after release - + Modo Mixxx: +- Pulsante Cue mentra pausa al cue point = anteprima +- Pulsante Cue mentre pausa non al cue point = fissa cue point +- Pulsante Cue mentre riproduce = pausa al cue point +Modo Mixxx (senza lampeggio): +- Come il Modo Mixxx ma senza indicatori lampeggianti +Modo Pioneer: +- Come il modo Mixxx con un tasto play lampeggiante +Modo Denon: +- Pulsante Cue al cue point = anteprima +- Pulsante Cue non al cue point = pausa al cue point +- Play = fissa il cue point +Modo Numark: +- Come Modo Denon, ma senza lampeggio sul pulsante play +Modo CUP: +- Pulsante Cue mentre pausa al cue point = riproduce al rilascio +- Pulsante Cue mentre pausa non al cue point = imposta il cue point e riproduce al rilascio +- Pulsante Cue mentre riproduce = và al cue point e riproduce al rilascio + Track time display - + Mostra tempo traccia Elapsed - + Trascorso Remaining - + Rimanente Elapsed and Remaining - + Trascorso e Rimanente Playing track protection - + Protezione traccia in riproduzione @@ -5233,12 +5316,12 @@ CUP mode: Time Format - + Formato Tempo Intro start - + Intro inizio @@ -5256,38 +5339,39 @@ Se questa opzione è disabilitata, il punto di partenza dell'intro viene po Set intro start to main cue when analyzing tracks - + Imposta inizio intro al main cue quando analizza tracce Track load point - + Punto caricamento traccia Clone deck - + Clona deck Create a playing clone of the first playing deck by double-tapping a Load button on a controller or keyboard. You can always drag-and-drop tracks on screen to clone a deck. - + Crea una copia clonata del primo deck in riproduzione premendo due volte sul bottone Carica su un controllo o tastiera. +Puoi sempre trascinare tracce sullo schermo per clonare un deck. Double-press Load button to clone playing track - + Premi due volte il Pulsante Carica per clonare la traccia in riproduzione Speed (Tempo) and Key (Pitch) options - + Opzioni Velocità (tempo) e Chiave (Pitch) Permanent rate change when left-clicking - + Cambio rate permanente al click-sinistro @@ -5300,72 +5384,72 @@ You can always drag-and-drop tracks on screen to clone a deck. Permanent rate change when right-clicking - + Cambio di rate permanente al click-destro Reset on track load - + Resetta al caricamento traccia Current key - + Chiave Corrente Temporary rate change when right-clicking - + Cambio di rate temporaneo al click-destro Permanent - + Permanente Value in milliseconds - + Valore in millisecondi Temporary - + Temporaneo Keylock mode - + Modo keylock Ramping sensitivity - + Sensibilità scivolamento Pitch bend behavior - + Comportamento pitch bend Original key - + Chiave Originale Temporary rate change when left-clicking - + Cambia rate temporaneamente al click-sinistro Speed/Tempo - + Velocità/Tempo Key/Pitch - + Chiave/Pitch @@ -5375,27 +5459,27 @@ You can always drag-and-drop tracks on screen to clone a deck. Coarse - + Grossolano Fine - + Fine Make the speed sliders work like those on DJ turntables and CDJs where moving downward increases the speed - + Rende il funzionamento del cursore della velocità uguale a quelli che si trovano sui giradischi da DJ e sui CDJ, nei quali muovendo il cursore verso il basso la velocità aumenta Down increases speed - + Giù Diminuisce Velocità Slider range - + Intervallo cursore @@ -5405,7 +5489,7 @@ You can always drag-and-drop tracks on screen to clone a deck. Abrupt jump - + Salto improvviso @@ -5415,7 +5499,7 @@ You can always drag-and-drop tracks on screen to clone a deck. Smooth ramping - + Scivolamento morbido @@ -5425,12 +5509,12 @@ You can always drag-and-drop tracks on screen to clone a deck. Reset key - + Resetta chiave Keep key - + Tieni chiave @@ -5448,7 +5532,7 @@ You can always drag-and-drop tracks on screen to clone a deck. Reset equalizers on track load - + Resetta equalizzatori al caricamento traccia @@ -5458,32 +5542,32 @@ You can always drag-and-drop tracks on screen to clone a deck. Equalizer Rack - + Rack equalizzatore Only allow EQ knobs to control EQ-specific effects - + Permette solo l'uso delle manopole EQ per controllare effetti EQ-specifici Uncheck to allow any effect to be loaded into the EQ knobs. - + Dibilitare per permettere che qualsiasi effetto sia caricato nelle manopole EQ. Use the same EQ filter for all decks - + Usa lo stesso filtro EQ per tutti i decks Uncheck to allow different decks to use different EQ effects. - + Disabilitare per permettere che differenti decks usino differenti effetti EQ. Equalizer Plugin - + Plugin Equalizzatore @@ -5499,43 +5583,43 @@ You can always drag-and-drop tracks on screen to clone a deck. 16 Hz - + 16 Hz Reset Parameter - + Resetta Parametri Miscellaneous - + Miscellanea Resets the deck gain to unity when loading a track. - + Resetta il guadagno del deck alla singola unità al caricamento di una traccia. Reset gain on track load - + Resetta guadagno al caricamento traccia Bypass EQ effect processing - + Bypassa processo effetti EQ When checked, EQs are not processed, improving performance on slower computers. - + Quando abilitato, EQs non sono elaborati, aumentando così le prestazioni sui computer più lenti. 20.05 kHz - + 20.05 kHz @@ -5553,17 +5637,17 @@ You can always drag-and-drop tracks on screen to clone a deck. Effect load behavior - + Comportamento caricamento effetto Keep metaknob position - + Tiene posizione metaknob Reset metaknob to effect default - + Resetta metaknob all'effetto predefinito @@ -5578,64 +5662,64 @@ You can always drag-and-drop tracks on screen to clone a deck. Version: - + Versione: Description: - + Descrizione: Author: - + Autore: Name: - + Nome: Type: - + Tipo: DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + La dimensione minore della skin selezionata è maggiore della risoluzione del tuo schermo. - + Allow screensaver to run - + Permette di avviare il salvaschermo - + Prevent screensaver from running - + Evita l'avvio del salvaschermo - + Prevent screensaver while playing - + Evita l'avvio del salvaschermo durante la riproduzione - + This skin does not support color schemes - + Questa skin non supporta gli schemi di colore - + Information - + Informazione - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5644,28 +5728,28 @@ You can always drag-and-drop tracks on screen to clone a deck. Key Notation Format Settings - + Impostazioni Formato Notazione Chiave When key detection is enabled, Mixxx detects the musical key of your tracks and allows you to pitch adjust them for harmonic mixing. - + Quando il rilevamento della chiave è abilitato, Mixxx rileva la chiave musicale delle tracce e consente di regolare l'intonazione per la miscelazione armonica. Enable Key Detection - + Abilita Rilevamento Chiave Choose Analyzer - + Scegli Analizzatore Choose between different algorithms to detect keys. - + Scegli tra diversi algoritmi per rilevare le chiavi. @@ -5680,17 +5764,17 @@ and allows you to pitch adjust them for harmonic mixing. Re-analyze keys when settings change or 3rd-party keys are present - + Rianalizza le chiavi quando cambiano le impostazioni o quando sono presenti chiavi di terze parti Key Notation - + Notazione chiave Lancelot - + Lancelot @@ -5700,142 +5784,142 @@ and allows you to pitch adjust them for harmonic mixing. OpenKey - + OpenKey OpenKey/Traditional - + OpenKey/Traditional Traditional - + Tradizionale Custom - + Personalizzato A - + A Bb - + Bb B - + B C - + Do Db - + ReBem D - + Re Eb - + MiBem E - + Mi F - + Fa F# - + FaDie G - + Sol Ab - + LaBem Am - + LaMin Bbm - + SiBemMin Bm - + SiMin Cm - + DoMin C#m - + DoBemMin Dm - + ReMin Ebm - + MiBemMin Em - + MiMin Fm - + FaMin F#m - + FaBemMin Gm - + SolMin G#m - + SolBemMin @@ -5848,70 +5932,70 @@ and allows you to pitch adjust them for harmonic mixing. Discovered LV2 effects - + Effetti LV2 trovati DlgPrefLibrary - + Music Directory Added Cartella Musica Aggiunta - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? Hai aggiunto una o più cartelle contenenti musica. Le tracce in queste cartelle non saranno disponibili fino a che non riscansioni la tua libreria. Vuoi riscansionare ora? - + Scan Scansiona - + Choose a music directory Scegli una cartella musica - + Confirm Directory Removal Confirma Rimozione Cartella - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Mixxx non monitorerà più questa directory alla ricerca di nuove tracce. Cosa intendi fare con le tracce di questa directory e subdirectory?<ul><li>Nascondi tutte le tracce da questa directory e subdirectory</li><li>Cancella tutti i metadata di queste tracce da Mixxx permanentemente.</li><li>Lascia le tracce inalterate nella tua libreria</li></ul>Se nascondi le tracce, i loro metadata saranno conservati nel caso tu dovessi riaggiungerle in futuro - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Metadata specifica tutti i dati di dettaglio della traccia (artista, titolo, etc.) e anche beatgrids, hotcues, e loop. Questa scelta riguarda solo la libreria Mixxx. Non verranno modificati o cancellati i files sul disco. - + Hide Tracks - + Nascondi Tracce - + Delete Track Metadata Cancella Metadati Traccia - + Leave Tracks Unchanged - + Lascia Tracce senza cambiamenti - + Relink music directory to new location - + Collega la cartella musica alla nuova posizione - + Select Library Font - + Seleziona Libreria Font @@ -5924,12 +6008,12 @@ and allows you to pitch adjust them for harmonic mixing. Music Directories: - + Cartelle Musica: If removed, Mixxx will no longer watch this directory and its subdirectories for new tracks. - + Se rimossa, Mixxx non monitorerà più questa cartella e le sue sottocartelle per rilevare nuove tracce. @@ -5939,28 +6023,28 @@ and allows you to pitch adjust them for harmonic mixing. Add a directory where your music is stored. Mixxx will watch this directory and its subdirectories for new tracks. - + Aggiunge una cartella nella quale la tua musica è memorizzata. Mixxx monitorerà questa cartella e le sue sottocartelle per rilevare nuove tracce. Add - + Aggiungi If an existing music directory is moved, Mixxx doesn't know where to find the audio files in it. Choose Relink to select the music directory in its new location. <br/> This will re-establish the links to the audio files in the Mixxx library. - + Se una cartella viene spostata, Mixxx non saprà più dove trovare i files audio. Scegli Ricollega per selezionare la nuova posizione. <br/> Ciò ristabilirà il collegamento ai files audio nella libreria Mixxx. Relink This will re-establish the links to the audio files in the Mixxx database if you move an music directory to a new location. - + Ricollega Audio File Formats - + Formati File Audio @@ -5970,72 +6054,72 @@ and allows you to pitch adjust them for harmonic mixing. Write Serato Metadata to files (experimental) - + Scrivi Metadati Serato su files (sperimentale) Miscellaneous - + Miscellanea Library Font: - + Font Libreria: Settings Folder - + Cartella Impostazioni The Mixxx settings folder contains the library database, various configuration files, log files, track analysis data, as well as custom controller mappings. - + La cartella impostazioni Mixxx contiene il database della libreria, vari files di configurazione, files log, dati di analisi traccia, così come i mappings personalizzati del controller. Edit those files only if you know what you are doing and only while Mixxx is not running. - + Modificare quei files solo se sapete cosa state facendo e solo quando Mixxx non è attivo. Open Mixxx Settings Folder - + Apre Cartella Impostazioni Mixxx Library Row Height: - + Altezza Riga Libreria: Rescan library on start-up - + Riscansiona libreria all'avvio Use relative paths for playlist export if possible - + Usa sentiero relativo per l'export della playlist se possibile ... - + ... px - + px Edit metadata after clicking selected track - + Modifica metadati dopo il click sulla traccia selezionata Search-as-you-type timeout: - + Timeout di ricerca alla digitazione: @@ -6050,7 +6134,7 @@ and allows you to pitch adjust them for harmonic mixing. External Libraries - + Librerie Esterne @@ -6060,63 +6144,63 @@ and allows you to pitch adjust them for harmonic mixing. Show Rhythmbox Library - + Mostra Libreria Rhythmbox Automatically write modified track metadata from the library into file tags - + Scrive automaticamente i metadati della traccia modificati dalla libreria nei tags del file Track Double-Click Action Sets default action when double-clicking a track in the library. - + Azione doppio-click Traccia Add track to Auto DJ queue (bottom) - + Aggiunge traccia alla coda Auto DJ (in fondo) Add track to Auto DJ queue (top) - + Aggiunge traccia alla coda Auto DJ (in cima) Ignore - + Ignora Show Banshee Library - + Mostra Libreria Banshee Show iTunes Library - + Mostra Libreria iTunes Show Traktor Library - + Mostra Libreria Traktor Show Rekordbox Library - + Mostra Libreria Rekordbox Show Serato Library - + Mostra Libreria Serato All external libraries shown are write protected. - + Tutte le librerie esterne mostrate sono protette in scrittura. @@ -6124,51 +6208,51 @@ and allows you to pitch adjust them for harmonic mixing. Modplug Preferences - + Preferenze Modplug Maximum Number of Mixing Channels: - + Numero Massimo di Canali di Mixing: Show Advanced Settings - + Mostra Impostazioni Avanzate Low - + Basso Reverb Delay: - + Ritardo Riverbero: High - + Alto None - + Nessuno/a Bass Expansion - + Espansione Bassi Bass Range: - + Intervallo Bassi: @@ -6178,67 +6262,67 @@ and allows you to pitch adjust them for harmonic mixing. Front/Rear Delay: - + Ritardo Fronte/Retro: Pro-Logic Surround - + Pro-Logic Surround Full - + Full Reverb - + Riverbero Stereo separation - + Separazione stereo 10Hz - + 10Hz 10ms - + 10ms 256 - + 256 5ms - + 5ms 100Hz - + 100Hz 250ms - + 250ms 50ms - + 50ms Noise reduction - + Riduzione rumore @@ -6248,57 +6332,57 @@ and allows you to pitch adjust them for harmonic mixing. Module files are decoded at once and kept in RAM to allow for seeking and smooth operation in Mixxx. About 10MB of RAM are required for 1 minute of audio. - + I file dei moduli vengono decodificati in una sola volta e mantenuti in RAM per consentire la ricerca e il funzionamento regolare in Mixxx. Circa 10MB di RAM sono necessari per 1 minuto di audio. Decoding options for libmodplug, a software library for loading and rendering module files (MOD music, tracker music). - + Opzioni di decodifica per libmodplug, una libreria software per il caricamento e il rendering dei file dei moduli (musica MOD, musica tracker). Decoding Options - + Opzioni Decodifica Resampling mode (interpolation) - + Modo Resampling (interpolazione) Enable oversampling - + Abilita oversampling Nearest (very fast, extremely bad quality) - + Più vicino (molto veloce, di pessima qualità) Linear (fast, good quality) - + Lineare (veloce, buona qualità) Cubic Spline (high quality) - + Cubic Spline (alta qualità) 8-tap FIR (extremely high quality) - + 8-tap FIR (qualità estremamente alta) Memory limit for single track (MB) - + Limite memoria per singola traccia (MB) All settings take effect on next track load. Currently loaded tracks are not affected. For an explanation of these settings, see the %1 - + Tutte le impostazioni hanno effetto al caricamento della prossima traccia. Le modifiche non avranno effetto per le tracce correntemente caricate. Per una spiegazione di queste impostazioni, vedere il %1 @@ -6306,33 +6390,33 @@ and allows you to pitch adjust them for harmonic mixing. Choose recordings directory - + Scelta cartella registrazioni Recordings directory invalid - + Cartella registrazioni non valida Recordings directory must be set to an existing directory. - + La cartella registrazioni deve essere impostata su una cartella esistente. Recordings directory must be set to a directory. - + La cartella registrazioni deve essere impostata su una cartella. Recordings directory not writable - + La cartella registrazioni non è scrivibile You do not have write access to %1. Choose a recordings directory you have write access to. - + Non hai accesso in scrittura a %1. Scegli una cartella registrazioni dove hai accesso in scrittura. @@ -6340,12 +6424,12 @@ and allows you to pitch adjust them for harmonic mixing. Recording Preferences - + Preferenze Registrazioni Browse... - + Scorri... @@ -6356,7 +6440,7 @@ and allows you to pitch adjust them for harmonic mixing. Tags - + Tags @@ -6366,7 +6450,7 @@ and allows you to pitch adjust them for harmonic mixing. Author - + Autore @@ -6376,42 +6460,42 @@ and allows you to pitch adjust them for harmonic mixing. Output File Format - + Formato audio Output Compression - + Compressione Lossy - + Con perdita Recording Files - + Files Registrazioni Directory: - + Cartella: Compression Level - + Livello Compressione Lossless - + Senza perdita Create a CUE file - + Crea un file CUE @@ -6437,27 +6521,27 @@ and allows you to pitch adjust them for harmonic mixing. ReplayGain Loudness Normalization - + Normalizzazione ReplayGain Loudness Apply loudness normalization to loaded tracks. - + Applica la normalizzazione del loudness alle tracce caricate. Apply ReplayGain - + Applica ReplayGain -30 LUFS - + -30 LUFS -6 LUFS - + -6 LUFS @@ -6467,7 +6551,7 @@ and allows you to pitch adjust them for harmonic mixing. Initial boost without ReplayGain data - + Aumento iniziale senza dati ReplayGain @@ -6477,7 +6561,7 @@ and allows you to pitch adjust them for harmonic mixing. Target loudness - + Destinazione Loudness @@ -6492,12 +6576,12 @@ and allows you to pitch adjust them for harmonic mixing. ReplayGain 2.0 (ITU-R BS.1770) - + ReplayGain 2.0 (ITU-R BS.1770) ReplayGain 1.0 - + ReplayGain 1.0 @@ -6514,17 +6598,18 @@ and allows you to pitch adjust them for harmonic mixing. ReplayGain targets a reference loudness of -18 LUFS (Loudness Units relative to Full Scale). You may increase it if you find Mixxx is too quiet or reduce it if you find that your tracks are clipping. You may also want to decrease the volume of unanalyzed tracks if you find they are often louder than ReplayGained tracks. For podcasting a loudness of -16 LUFS is recommended. The loudness target is approximate and assumes track pregain and master output level are unchanged. - + ReplayGain utilizza un loudness di riferimento di -18 LUFS (Loudness Units relative to Full Scale). Dovresti incrementare se ritieni che Mixxx suona silenziosamente oppure ridurlo se le tracce suonano distorte - clipping -. Potresti anche aver bisogno di diminuire il volume delle tracce non analizzate se ritieni che sono di volume troppo alto delle tracce su cui hai applicato ReplayGain. Per il podcasting è consigliato un loudness di -16 LUFS. +Il loudness finale è approssimativo e presume che pregain e master livello master output sia lasciato inalterato. When an unanalyzed track is playing, Mixxx will avoid an abrupt volume change by not applying a newly calculated ReplayGain value. - + Quando una traccia non analizzata è in riproduzione, Mixxx eviterà un brusco cambiamento di volume non applicando un valore di Replaygain appena calcolato. +12 dB - + +12 dB @@ -6557,12 +6642,12 @@ The loudness target is approximate and assumes track pregain and master output l Soundcard Clock - + Clock Scheda Audio Network Clock - + Clock Rete @@ -6592,33 +6677,33 @@ The loudness target is approximate and assumes track pregain and master output l To enable Realtime scheduling (currently disabled), see the %1. - + Per abilitare lo scheduling Realtime (attualmente disabilitato), vedere il %1. The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Le %1 liste schede audio e controllori che puoi voler considerare per l'uso con Mixxx. Mixxx DJ Hardware Guide - + Mixxx DJ Guida Hardware Microphone inputs are out of time in the record & broadcast signal compared to what you hear. - + Gli inputs microfonici sono fuori tempo nel segnale di registrazione & trasmissione rispetto a quanto senti. Measure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Misura la latenza di round trip e la impone per la Compensazione Latenza Microfono per allineare la temporizzazione microfono. Refer to the Mixxx User Manual for details. - + Riferirsi al Manuale Utente Mixxx per dettagli. @@ -6628,22 +6713,22 @@ The loudness target is approximate and assumes track pregain and master output l Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Rimisura la latenza di round trip e la impone per la Compensazione Latenza Microfono per allineare la temporizzazione microfono. Realtime scheduling is enabled. - + Realtime scheduling è abilitato. Main output only - + Solo uscita master Main and booth outputs - + Uscite master e booth @@ -6666,12 +6751,12 @@ The loudness target is approximate and assumes track pregain and master output l Sound API - + API audio Sample Rate - + Frequenza Campionamento @@ -6681,32 +6766,32 @@ The loudness target is approximate and assumes track pregain and master output l Engine Clock - + Motore Clock Use soundcard clock for live audience setups and lowest latency.<br>Use network clock for broadcasting without a live audience. - + Usa il clock della scheda audio per le impostazioni dell'ascolto dal vivo e la più bassa latenza.<br>Usa il clock di rete per trasmissione senza ascolto dal vivo. Main Mix - + Main Mix Main Output Mode - + Modo Uscita Main Microphone Monitor Mode - + Modo Monitor Microfono Microphone Latency Compensation - + Compensazione Latenza Microfono @@ -6725,7 +6810,7 @@ The loudness target is approximate and assumes track pregain and master output l Buffer Underflow Count - + Numero Buffer Underflow @@ -6735,47 +6820,47 @@ The loudness target is approximate and assumes track pregain and master output l Keylock/Pitch-Bending Engine - + Keylock/Pitch-Bending Engine Multi-Soundcard Synchronization - + Sincronizzazione Schede Audio Multiple Output - + Uscita Input - + Ingresso System Reported Latency - + Latenza Sistema Riscontrata Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. - + Aumenta il tuo buffer audio se il contatore di underflow aumenta oppure se senti dei salti o rumori durante la riproduzione. Main Output Delay - + Ritardo Uscita Master Headphone Output Delay - + Ritardo Uscita Cuffia Booth Output Delay - + Ritardo Uscita Booth @@ -6785,12 +6870,12 @@ The loudness target is approximate and assumes track pregain and master output l Downsize your audio buffer to improve Mixxx's responsiveness. - + Riduci il tuo buffer audio per aumentare la responsività di Mixxx Query Devices - + Interroga Dispositivi @@ -6809,12 +6894,12 @@ The loudness target is approximate and assumes track pregain and master output l Sound Item Preferences Constructs new sound items inside the Sound Hardware Preferences, representing an AudioPath and SoundDevice - + Preferenze Dispositivi Audio Type (#) - + Tipo (#) @@ -6822,7 +6907,7 @@ The loudness target is approximate and assumes track pregain and master output l Input - + Ingresso @@ -6832,7 +6917,7 @@ The loudness target is approximate and assumes track pregain and master output l Show Signal Quality in Skin - + Mostra Qualità Segnale nella Skin @@ -6842,7 +6927,7 @@ The loudness target is approximate and assumes track pregain and master output l Turntable Input Signal Boost - + Incremento Entrata Segnale Giradischi @@ -6857,7 +6942,7 @@ The loudness target is approximate and assumes track pregain and master output l Vinyl Type - + Tipo Vinile @@ -6867,22 +6952,22 @@ The loudness target is approximate and assumes track pregain and master output l Deck 1 - + Deck 1 Deck 2 - + Deck 2 Deck 3 - + Deck 3 Deck 4 - + Deck 4 @@ -6907,38 +6992,38 @@ The loudness target is approximate and assumes track pregain and master output l Select sound devices for Vinyl Control in the Sound Hardware pane. - Seleziona i dispositivi per Controllo Vinile nel pannello Suono Hardware. + Seleziona i dispositivi per Controllo Vinile nel pannello Hardware Suono. DlgPrefWaveform - + Filtered Filtrato - + HSV - + HSV - + RGB RGB - + OpenGL not available OpenGL non disponibile - + dropped frames - + frammenti persi - + Cached waveforms occupy %1 MiB on disk. Le forme d'onda memorizzate in cache occupano %1 MiB sul disco. @@ -6953,7 +7038,7 @@ The loudness target is approximate and assumes track pregain and master output l Frame rate - + Frame rate @@ -6968,12 +7053,12 @@ The loudness target is approximate and assumes track pregain and master output l Average frame rate - + Frame rate medio Visual gain - + Visione Guadagno @@ -6984,12 +7069,12 @@ The loudness target is approximate and assumes track pregain and master output l Displays the actual frame rate. - + Mostra il frame rate corrente. Visual gain of the middle frequencies - + Visuale guadagno delle frequenze medie @@ -7014,32 +7099,32 @@ The loudness target is approximate and assumes track pregain and master output l Low - + Basso Middle - + Medi Global - + Globale Visual gain of the high frequencies - + Visuale guadagno delle frequenze alte Visual gain of the low frequencies - + Visuale guadagno delle frequenze basse High - + Alto @@ -7049,7 +7134,7 @@ The loudness target is approximate and assumes track pregain and master output l Global visual gain - + Visione guadagno globale @@ -7072,7 +7157,7 @@ Select from different types of displays for the waveform, which differ primarily fps - + fps @@ -7082,12 +7167,12 @@ Select from different types of displays for the waveform, which differ primarily Synchronize zoom level across all waveforms - Sincronizza il livello di zoom fra tutte le forme d'onda. + Sincronizza il livello di zoom fra tutte le forme d'onda Caching - + Caching @@ -7102,17 +7187,17 @@ Select from different types of displays for the waveform, which differ primarily Generate waveforms when analyzing library - Genera le forme d'onda quando analizza la libreria + Genera le forme d'onda quando si analizza la libreria Beat grid opacity - + Opacità griglia battute Set amount of opacity on beat grid lines. - + Imposta l'opacità delle linee della griglia battute. @@ -7122,7 +7207,7 @@ Select from different types of displays for the waveform, which differ primarily Play marker position - + Marcatore posizione riproduzione @@ -7132,7 +7217,7 @@ Select from different types of displays for the waveform, which differ primarily Clear Cached Waveforms - Cancella forma d'onda memorizzate + Cancella Forme d'onda Memorizzate @@ -7145,7 +7230,7 @@ Select from different types of displays for the waveform, which differ primarily Controllers - + Controllers @@ -7153,74 +7238,74 @@ Select from different types of displays for the waveform, which differ primarily Libreria - + Interface Interfaccia - + Waveforms Forme d'onda - + Auto DJ Auto DJ - + Equalizers Equalizzatori - + Decks Piatti - + Colors Colori - + Crossfader Crossfader - + Effects Effetti - + LV2 Plugins - + LV2 Plugins - + Recording Registrazione - + Beat Detection - + Rilevamento Beat - + Key Detection - + Rilevamento Chiave - + Normalization Normalizzazione - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> - + <font color='#BB0000'><b>Alcune pagine di preferenze hanno errori. Per applicare le modifiche sistemare prima i problemi.</b></font> @@ -7228,12 +7313,12 @@ Select from different types of displays for the waveform, which differ primarily Controllo Vinile - + Live Broadcasting - + Trasmissione Live - + Modplug Decoder @@ -7291,17 +7376,17 @@ Select from different types of displays for the waveform, which differ primarily Replace Hotcue Color - + Sostituisci Colore Hotcue Replace cue color if … - + Sostuisci colore cue se ... Hotcue index - + Indice Hotcue @@ -7318,47 +7403,47 @@ Select from different types of displays for the waveform, which differ primarily Current cue color - + Colore attuale cue If you don't specify any conditions, the colors of all cues in the library will be replaced. - + Se non specifichi nessuna condizione, i colori di tutte le cues nella libreria verranno sostituiti. … by: - + … da: New cue color - + Nuovo colore cue Selecting database rows... - + Selezione righe database... No colors changed! - + Nessun colore modificato! No cues matched the specified criteria. - + Nessuna cues soddisfa il criterio specificato. Confirm Color Replacement - + Conferma Sostituzione Colore The colors of %1 cues in %2 tracks will be replaced. This change cannot be undone! Are you sure? - + I colori di %1 cues in %2 tracce verranno sostituiti. Questa modifica non potrà essere annullata! Sei sicuro? @@ -7371,126 +7456,126 @@ Select from different types of displays for the waveform, which differ primarily Select best possible match - + Seleziona la miglior corrispondenza possibile - - + + Track Traccia - - + + Year Anno - + Title Titolo - - + + Artist Artista - - + + Album Album - + Album Artist Album Artista - + Fetching track data from the MusicBrainz database Recupero dati traccia dal database MusicBrainz - + Mixxx could not find this track in the MusicBrainz database. Mixxx non trova questa traccia nel database MusicBrainz. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Ottieni chiave API - + Submit Submits audio fingerprints to the MusicBrainz database. - + Invia - + New Column Nuova Colonna - + New Item Nuovo Elemento - + &Previous &Precedente - + &Next - + &Prossimo - + &Apply &Applica - + &Close &Chiudi - + Status: %1 Stato: %1 - + HTTP Status: %1 Stato HTTP: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx non può connettersi a %1 per un motivo sconosciuto. - + Mixxx can't connect to %1. Mixxx non può connettersi a %1. - + Original tags Tag Originali - + Suggested tags Tag suggeriti @@ -7515,7 +7600,7 @@ Select from different types of displays for the waveform, which differ primarily &Cancel - + &Annulla @@ -7523,7 +7608,7 @@ Select from different types of displays for the waveform, which differ primarily Track Editor - + Editor Traccia @@ -7533,7 +7618,7 @@ Select from different types of displays for the waveform, which differ primarily Filetype: - + Tipo di file: @@ -7543,7 +7628,7 @@ Select from different types of displays for the waveform, which differ primarily Location: - + Posizione: @@ -7553,7 +7638,7 @@ Select from different types of displays for the waveform, which differ primarily Comments - + Commenti @@ -7563,7 +7648,7 @@ Select from different types of displays for the waveform, which differ primarily Sets the BPM to 75% of the current value. - + Imposta al 75% il BPM del valore attuale. @@ -7633,33 +7718,33 @@ Select from different types of displays for the waveform, which differ primarily ReplayGain: - + ReplayGain: Sets the BPM to 200% of the current value. - + Imposta al 200% il BPM del attuale valore. Double BPM - + Raddoppia BPM Halve BPM - + Dimezza BPM Clear BPM and Beatgrid - + Cancella i BPM e Griglia battute Move to the previous item. "Previous" button - + Muove all'elemento precedente. @@ -7670,17 +7755,17 @@ Select from different types of displays for the waveform, which differ primarily Move to the next item. "Next" button - + Muove all'elemento successivo. &Next - + &Prossimo Duration: - + Durata: @@ -7695,97 +7780,99 @@ Select from different types of displays for the waveform, which differ primarily Date added: - + Data inserimento: Open in File Browser - + Apri nel File Manager Track BPM: - + BPM Traccia: Converts beats detected by the analyzer into a fixed-tempo beatgrid. Use this setting if your tracks have a constant tempo (e.g. most electronic music). Often results in higher quality beatgrids, but will not do well on tracks that have tempo shifts. - + Converte i battiti rilevati dall'analizzatore in una tabella con tempo fisso. +Usa quest'opzione se le tue tracce hanno un ritmo costante (ad esempio la maggior parte della musica elettronica). +Spesso si avrà un buon risultato con tracce a ritmo costante, non funzionerà bene su tracce che hanno cambi di ritmo. Assume constant tempo - + Assume un tempo costante Sets the BPM to 66% of the current value. - + Imposta al 66% il BPM del valore attuale. 2/3 BPM - + 2/3 BPM Sets the BPM to 150% of the current value. - + Imposta al 150% il BPM del valore attuale. 3/2 BPM - + 3/2 BPM Sets the BPM to 133% of the current value. - + Imposta il BPM al 133% del valore attuale. 4/3 BPM - + 4/3 BPM Tap with the beat to set the BPM to the speed you are tapping. - + Premi a ritmo battuta per impostare i BPM alla velocità con cui premi. Tap to Beat - + Premi a Battuta Hint: Use the Library Analyze view to run BPM detection. - + Suggerimento: Usa la vista Analizza Libreria per eseguire il calcolo dei BPM. Save changes and close the window. "OK" button - + Salva le modifiche e chiude la finestra. &OK - + &OK Discard changes and close the window. "Cancel" button - + Abbandona modifiche e chiude la finestra. Save changes and keep the window open. "Apply" button - + Salva modifiche e tiene la finestra aperta. @@ -7795,7 +7882,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h &Cancel - + &Annulla @@ -7804,7 +7891,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Empty Chain Name for an empty effect chain, that is created after eject - + Catena Vuota @@ -7820,7 +7907,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Visible - + Visibile @@ -7838,32 +7925,32 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Flanger - + Flanger BitCrusher - + BitCrusher Filter - + Filtro Reverb - + Riverbero Echo - + Eco AutoPan - + AutoPan @@ -7876,25 +7963,25 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Empty - + Vuoto EngineBuffer - + Soundtouch (faster) - + Soundtouch (più veloce) - + Rubberband (better) - + Rubberband (migliore) - + Unknown (bad value) - + Sconosciuto (bad value) @@ -7902,27 +7989,27 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Fatal error - + Errore Fatale Critical error - + Errore critico Warning - + Avviso Information - + Informazione Question - + Domanda @@ -7970,7 +8057,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h VSyncTest - + VSyncTest @@ -7986,119 +8073,120 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HSV - + HSV ITunesFeature - + iTunes - + iTunes - - + + Select your iTunes library - + Seleziona la tua libreria iTunes - + (loading) iTunes - + (caricamento) iTunes - + Use Default Library - + Usa Libreria Predefinita - + Choose Library... - + Scegli Libreria... - + Error Loading iTunes Library - + Errore in caricamento Libreria iTunes - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. - + C'e' stato un errore in caricamento della tua libreria iTunes. Alcune delle tue tracce o playlist iTunes possono non essere state caricate. LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + Modalità Sicura Abilitata - + No OpenGL support. Shown when Spinny can not be displayed. Please keep unchanged - + OpenGL +non supportato. - + activate - + attivato - + toggle - + attiva/disattiva - + right - + destra - + left - + sinistra - + right small - + destra piccolo - + left small - + sinistra piccolo - + up - + su - + down - + giu - + up small - + sopra piccolo - + down small - + sotto piccolo - + Shortcut - + Scorciatoia @@ -8106,66 +8194,69 @@ support. Add Directory to Library - + Aggiunge Cartella alla Libreria Could not add the directory to your library. Either this directory is already in your library or you are currently rescanning your library. - + Non posso aggiungere la cartella alla tua libreria. O la cartella è già nella tua libreria o attualmente stai riscansionando la libreria. LibraryFeature - + Import Playlist Importa Playlist - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + Sovrascrivo File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. Do you really want to overwrite it? - + Un file playlist con il nome "%1" esiste già. +L'estensione predefinita "m3u" è stata aggiunta perché nessuna estensione era stata specificata. + +Vuoi veramente sovrascriverlo? LibraryScannerDlg - + Library Scanner - + Scansione Libreria - + It's taking Mixxx a minute to scan your music library, please wait... - + Mixxx ci mette un minuto a scansionare la tua libreria musicale, per favore aspetta... - + Cancel - + Annulla - + Scanning: - + Scansione: - + Scanning cover art (safe to cancel) - + Scansione copertina (annullare non crea problemi) @@ -8181,33 +8272,34 @@ Do you really want to overwrite it? MIDI Controller - + MIDI Controller MixxxControl(s) not found - + MixxxControl(s) non trovato One or more MixxxControls specified in the outputs section of the loaded mapping were invalid. - + Uno o più MixxxControls specificati nella sezione outputs del file mapping caricato sono invalidi. * Make sure the MixxxControls in question actually exist. Visit the manual for a complete list: - + * Assicurati che il MixxxControls in questione attualmente esista. Consulta il manuale per una lista completa: Some LEDs or other feedback may not work correctly. - + Alcuni LED o altri feedback potrebbero non funzionare correttamente. * Check to see that the MixxxControl names are spelled correctly in the mapping file (.xml) - + * Controlla che i nomi MixxxControl siano scritti correttamente nel mapping file (.xml) + @@ -8215,42 +8307,42 @@ Do you really want to overwrite it? Click OK to exit. - + Clicca OK per uscire. Cannot upgrade database schema - + Impossibile aggiornare database schema Unable to upgrade your database schema to version %1 - + Impossibile aggiornare il tuo database schema alla versione %1 For help with database issues consult: - + Per assistenza con i problemi relativi al database, consultare: Your mixxxdb.sqlite file may be corrupt. - + Il tuo file mixxxdb.sqlite potrebbe essere corrotto. Try renaming it and restarting Mixxx. - + Prova a rinominarlo e a far ripartire Mixxx. Your mixxxdb.sqlite file was created by a newer version of Mixxx and is incompatible. - + Il tuo file mixxxdb.sqlite è stato creato con una nuova versione di Mixxx ed è incompatibile. The database schema file is invalid. - + Il database schema file non è valido. @@ -8258,17 +8350,17 @@ Do you really want to overwrite it? Missing Tracks - + Tracce Mancanti Hidden Tracks - + Tracce Nascoste Export to Engine Prime - + Esporta a Engine Prime @@ -8279,184 +8371,185 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - + <b>Riprova</b> dopo aver chiuso l'altra applicazione o ricollega un dispositivo musicale - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - + <b>Riconfigura</b> impostazioni Mixxx's sound device. - - + + Get <b>Help</b> from the Mixxx Wiki. - + Ottieni <b>Aiuto</b> dal Wiki Mixxx. - - - + + + <b>Exit</b> Mixxx. - + <b>Esci</b> da Mixxx. - + Retry - + Riprova - + skin - + skin - - + + Reconfigure - + Riconfigura - + Help - + Aiuto - - + + Exit - + Esci - - + + Mixxx was unable to open all the configured sound devices. - + Mixxx non ha potuto aprire tutti i dispositivi musicali configurati. - + Sound Device Error - + Errore Dispositivo Sound - + <b>Retry</b> after fixing an issue - + <b>Riprova</b> dopo aver corretto un problema - + No Output Devices - + Nessun Dispositivo Output - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + Mixxx è stato configurato senza alcun dispositivo audio di uscita. L'elaborazione audio sarà disabilitata senza un dispositivo di uscita configurato. - + <b>Continue</b> without any outputs. - + <b>Continua</b> senza nessun outputs. - + Continue - + Continua - + Load track to Deck %1 Carica traccia su Deck %1 - + Deck %1 is currently playing a track. - + Il deck %1 attualmente stà suonando una traccia. - + Are you sure you want to load a new track? Sei sicuro di voler caricare una nuova traccia? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. Non ci sono dispositivi in input selezionati per questo controllo vinile. Selezionare un dispositivo in entrata nella sezione nella lista preferenze hardware. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + Non c'è nessun dispositivo di input selezionato per questo controllo passthrough. Selezionare prima un dispositivo di input nelle preferenze dell'hardware audio. - + There is no input device selected for this microphone. Do you want to select an input device? - + Non c'è nessun dispositivo di input selezionato per questo microfono. Vuoi selezionare un dispositivo di input? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Non c'è nessun dispositivo di input selezionato per questo ausiliare. +Vuoi selezionare un dispositivo di input? - + Error in skin file - + Errore in file skin - + The selected skin cannot be loaded. - + La skin selezionata non può essere caricata. - + OpenGL Direct Rendering - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - + Direct rendering non è abilitato sulla tua macchina.<br><br>Ciò significa che la visualizzazione delle forme d'onda sarà molto<br><b>lento e può impattare sulla tua CPU pesantemente</b>. Aggiorna la tua<br>configurazione per abilitare il direct rendering, or disabilita la visualizzazione<br>della forma d'onda nelle preferenze di Mixxx selezionando<br>"Vuota" come visualizzazione di forma d'onda nella sezione 'Interfaccia'. - - - + + + Confirm Exit - + Conferma uscita - + A deck is currently playing. Exit Mixxx? - + Un deck stà attualmente suonando. Esco da Mixxx? - + A sampler is currently playing. Exit Mixxx? - + Un campionatore stà attualmente suonando. Esco da Mixxx? - + The preferences window is still open. - + La finestra preferenze è ancora aperta. - + Discard any changes and exit Mixxx? - + Abbandono qualsiasi modifica ed esco da Mixxx? @@ -8469,18 +8562,18 @@ Do you want to select an input device? Playlist Export Failed - + Export Playlist Fallito Could not create file - + Impossibile creare file Readable text Export Failed - + Esportazione del testo Leggibile Fallita @@ -8489,24 +8582,26 @@ Do you want to select an input device? Playlist Export Failed - + Export Playlist Fallito File path contains characters, not allowed in m3u playlists. - + Il sentiero del file contiene caratteri, non ammessi nelle playlists m3u. + Export a m3u8 playlist instead! - + Esporta piuttosto una playlist m3u8! + Could not create file - + Impossibile creare file @@ -8514,54 +8609,54 @@ Do you want to select an input device? Playlist Export Failed - + Export Playlist Fallito Could not create file - + Impossibile creare file PlaylistFeature - + Lock Blocca - + Playlists - + Playlists - + Unlock Sblocca - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + Le playlist sono elenchi ordinati di brani che ti consentono di pianificare i tuoi DJ set. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Potrebbe essere necessario saltare alcune tracce nella playlist preparata o aggiungere alcune tracce diverse per mantenere l'energia del pubblico. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + Alcuni DJ costruiscono playlist prima di esibirsi dal vivo, ma altri preferiscono costruirle al volo. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Quando utilizzi una playlist durante un set live DJ, ricorda di prestare sempre molta attenzione a come il pubblico reagisce alla musica che hai scelto di riprodurre. - + Create New Playlist Crea Nuova Playlist @@ -8569,60 +8664,60 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Aggiornamento Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Mixxx ora supporta la visualizzazione delle copertine. Vuoi scansionare la tua libreria per i file di copertina ora? - + Scan Scansiona - + Later - + Più tardi - + Upgrading Mixxx from v1.9.x/1.10.x. - + Aggiorna Mixxx da v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + Mixxx ha un nuovo e migliorato beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. Quando carichi tracce, Mixxx può rianalizzarle e generare una nuova e più accurata beatgrid. Questo farà si che il beatsync automatico ed il looping sia più affidabile. - + This does not affect saved cues, hotcues, playlists, or crates. - + Questo non coinvolge le cues salvate, le hotcues, le playlist o i contenitori. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Se non vuoi che Mixxx ri-analizzi le tue tracce, scegli "Mantieni le Beatgrid attuali". Puoi cambiare questa impostazione in qualsiasi momento da "Batti (...) - + Keep Current Beatgrids - + Mantieni Beatgrid Attuali - + Generate New Beatgrids - + Genera Nuova Beatgrids @@ -8630,153 +8725,153 @@ Do you want to scan your library for cover files now? Invalid - + Non valido Note On - + Nota On Note Off - + Nota Off CC - + CC Pitch Bend - + Pitch Bend Unknown (0x%1) - + Sconosciuto (0x%1) Normal - + Normale Invert - + Inverti Rot64 - + Rot64 Rot64Inv - + Rot64Inv Rot64Fast - + Rot64Fast Diff - + Diff Button - + Pulsante Switch - + Interruttore Spread64 - + Spread64 HercJog - + HercJog SelectKnob - + SelectKnob SoftTakeover - + SoftTakeover Script - + Script 14-bit (LSB) - + 14-bit (LSB) 14-bit (MSB) - + 14-bit (MSB) Main - + Main Booth - + Booth Headphones - + Cuffie Left Bus - + Bus Sinistro Center Bus - + Bus Centrale Right Bus - + Bus Destro Invalid Bus - + Bus non valido Deck - + Deck Record/Broadcast - + Registra/Trasmetti @@ -8786,32 +8881,32 @@ Do you want to scan your library for cover files now? Microphone - + Microfono Auxiliary - + Ausiliario Unknown path type %1 - + Tipo di percorso %1 sconosciuto Using Opus at samplerates other than 48 kHz is not supported by the Opus encoder. Please use 48000 Hz in "Sound Hardware" preferences or switch to a different encoding. - + L'uso di Opus a frequenze di campionamento diverse da 48 kHz non è supportato dall'encoder Opus. Utilizzare 48000 Hz nelle preferenze "Sound Hardware" o passare a una codifica diversa. - + Encoder - + Encoder Mixxx Needs Access to: %1 - + Mixxx deve accedere a: %1 @@ -8820,17 +8915,21 @@ Do you want to scan your library for cover files now? %1 After clicking OK, you will see a file picker. Please select '%2' to proceed or click Cancel if you don't want to grant Mixxx access and abort this action. - + L'autorizzazione è necessaria per accedere al seguente percorso: + +%1 + +Dopo aver fatto clic su OK, verrà visualizzata una selezione file. Seleziona "%2" per procedere o fai clic su Annulla se non desideri concedere l'accesso a Mixxx e interrompere questa azione. You selected the wrong file. To grant Mixxx access, please select the file '%1'. If you do not want to continue, press Cancel. - + Hai selezionato il file sbagliato. Per concedere l'accesso a Mixxx, seleziona il file '%1'. Se non vuoi continuare, premi Annulla. Upgrading old Mixxx settings - + Upgrading old Mixxx settings @@ -8839,62 +8938,68 @@ After clicking OK, you will see a file picker. Please select '%2' to p To allow Mixxx to use your old library and settings, click the Open button in the file selection dialog. Mixxx will then move your old settings into the sandbox. This only needs to be done once. If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx will create a new music library and use default settings. - + A causa della sandboxing di macOS, Mixxx ha bisogno del tuo permesso per accedere alla tua libreria musicale e alle impostazioni delle versioni di Mixxx prima della 2.3.0.  + +Dopo aver fatto clic su OK, verrà visualizzata una finestra di selezione dei file. Per consentire a Mixxx di utilizzare la vecchia libreria e le impostazioni, fare clic sul pulsante Apri nella finestra di dialogo di selezione dei file. + +Mixxx sposterà le tue vecchie impostazioni nella sandbox. Questo deve essere fatto solo una volta. + +Se non si desidera concedere l'accesso a Mixxx, fare clic su Annulla nel selettore file. Mixxx creerà una nuova libreria musicale e utilizzerà le impostazioni predefinite. Bit Depth - + Profondità Bit Bitcrusher - + Bitcrusher Adds noise by the reducing the bit depth and sample rate - + Aggiunge rumore riducendo la profondità di bit e la frequenza di campionamento The bit depth of the samples - + Regola la profondità bit dei campioni Downsampling - + Downsampling Down - + Giù The sample rate to which the signal is downsampled - + Regola la frequenza di campionamento, al quale il segnale è sottocampionato Echo - + Eco Time - + Time Ping Pong - + Ping Pong @@ -8902,12 +9007,12 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx Send - + Invia How much of the signal to send into the delay buffer - + Quanta parte del segnale da inviare nel buffer di ritardo @@ -8915,29 +9020,31 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx Feedback - + Feedback Stores the input signal in a temporary buffer and outputs it after a short time - + Memorizza il segnale in input in un buffer temporaneo e lo riproduce dopo poco tempo Delay time 1/8 - 2 beats if tempo is detected 1/8 - 2 seconds if no tempo is detected - + Tempo ritardo +1/8 - 2 battute se il tempo è rilevato +1/8 - 2 secondi se il tempo non è rilevato Amount the echo fades each time it loops - + Quantità dell'eco che sparisce ogni volta che cicla How much the echoed sound bounces between the left and right sides of the stereo field - + Quanto del suono riflesso rimbalza fra il lato sinistro e destro del campo stereo @@ -8945,12 +9052,12 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx Quantize - + Quantizza Round the Time parameter to the nearest 1/4 beat. - + Arrotonda il parametro Tempo di 1/4 alla battuta più vicina. @@ -8961,68 +9068,69 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx Triplets - + Tripletta When the Quantize parameter is enabled, divide rounded 1/4 beats of Time parameter by 3. - + Quando il parametro Quantifica è abilitato, divide le battute arrotondate di 1/4 del parametro Tempo per 3. Filter - + Filtro Allows only high or low frequencies to play. - + Permette di riprodurre solo alte o basse frequenze. Low Pass Filter Cutoff - + Taglio Filtro Passa Bassi LPF - + LPF Corner frequency ratio of the low pass filter - + Rapporto di frequenza angolare del filtro passa-basso Q - + Q Resonance of the filters Default: flat top - + Risonanza dei filtri +Predefinito = flat top High Pass Filter Cutoff - + Taglio Filtro Passa-Alto HPF - + HPF Corner frequency ratio of the high pass filter - + Rapporto di frequenza angolare del filtro passa-alto @@ -9030,13 +9138,13 @@ Default: flat top Depth - + Profondità Flanger - + Flanger @@ -9048,12 +9156,12 @@ Default: flat top Manual - + Manuale Mixes the input with a delayed, pitch modulated copy of itself to create comb filtering - + Mescola l'ingresso con una copia ritardata e modulata del pitch di se stesso per creare un filtro a pettine @@ -9065,13 +9173,14 @@ Default: flat top Delay amplitude of the LFO (low frequency oscillator) - + Ampiezza ritardo dell'LFO (oscillatore a bassa frequenza) Delay offset of the LFO (low frequency oscillator). With width at zero, this allows for manually sweeping over the entire delay range. - + Offset di ritardo dell'LFO (oscillatore a bassa frequenza). +Con larghezza a zero, consente di scorrere manualmente l'intero intervallo di ritardo. @@ -9086,7 +9195,7 @@ With width at zero, this allows for manually sweeping over the entire delay rang How much of the delay output is feed back into the input - + Quanta parte dell'output di ritardo viene immessa nell'input @@ -9098,7 +9207,7 @@ With width at zero, this allows for manually sweeping over the entire delay rang Divide rounded 1/2 beats of the Period parameter by 3. - + Divide 1/2 battute arrotondate del parametro Periodo per 3. @@ -9119,12 +9228,12 @@ With width at zero, this allows for manually sweeping over the entire delay rang Metronome - + Metronomo Adds a metronome click sound to the stream - + Aggiunge un suono click metronomo allo stream @@ -9134,17 +9243,17 @@ With width at zero, this allows for manually sweeping over the entire delay rang Set the beats per minute value of the click sound - + Imposta il valore delle battute per minuto del click sound Sync - + Sync Synchronizes the BPM with the track if it can be retrieved - + Sincronizza il BPM con la traccia se esso può essere recuperato @@ -9152,55 +9261,57 @@ With width at zero, this allows for manually sweeping over the entire delay rang Period - + Periodo Autopan - + Autopan Bounce the sound left and right across the stereo field - + Rimbalza il suono a sinistra e destra attraverso il campo stereo How fast the sound goes from one side to another 1/4 - 4 beats rounded to 1/2 beat if tempo is detected 1/4 - 4 seconds if no tempo is detected - + Quanto veloce il suono va' da un lato all'altro +1/4 - 4 battiti arrotondati a 1/2 battito se il tempo è rilevato +1/4 - 4 secondi se il tempo non viene rilevato Smoothing - + Dolcemente Smooth - + Dolcezza How smoothly the signal goes from one side to the other - + Quanto agevolmente il segnale passa da una parte all'altra How far the signal goes to each side - + Quanto distante il segnale và su ogni lato Reverb - + Riverbero Emulates the sound of the signal bouncing off the walls of a room - + Simula il suono del segnale che rimbalza sui muri di una stanza @@ -9211,68 +9322,69 @@ With width at zero, this allows for manually sweeping over the entire delay rang Lower decay values cause reverberations to fade out more quickly. - + Bassi valori di smorzamento causano riverberi che scompaiono più rapidamente. Bandwidth of the low pass filter at the input. Higher values result in less attenuation of high frequencies. - + Ampiezza banda del filtro passa basso all'input. +Valori alti effettuano meno attenuazione delle alte frequenze. How much of the signal to send in to the effect - + Quanta parte del segnale da inviare all'effetto Bandwidth - + Larghezza di Banda BW - + BW Damping - + Smorzamento Higher damping values cause high frequencies to decay more quickly than low frequencies. - + Alti valori di damping causano un più veloce smorzamento delle alte frequenze rispetto alle basse frequenze. Low - + Basso Gain for Low Filter - + Guadagno per Filtro Basso Kill Low - + Elimina Bassi Kill the Low Filter - + Elimina Filtro Bassi Mid - + Medi @@ -9282,48 +9394,48 @@ Higher values result in less attenuation of high frequencies. Bessel4 ISO - + Bessel4 ISO A Bessel 4th-order filter isolator with Lipshitz and Vanderkooy mix (bit perfect unity, roll-off -24 dB/octave). - + Un equalizzatore filtro Bessel 4th order con Lipshitz e Vanderkooy mix (bit perfect unity, roll-off -24 db/Oct). Gain for Mid Filter - + Guadagno per Filtro Medi Kill Mid - + Elimina Medi Kill the Mid Filter - + Elimina Filtro Medi High - + Alto Gain for High Filter - + Guadagno per Filtro Alti Kill High - + Elimina Alti Kill the High Filter - + Elimina Filtro Alti @@ -9333,32 +9445,32 @@ Higher values result in less attenuation of high frequencies. Graphic Equalizer - + Equalizzatore Grafico Graphic EQ - + EQ Grafico An 8-band graphic equalizer based on biquad filters - + Un equalizzatore grafico a 8 bande basate su filtri biquadratici Gain for Band Filter %1 - + Guadagno per Filtro Banda %1 Moog Ladder 4 Filter - + Filtro Moog Ladder 4 Moog Filter - + Filtro Moog @@ -9374,17 +9486,17 @@ Higher values result in less attenuation of high frequencies. Resonance - + Risonanza Resonance of the filters. 4 = self oscillating - + Risonanza dei filtri. 4 = auto oscillante Gain for Low Filter (neutral at 1.0) - + Guadagno per Filtro Basso (neutro a 1.0) @@ -9395,7 +9507,7 @@ Higher values result in less attenuation of high frequencies. Phaser - + Phaser @@ -9412,7 +9524,7 @@ Higher values result in less attenuation of high frequencies. Mixes the input signal with a copy passed through a series of all-pass filters to create comb filtering - + Mixa il segnale in entrara con una copia passata attraverso un serie di filtri passa-tutto per creare filtraggi combinati @@ -9424,28 +9536,28 @@ Higher values result in less attenuation of high frequencies. Controls how much of the output signal is looped - + Controlla quanto del segnale di output viene ripetuto Range - + Intervallo Controls the frequency range across which the notches sweep. - + Controlla l'intervallo di frequenza attraverso il quale i notches agiscono. Number of stages - + Numero di stadi Sets the LFOs (low frequency oscillators) for the left and right channels out of phase with each others - + Imposta gli LFO (oscillatori bassa frequenza) per i canali sinistro e destro sfasandoli un l'altro @@ -9505,7 +9617,7 @@ Higher values result in less attenuation of high frequencies. Bessel8 ISO - + Bessel8 ISO @@ -9520,7 +9632,7 @@ Higher values result in less attenuation of high frequencies. LR8 ISO - + LR8 ISO @@ -9530,12 +9642,12 @@ Higher values result in less attenuation of high frequencies. Biquad Equalizer - + Equalizzatore biquadratico BQ EQ - + BQ EQ @@ -9555,7 +9667,7 @@ Higher values result in less attenuation of high frequencies. BQ EQ/ISO - + BQ EQ/ISO @@ -9582,18 +9694,18 @@ Higher values result in less attenuation of high frequencies. Set the gain of the applied loudness contour - + Imposta il guadagno del loudness a contorno applicato Use Gain - + Usa Guadagno Follow Gain Knob - + Segui Manopola Guadagno @@ -9603,7 +9715,7 @@ Higher values result in less attenuation of high frequencies. Live Mix - + Mix Live @@ -9621,7 +9733,7 @@ Higher values result in less attenuation of high frequencies. Bit depth - + Profondità bit @@ -9665,7 +9777,7 @@ Higher values result in less attenuation of high frequencies. Bypass Frequency - + Frequenza di bypass @@ -9696,83 +9808,88 @@ Centro: non modifica il segnale originale. Param EQ - + Parametri EQ An gentle 2-band parametric equalizer based on biquad filters. It is designed as a complement to the steep mixing equalizers. - + Un equalizzatore parametrico morbido a 2-bande basato su filtri biquadratici. +Esso è progettato come complemento degli equalizzatori steep mixing. Gain 1 - + Guadagno 1 Gain for Filter 1 - + Guadagno per Filtro 1 Q 1 - + Q 1 Controls the bandwidth of Filter 1. A lower Q affects a wider band of frequencies, a higher Q affects a narrower band of frequencies. - + Controlla la larghezza di banda per il Filtro 1. +Un basso Q agisce su una banda di frequenze più larga, +un alto Q agisce su una banda di frequenze più stretta. Center 1 - + Centro 1 Center frequency for Filter 1, from 100 Hz to 14 kHz - + Frequanza Centrale per il Filtro 1, da 100 Hz a 14 kHz Gain 2 - + Guadagno 2 Gain for Filter 2 - + Guadagno per Filtro 2 Q 2 - + Q 2 Controls the bandwidth of Filter 2. A lower Q affects a wider band of frequencies, a higher Q affects a narrower band of frequencies. - + Controlla la larghezza di banda per il Filtro 2. +Un basso Q agisce su una banda di frequenze più larga, +un alto Q agisce su una banda di frequenze più stretta. Center 2 - + Centro 2 Center frequency for Filter 2, from 100 Hz to 14 kHz - + Frequenza Centrale per il Filtro 2, da 100 Hz a 14 kHz @@ -9801,25 +9918,30 @@ a higher Q affects a narrower band of frequencies. Rate of the volume changes 4 beats - 1/8 beat if tempo is detected 1/4 Hz - 8 Hz if no tempo is detected - + Tasso dei cambi di volume +4 battiti - 1/8 beat se il tempo è rilevato +1/4 Hz - 8 Hz se nessun tempo è rilevato Width of the volume peak 10% - 90% of the effect period - + Larghezza del picco volume +10% - 90% del periodo Shape of the volume modulation wave Fully left: Square wave Fully right: Sine wave - + Forma dell'onda modulazione del volume +Completamente a sinistra: Onda quadra +Completamente a destra: Onda sinusoidale When the Quantize parameter is enabled, divide the effect period by 3. - + Quando il parametro Quantifica è abilitato, divide il periodo dell'effetto per 3. @@ -9831,19 +9953,21 @@ Fully right: Sine wave Phase - + Fase Shifts the position of the volume peak within the period Fully left: beginning of the effect period Fully right: end of the effect period - + Trasla la posizione del picco volume nel periodo +Completamente a sinistra: inizio del periodo +Completamente a destra: fine del periodo Round the Rate parameter to the nearest whole division of a beat. - + Arrotonda il parametro Rate alla prima divisione intera alla battuta più vicina. @@ -9859,22 +9983,22 @@ Fully right: end of the effect period This plugin does not support stereo samples as input/output - + Questo plugin non supporta campioni stereo in input/output This plugin has features which are not yet supported - + Questo plugin ha caratteristiche che non sono ancora supportate Unknown status - + Unknown status Parameters of %1 - + Parametri di %1 @@ -9925,7 +10049,7 @@ Fully right: end of the effect period Dry/Wet - + Dry/Wet @@ -9933,36 +10057,36 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + <html>Mixxx non può registrare o trasmettere in AAC o HE-AAC senza l'encoder FDK-AAC. Al fine di registrare o trasmettere in AAC or AAC+, devi scaricare le <b>libfdk-aac</b> ed installarle sul tuo sistema. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. - + La libreria di codifica AAC installata non supporta HE-AAC, ma solo pieno AAC. Configura un formato differente di codifica nelle preferenze. MP3 encoding is not supported. Lame could not be initialized - + Codifica MP3 non è supportata. Impossibile inizializzare Lame OGG recording is not supported. OGG/Vorbis library could not be initialized. - + La registrazone OGG non è supportata. Impossibile inizializzare la libreria OGG/Vorbis. encoder failure - + encoder failure Failed to apply the selected settings. - + Applicazione delle impostazioni selezionate non riuscita. @@ -9972,7 +10096,7 @@ Fully right: end of the effect period Deck 1 - + Deck 1 @@ -9980,7 +10104,7 @@ Fully right: end of the effect period HSV - + HSV @@ -10004,7 +10128,7 @@ Fully right: end of the effect period VSyncTest - + VSyncTest @@ -10076,63 +10200,63 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Rekordbox - + Playlists - + Playlists - + Folders Cartelle - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Legge databases esportati dai players Pioneer CDJ / XDJ usando il modo Rekordbox Export.<br/>Rekordbox può esportare solo su USB o dispositivi SD con un file system FAT o HFS.<br/>Mixxx può leggere un database da qualsiasi dispositivo che contiene le cartelle database (<tt>PIONEER</tt> e <tt>Contents</tt>).<br/>Non sono supportati databases Rekordbox che sono stati spostati su un dispositivo esterno usando<br/><i>Preferenze > Avanzate > Gestione Database</i>.<br/><br/>Sono letti i dati seguenti: - + Hot cues - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Cerca dispositivi Rekordbox USB / SD (aggiorna) - + Beatgrids - + Griglia-battute - + Memory cues - + Memoria cues - + (loading) Rekordbox - + (caricamento) Rekordbox RhythmboxFeature - + Rhythmbox Rhythmbox @@ -10142,75 +10266,75 @@ Fully right: end of the effect period Save Sampler Bank - + Salva Raccolta Campionatore Mixxx Sampler Banks (*.xml) - + Raccolta Campioni Mixxx (*.xml) Error Saving Sampler Bank - + Errore Salvando Raccolta Campioni Mixxx Sampler Banks (*%1) - + Raccolta Campionatori Mixxx (*%1) Could not write the sampler bank to '%1'. - + Impossibile scrivere la raccolta del campionatore su '1%'. Load Sampler Bank - + Carica Raccolta Campionatore Error Reading Sampler Bank - + Errore Leggendo Raccolta Campioni Could not open the sampler bank file '%1'. - + Impossibile aprire il file di Raccolta Campioni '1%'. SeratoFeature - - - + + + Serato Serato - + Reads the following from the Serato Music directory and removable devices: - + Legge i sottostanti da cartella Serato Music e dispositivi rimovibili: - + Tracks Tracce - + Crates - Ceste + Contenitori - + Check for Serato databases (refresh) - + Verifica la presenza di database Serato (aggiorna) - + (loading) Serato (caricamento) Serato @@ -10233,12 +10357,12 @@ Fully right: end of the effect period Storia - + Unlock Sblocca - + Lock Blocca @@ -10249,27 +10373,27 @@ Fully right: end of the effect period Mixxx encountered a problem - + Mixxx ha riscontrato un problema Could not allocate shout_t - + Impossibile allocare shout_t Could not allocate shout_metadata_t - + Impossibile allocare shout_metadata_t Error setting non-blocking mode: - + Errore impostando il modo non-blocking: Error setting tls mode: - + Errore impostando il modo tls: @@ -10334,27 +10458,27 @@ Fully right: end of the effect period Error setting stream public! - + Errore impostando stream pubblico! Unknown stream encoding format! - + Formato codifica stream sconosciuto! Use a libshout version with %1 enabled - + Usa una versione libshout con %1 abilitato Error setting stream encoding format! - + Errore impostando formato codifica stream! Broadcasting at 96 kHz with Ogg Vorbis is not currently supported. Please try a different sample rate or switch to a different encoding. - + La trasmissione a 96 kHz con Ogg Vorbis non è attualmente supportata. Prova una frequenza di campionamento diversa o passa a una codifica diversa. @@ -10364,7 +10488,7 @@ Fully right: end of the effect period Unsupported sample rate - + Frequenza di campionamento non supportata @@ -10379,7 +10503,7 @@ Fully right: end of the effect period Error: Shoutcast only supports MP3 and AAC encoders - + Errore: Shoutcast supporta solo codifiche MP3 e AAC @@ -10399,7 +10523,7 @@ Fully right: end of the effect period One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> - + Una delle connessioni per la Trasmissione Live riportano questo errore:<br><b>Errore con connessione '%1':</b><br> @@ -10409,7 +10533,7 @@ Fully right: end of the effect period <b>Message from Live Broadcasting connection '%1':</b><br> - <b>Messaggio dalla connessione Live Broadcasting '%1':</b><br> + <b>Messaggio dalla connessione Trasmissione Live '%1':</b><br> @@ -10461,7 +10585,7 @@ Fully right: end of the effect period Two outputs cannot share channels on "%1" - + Due uscite non possono condividere canali su %1 @@ -10479,7 +10603,7 @@ Fully right: end of the effect period Count - + Conteggio @@ -10489,37 +10613,37 @@ Fully right: end of the effect period Units - + Unità Sum - + Somma Min - + Min Max - + Max Mean - + Media Variance - + Varianza Standard Deviation - + Deviazione Standard @@ -10532,7 +10656,7 @@ Fully right: end of the effect period Identifying track through Acoustid - + Identificazione della traccia attraverso Acoustid @@ -10550,17 +10674,17 @@ Fully right: end of the effect period Left-click - + Click-sinistro Right-click - + Click-destro Double-click - + Doppio-click @@ -10575,17 +10699,17 @@ Fully right: end of the effect period loop active - + loop attivo loop inactive - + loop inattivo Effects within the chain must be enabled to hear them. - + Gli effetti legati alla catena devono essere abilitati per sentirli. @@ -10595,7 +10719,7 @@ Fully right: end of the effect period Use the mouse to scratch, spin-back or throw tracks. - + Usa il mouse per fare scratch, spin-back oppure gettare tracce. @@ -10641,7 +10765,7 @@ Fully right: end of the effect period Rotates during playback and shows the position of a track. - + Ruota durante l'esecuzione e mostra la posizione della traccia. @@ -10651,7 +10775,7 @@ Fully right: end of the effect period Gain - + Guadagno @@ -10661,57 +10785,57 @@ Fully right: end of the effect period (too loud for the hardware and is being distorted). - + (troppo alto per l'hardware e risulterà distorto). Indicates when the signal on the channel is clipping, - + Indica quando il segnale del canale è in clipping . Channel Volume Meter - + Livello Volume Canale. Shows the current channel volume. - + Mostra il livello di volume del canale corrente. Microphone Volume Meter - + Livello Volume Microfono Shows the current microphone volume. - + Mostra il volume del microfono corrente. Auxiliary Volume Meter - + Indicatore Volume Ausiliario Shows the current auxiliary volume. - + Mostra il volume dell'ausiliario attuale. Auxiliary Peak Indicator - + Indicatore Picco Ausiliario Indicates when the signal on the auxiliary is clipping, - + Indica quando il segnale dell'ausiliario è in clipping, Master Channel R Volume Meter - + Livello Volume Canale Master R @@ -10726,12 +10850,12 @@ Fully right: end of the effect period Booth Gain - + Guadagno Booth Adjusts the booth output gain. - + Regola il guadagno dell'uscita booth. @@ -10746,7 +10870,7 @@ Fully right: end of the effect period Headphone Volume - Volume Cuffie + Volume Cuffia @@ -10756,7 +10880,7 @@ Fully right: end of the effect period Headphone Gain - + Guadagno Cuffia @@ -10766,22 +10890,22 @@ Fully right: end of the effect period Headphone Mix - + Mix Cuffia Headphone Split Cue - + Split Cue Cuffia Adjust the Headphone Mix so in the left channel is not the pure cueing signal. - + Regola il Mix della cuffia così il canale sinistro non è il puro segnale di cueing. Microphone - + Microfono @@ -10791,12 +10915,12 @@ Fully right: end of the effect period Sampler - + Campionatore Show/hide the Sampler section. - + Mostra/Nasconde la sezione Campionatori. @@ -10833,22 +10957,22 @@ Fully right: end of the effect period Toggle 4 Decks - + Abilita/disabilita 4 Decks Switches between showing 2 decks and 4 decks. - + Mostra 2 o 4 decks. Show Library - + Mostra Libreria Show or hide the track library. - + Mostra o nasconde la libreria tracce. @@ -10863,7 +10987,7 @@ Fully right: end of the effect period Toggle Mixer - + Abilita/disabilita Mixer @@ -10893,7 +11017,7 @@ Fully right: end of the effect period Auxiliary Gain - + Guadagno Ausiliario @@ -10903,17 +11027,17 @@ Fully right: end of the effect period Microphone Talk-Over - + Talk-Over Microfono Hold-to-talk or short click for latching to - + Premi per parlare oppure rapido click per allacciarsi Microphone Talkover Mode - + Modo Microfono Talkover @@ -10923,12 +11047,12 @@ Fully right: end of the effect period Manual: Reduce music volume by a fixed amount set by the Strength knob. - Manuale: Riduce il volume della musica di una quantità fissa impostata con la manopola Strength. + Manuale: Riduce il volume della musica di una quantità fissa impostata con la manopola Forza. Behavior depends on Microphone Talkover Mode: - + Aspetti dipendenti dal Modo Microfono Talkover: @@ -10938,62 +11062,62 @@ Fully right: end of the effect period Raise Pitch - + Aumenta Pitch Sets the pitch higher. - + Imposta il pitch più alto. Sets the pitch higher in small steps. - + Imposta il tono più in alto a piccoli passi. Lower Pitch - + Abbassa Tono Sets the pitch lower. - + Imposta il tono più in basso. Sets the pitch lower in small steps. - + Imposta il tono più in basso a piccoli passi. Raise Pitch Temporary (Nudge) - + Aumenta Tono Temporaneamente (Nudge) Holds the pitch higher while active. - + Tiene il tono più alto mentre è attivo. Holds the pitch higher (small amount) while active. - + Tiene il tono più alto (di poco) mentre è attivo. Lower Pitch Temporary (Nudge) - + Abbassa Tono Temporaneamente (Nudge) Holds the pitch lower while active. - + Tiene il tono più basso mentre è attivo. Holds the pitch lower (small amount) while active. - + Tiene il tono più basso (di poco) mentre attivo. @@ -11038,7 +11162,7 @@ Fully right: end of the effect period Holds the gain of the high EQ to zero while active. - + Mantiene il guadagno equalizzazione alti a zero mentre è attivo. @@ -11048,7 +11172,7 @@ Fully right: end of the effect period Holds the gain of the mid EQ to zero while active. - + Mantiene il guadagno equalizzazione medi a zero mentre è attivo. @@ -11058,12 +11182,12 @@ Fully right: end of the effect period Holds the gain of the low EQ to zero while active. - + Mantiene il guadagno equalizzazione bassi a zero mentre è attivo. Displays the tempo of the loaded track in BPM (beats per minute). - + Mostra il tempo della traccia caricata in BPM (battute per minuto). @@ -11079,7 +11203,7 @@ Fully right: end of the effect period BPM Tap - + BPM Tap @@ -11115,7 +11239,7 @@ Fully right: end of the effect period When tapped, moves the beatgrid left by a small amount. - + Quando premuto, sposta leggermente la grigliabattute a sinistra. @@ -11125,7 +11249,7 @@ Fully right: end of the effect period When tapped, moves the beatgrid right by a small amount. - + Quando premuto, sposta leggermente la grigliabattute a destra. @@ -11140,12 +11264,12 @@ Fully right: end of the effect period Keylock - + Blocco tastiera Toggling keylock during playback may result in a momentary audio glitch. - + La commutazione del blocco dei tasti durante la riproduzione può causare un momentaneo problema audio. @@ -11155,7 +11279,7 @@ Fully right: end of the effect period (while previewing) - + (durante anteprima) @@ -11170,7 +11294,7 @@ Fully right: end of the effect period Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). - + Imposta punto cue (modo Pioneer/Mixxx/Numark), imposta il punto cue e riproduce al rilascio (modo CUP) O preascolta da esso (modo Denon). @@ -11180,7 +11304,7 @@ Fully right: end of the effect period Seeks the track to the cue point and stops. - + Posiziona la traccia al punto cue e si arresta. @@ -11195,32 +11319,57 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + Invia il canale audio selezionato all'uscita cuffia, selezionato in Preferenze -> Hardware Suono. + + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. - + Cambia la velocità dell'esecuzione della traccia (coinvolge sia il tempo che il tono). Se keylock è abilitato, sarà modificato solo il tempo. Tempo Range Display - + Mostra Intervallo Tempo Displays the current range of the tempo slider. - + Mostra l'intervallo attuale del cursore tempo. Delete selected hotcue. - + Cancella hotcue selezionate. Opens separate artwork viewer. - + Apre visualizzatore copertine seperatamente. @@ -11235,12 +11384,12 @@ Fully right: end of the effect period Big Spinny/Cover Art - + Spinny/Copertina Grande Show a big version of the Spinny or track cover art if enabled. - + Mostra una versione ingrandita dello Spinny o della copertina della traccia se abilitato. @@ -11291,7 +11440,7 @@ Fully right: end of the effect period Main Output Gain - + Guadagno Uscita Master @@ -11317,37 +11466,37 @@ Fully right: end of the effect period If activated, the main mix signal plays in the right channel, while the cueing signal plays in the left channel. - + Se attivato, il segnale master viene riprodotto nel canale destro mentre il segnale cueing viene riprodotto nel canale sinistro. Show/hide Cover Art of the selected track in the library. - + Mostra/nasconde Copertina della traccia selezionata nella libreria. Show/hide the scrolling waveforms - + Mostra/Nasconde lo scorrimento delle forme d'onda Show/hide the beatgrid controls section - + Mostra/nasconde la sezione controlli Grigliabattute Hide all skin sections except the decks to have more screen space for the track library. - + Nasconde tutte le sezioni skin ad eccezione dei decks per avere più spazio schermo per la libreria traccia. Volume Meters - + Misuratori Volume Show/hide volume meters for channels and master output. - + Mostra/nasconde gli indicatori del volume per canali ed uscita master. @@ -11357,59 +11506,59 @@ Fully right: end of the effect period Auto: Automatically reduce music volume when microphone volume rises above threshold. - + Auto: Riduce automaticamente il volume della musica quando il volume del microfono supera la soglia. Adjust the amount the music volume is reduced with the Strength knob. - + Regola la quantità di volume musicale ridotta con la manopola Forza. Auto: Sets how much to reduce the music volume when the volume of active microphones rises above threshold. - + Auto: Imposta di quanto ridurre il volume della musica quando il volume dei microfoni attivi superano la soglia. Manual: Sets how much to reduce the music volume, when talkover is activated regardless of volume of microphone inputs. - + Manuale: Imposta di quanto ridurre il volume della musica, quando talkover è attivo senza badare all'entrata microfono. Shift cues earlier - + Sposta anticipando cues Shift cues imported from Serato or Rekordbox if they are slightly off time. - + Trasla cues importate da Serato o Rekordbox se loro sono leggermente fuori tempo. Left click: shift 10 milliseconds earlier - + Click sinistro: sposta anticipando 10 millisecondi Right click: shift 1 millisecond earlier - + Click destro: sposta anticipando 1 millisecondo Shift cues later - + Sposta cues posticipando Left click: shift 10 milliseconds later - + Click sinistro: sposta 10 milliseconds posticipando Right click: shift 1 millisecond later - + Tasto destro: muove 1 millisecondo posticipando @@ -11434,137 +11583,137 @@ Fully right: end of the effect period Auto DJ is active - + Auto DJ è attivo Hot Cue - Track will seek to nearest previous hotcue point. - + Hot Cue - La traccia si posizionerà al punto hotcue precedente più vicino. Sets the track Loop-In Marker to the current play position. - + Fissa il punto Loop-In alla posizione di riproduzione attuale. Press and hold to move Loop-In Marker. - + Premi e tieni premuto per muovere il punto di Loop-In. Jump to Loop-In Marker. - + Passa al Marcatore Loop-In. Sets the track Loop-Out Marker to the current play position. - + Imposta il marcatore Loop-In alla posizione di riproduzione attuale. Press and hold to move Loop-Out Marker. - + Premi e tieni premuto per muovere il marcatore Loop-Out. Jump to Loop-Out Marker. - + Passa al Marcatore Loop-Out. Beatloop Size - + Dimensione Beatloop Select the size of the loop in beats to set with the Beatloop button. - + Seleziona la dimensione del loop in battute per abbinarlo al bottone Beatloop. Changing this resizes the loop if the loop already matches this size. - + La modifica di questa opzione ridimensiona il ciclo se il ciclo corrisponde già a questa dimensione. Halve the size of an existing beatloop, or halve the size of the next beatloop set with the Beatloop button. - + Dimezza la dimensione di un beatloop esistente, o dimezza la dimensione del prossimo beatloop impostato con il bottone Beatloop. Double the size of an existing beatloop, or double the size of the next beatloop set with the Beatloop button. - + Raddoppia la dimensione di un beatloop esistente, o raddoppia la dimensione del prossimo beatloop impostato con il bottone Beatloop. Start a loop over the set number of beats. - + Inizia un loop per il numero di battute selezionate. Temporarily enable a rolling loop over the set number of beats. - + Abilita temporaneamente un loop continuo in base al numero di battute impostate. Beatjump/Loop Move Size - + Saltobattuta / Loop Sposta Dimensione Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. - + Seleziona il numero di beats da saltare o muove il loop con i bottoni Beatjump Avanti/Indietro. Beatjump Forward - + SaltoBattuta Avanti Jump forward by the set number of beats. - + Salta in avanti del numero di battute impostato. Move the loop forward by the set number of beats. - + Muove il loop in avanti del numero di beats impostato. Jump forward by 1 beat. - + Salta in avanti di %1 battuta. Move the loop forward by 1 beat. - + Muove il loop in avanti di 1 beat. Beatjump Backward - + Saltobattuta Indietro Jump backward by the set number of beats. - + Salta all'indietro del numero di battute impostato. Move the loop backward by the set number of beats. - + Muove il loop all'indietro del numero di beats impostato. Jump backward by 1 beat. - + Salta all'indietro di %1 battuta. Move the loop backward by 1 beat. - + Muove il loop all'indietro di 1 beat. @@ -11574,17 +11723,17 @@ Fully right: end of the effect period If the loop is ahead of the current position, looping will start when the loop is reached. - + Se il loop successivo alla posizione corrente, il looping inizierà quando il loop viene raggiunto. Works only if Loop-In and Loop-Out Marker are set. - + Funziona solo se i marcatori Loop-In e Loop-Out sono impostati. Enable loop, jump to Loop-In Marker, and stop playback. - + Abilita loop, passa al marcatore di Loop-In ed interrompe la riproduzione. @@ -11599,7 +11748,7 @@ Fully right: end of the effect period Hint: Change the time format in Preferences -> Decks. - + Suggerimento: Modifica il formato del tempo in Preferenze -> Decks. @@ -11609,7 +11758,7 @@ Fully right: end of the effect period Intro Start Marker - + Marcatore Inizio Intro @@ -11617,7 +11766,7 @@ Fully right: end of the effect period If marker is set, jumps to the marker. - + Se il marcatore è impostato, passa al marcatore. @@ -11625,7 +11774,7 @@ Fully right: end of the effect period If marker is not set, sets the marker to the current play position. - + Se il marcatore non è impostato, imposta il marcatore sulla posizione di riproduzione corrente. @@ -11633,22 +11782,22 @@ Fully right: end of the effect period If marker is set, clears the marker. - + Se il marcatore è impostato, cancella il marcatore. Intro End Marker - + Marcatore Fine Intro Outro Start Marker - + Marcatore Inizio Outro Outro End Marker - + Marcatore Fine Outro @@ -11673,7 +11822,7 @@ Fully right: end of the effect period Mix Mode - + Modo Mix @@ -11684,63 +11833,64 @@ Fully right: end of the effect period Dry/Wet mode (crossed lines): Mix knob crossfades between dry and wet Use this to change the sound of the track with EQ and filter effects. - + Modo Dry/Wet (linee incrociate): Mixa manopola dissolvenze incrociate tra dry e wet +Usa questo per cambiare il suono della traccia con l'EQ e gli effetti filtro. Dry+Wet mode (flat dry line): Mix knob adds wet to dry Use this to change only the effected (wet) signal with EQ and filter effects. - + Modo Dry+Wet (linea dry piatta): La manopola Mix aggiunge wet a dry. Usalo per cambiare solo il segnale realizzato (wet) con EQ ed effetti del filtro. Route the main mix through this effect unit. - + Instrada il mix principale attraverso questa unità effetto. Route the left crossfader bus through this effect unit. - + Instrada il crossfader bus attraverso questa unità effetto. Route the right crossfader bus through this effect unit. - + Instrada il crossfader destro attraverso questa unità effetto. Right side active: parameter moves with right half of Meta Knob turn - + Lato destro attivo: il parametro si muove con la metà destra della rotazione del Meta Knob Skin Settings Menu - + Menu Impostazioni Skin Show/hide skin settings menu - + Mostra/nasconde menu impostazioni skin Save Sampler Bank - + Salva Raccolta Campionatore Save the collection of samples loaded in the samplers. - + Salva la collezione di campioni caricata nei campionatori. Load Sampler Bank - + Carica Raccolta Campionatore Load a previously saved collection of samples into the samplers. - + Carica nei campionatori una collezione di campioni salvata in precedenza. @@ -11760,7 +11910,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Set how this parameter is linked to the effect's Meta Knob. - + Mostra come questo parametro è collegato all'effetto di Meta Knob. @@ -11770,27 +11920,27 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Inverts the direction this parameter moves when turning the effect's Meta Knob. - + Inverte la direzione in cui questo parametro si muove quando si gira la Meta Knob dell'effetto. Super Knob - + Super Manopola Next Chain - + Prossima Catena Previous Chain - + Catena Precedente Next/Previous Chain - + Catena Successiva/Precedente @@ -11800,7 +11950,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Clear the current effect. - + Toglie l'effetto attuale @@ -11810,7 +11960,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Toggle the current effect. - + Attiva/disattiva l'effetto corrente. @@ -11820,12 +11970,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Clear Unit - + Cancella Unità Clear effect unit. - + Cancella unità effetti. @@ -11835,7 +11985,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Toggle Unit - + Attiva/disattiva Unità @@ -11845,22 +11995,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Controls the Meta Knob of all effects in this unit together. - + Controlla il Meta Knob di tutti gli effetti di questa unità assieme. Load next effect chain preset into this effect unit. - + Carica la successiva catena effetto preimpostata in questa unità effetto. Load previous effect chain preset into this effect unit. - + Carica la precedente catena effetto preimpostata in questa unità effetto. Load next or previous effect chain preset into this effect unit. - + Carica la catena effetto preimpostata precedente o successiva in questa unità effetto. @@ -11883,27 +12033,27 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Route the headphone channel through this effect unit. - + Indirizza il canale cuffia attraverso questa unità effetto. Route this deck through the indicated effect unit. - + Instrada questo deck attraverso l'unità effetto indicata. Route this sampler through the indicated effect unit. - + Instrada questo campionatore attraverso l'unità effetto indicata. Route this microphone through the indicated effect unit. - + Instrada questo microfono attraverso l'unità effetto indicata. Route this auxiliary input through the indicated effect unit. - + Instrada questo ausiliario attraverso l'unità effetto indicata. @@ -11913,7 +12063,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Switch to the next effect. - + Passa all'effetto successivo. @@ -11923,7 +12073,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Switch to the previous effect. - + Passa all'effetto precedente. @@ -11933,17 +12083,17 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Switch to either the next or previous effect. - + Passa all'effetto precedente o al successivo. Meta Knob - + Manopola Meta Controls linked parameters of this effect - + Controlla parametri collegati a questo effetto. @@ -11963,12 +12113,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Refer to the web page on the Mixxx wiki for your controller for more information. - + Per maggiori informazioni per il tuo controller fai riferimento alla pagine web del wiki Mixxx. Effect Parameter - + Parametro Effetto @@ -11978,54 +12128,54 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Inactive: parameter not linked - + Inattivo; parametro non legato Active: parameter moves with Meta Knob - + Attivo: il parametro si muove con il Meta Knob Left side active: parameter moves with left half of Meta Knob turn - + Lato sinistro attivo: il parametro si muove con la metà sinistra della rotazione del Meta Knob Left and right side active: parameter moves across range with half of Meta Knob turn and back with the other half - + Lato sinistro e destro attivo: il parametro si muove nell'intervallo con metà del giro di Meta Knob e indietro con l'altra metà Equalizer Parameter Kill - + Elimina Parametro Equalizzatore Holds the gain of the EQ to zero while active. - + Mantiene il guadagno equalizzazione a zero mentre è attivo. Quick Effect Super Knob - + Super Manopola Effetto Rapido Quick Effect Super Knob (control linked effect parameters). - + Effetto Rapido Super Manopola (controlla parametri di effetti collegati). Hint: Change the default Quick Effect mode in Preferences -> Equalizers. - + Suggerimento: Cambia il modo di default dell'Effetto Rapido in Preferenze -> Equalizzatori. Equalizer Parameter - + Parametro Equalizzatore @@ -12035,7 +12185,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Hint: Change the default EQ mode in Preferences -> Equalizers. - + Suggerimento: Cambia il defaul del modo EQ in Preferenze -> Equalizzatori. @@ -12057,79 +12207,79 @@ Use this to change only the effected (wet) signal with EQ and filter effects. If quantize is enabled, snaps to the nearest beat. - + Se quantizza è abilitato, scatta alla battuta più vicina. Quantize - + Quantizza Toggles quantization. - + Attiva/disattiva modo quantizzazione. Loops and cues snap to the nearest beat when quantization is enabled. - + I loop e i cues si agganciano al beat più vicino quando la quantizzazione è abilitata. Reverse - + Contrario Reverses track playback during regular playback. - + Inverte la riproduzione della traccia durante la riproduzione normale. Puts a track into reverse while being held (Censor). - + Pone una traccia in inverti mentre è cliccato (Censore). Playback continues where the track would have been if it had not been temporarily reversed. - + La riproduzione continua dove la traccia sarebbe stata se non fosse stata temporaneamente invertita. Play/Pause - + Riproduci/Pausa Jumps to the beginning of the track. - + Salta all'inizio della traccia. Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. - + Sincronizza il tempo (BPM) e la fase con quello dell'altra traccia, se il BPM viene rilevato su entrambi. Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. - + Sincronizza il tempo (BPM) con quello dell'altra traccia, se il BPM viene rilevato su entrambi. Sync and Reset Key - + Sincronizza e Resetta Chiave Increases the pitch by one semitone. - + Incrementa il pitch di un semitono. Decreases the pitch by one semitone. - + Decrementa il pitch di un semitono @@ -12139,7 +12289,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. When disabled, the track is controlled by Mixxx playback controls. - + Quando disabilitato, la traccia è controllata dai controlli di riproduzione di Mixxx. @@ -12149,27 +12299,27 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Enable Passthrough - + Abiita Passthrough Indicates that the audio buffer is too small to do all audio processing. - + Indica che il buffer audio è troppo piccolo per elaborare tutto l'audio. Displays cover artwork of the loaded track. - + Mostra la copertina della traccia caricata Displays options for editing cover artwork. - + Visualizza le opzioni per modificare la copertina. Star Rating - + Valutazione Stelle @@ -12179,253 +12329,228 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Channel Peak Indicator - + Indicatore Picco Canale Drag this item to other decks/samplers, to crates and playlist or to external file manager. - + Trascina questo elemento su altri deck/campionatori, su contenitori e playlist o su un file manager esterno. Shows information about the track currently loaded in this deck. - + Mostra informazioni circa la traccia correntemente caricata in questo deck. Left click to jump around in the track. - + Click sinistro per saltare fra la traccia. Right click hotcues to edit their labels and colors. - + Click destro su hotcues per modificare le loro etichette e colori. Right click anywhere else to show the time at that point. - + Clicca con il destro in qualsiasi punto per vedere il tempo a quel punto. Channel L Peak Indicator - + Indicatore Picco Canale Sx Indicates when the left signal on the channel is clipping, - + Indica quando il segnale sinistro sul canale è in clipping, Channel R Peak Indicator - + Indicatore Picco Canale Dx Indicates when the right signal on the channel is clipping, - + Indica quando il segnale destro del canale è in clipping. Channel L Volume Meter - + Livello Volume Canale Sx Shows the current channel volume for the left channel. - + Mostra il volume corrente del canale sinistro. Channel R Volume Meter - + Livello Volume Canale Dx Shows the current channel volume for the right channel. - + Mostra il volume corrente del canale destro. Microphone Peak Indicator - + Indicatore Picco Microfono Indicates when the signal on the microphone is clipping, - + Indica quando il segnale del microfono è in clipping, Sampler Volume Meter - + Livello Volume Campionatore Shows the current sampler volume. - + Mostra il volume del campionatore attuale. Sampler Peak Indicator - + Indicatore Picco Campionatore Indicates when the signal on the sampler is clipping, - + Indica quando il segnale del campionatore è in clipping, Preview Deck Volume Meter - + Anteprima Deck Volume Meter Shows the current Preview Deck volume. - + Mostra Anteprima volume del Deck attuale. Preview Deck Peak Indicator - + Anteprima Indicatore Picchi Deck Indicates when the signal on the Preview Deck is clipping, - + Indica quando il segnale nell'Anteprima Deck è in clipping, Maximize Library - + Massimizza Libreria Microphone Talkover Ducking Strength - + Forza Ducking Talkover Microfono Prevents the pitch from changing when the rate changes. - + Impedisce che il tono cambi quando cambia la velocità. Changes the number of hotcue buttons displayed in the deck - + Modifica il numero di pulsanti hotcue visualizzati nel deck Starts playing from the beginning of the track. - + Inizia a riprodurre dall'inizio della traccia. Jumps to the beginning of the track and stops. - + Salta all'inizio della traccia e si arresta. Plays or pauses the track. - + Riproduce o pausa la traccia. (while playing) - + (quando riproduce) Opens the track properties editor - + Apre l'editor delle proprietà traccia Opens the track context menu. - + Apre il menu contestuale della traccia. (while stopped) - + (mentre è fermo) Cue - + Cue Headphone - + Cuffia Mute - + Muto Old Synchronize - - - - - (This skin should be updated to use Master Sync!) - + Vecchio Sincronizza Syncs to the first deck (in numerical order) that is playing a track and has a BPM. - + Sincronizza con il primo deck (in ordine numerico) che stà riproducendo una traccia e ha un BPM. If no deck is playing, syncs to the first deck that has a BPM. - + Se nessun deck stà suonando, sincronizza al primo deck che ha un BPM. Decks can't sync to samplers and samplers can only sync to decks. - - - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - + I decks non possono sincronizzarsi con i campionatori e i campionatori possono sincronizzarsi solo con decks. Hold for at least a second to enable sync lock for this deck. - + Tieni per almeno un secondo per abilitare il blocco sync per questo deck. Decks with sync locked will all play at the same tempo, and decks that also have quantize enabled will always have their beats lined up. - + Decks con sync bloccato suoneranno con lo stesso tempo, e decks che hanno anche abilitato il quantize avranno sempre i loro beats allineati. Resets the key to the original track key. - - - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - + Resetta la chiave alla chiave originale della traccia. @@ -12437,17 +12562,17 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Changes the track pitch independent of the tempo. - + Cambia il tono della traccia indipendentemente dal tempo. Increases the pitch by 10 cents. - + Incrementa il tono di 10 centesimi. Decreases the pitch by 10 cents. - + Decrementa il pitch di 10 centesimi. @@ -12457,42 +12582,42 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Adjust the pitch in addition to the speed slider pitch. - + Regola il tono in aggiunta al tono impostato dal cursore della velocità. Opens a menu to clear hotcues or edit their labels and colors. - + Apre un menu per cancellare gli hotcue o modificarne le etichette e i colori. Record Mix - + Registra il Mix Toggle mix recording. - + Abilita/disabilita registrazione del mix. Enable Live Broadcasting - Abilita Live Broadcasting + Abilita Trasmissione Live Stream your mix over the Internet. - + Trasmette il tuo mix su Internet. Provides visual feedback for Live Broadcasting status: - Fornisce feedback visivo dello stato del Live Broadcasting: + Fornisce feedback visivo dello stato della Trasmissione Live: disabled, connecting, connected, failure. - + disabilitato, in connessione, connesso, guasto. @@ -12502,48 +12627,48 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Blue for passthrough enabled. - + Blu per inoltro diretto abilitato. Playback will resume where the track would have been if it had not entered the loop. - + La riproduzione riprenderà dove sarebbe stata la traccia se non fosse entrata nel loop. Loop Exit - + Uscita Loop Turns the current loop off. - + Interrompe il loop attuale. Slip Mode - + Modo Slip When active, the playback continues muted in the background during a loop, reverse, scratch etc. - + Quando attivo, la riproduzione continua muta in sottofondo durante un loop, un reverse, scratch etc. Once disabled, the audible playback will resume where the track would have been. - + Una volta disabilitata, la riproduzione udibile riprenderà dove sarebbe stata la traccia. Track Key The musical key of a track - + Chiave Traccia Displays the musical key of the loaded track. - + Visualizza la chiave musicale della traccia caricata. @@ -12553,77 +12678,77 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Displays the current time. - + Mostra l'ora attuale. Audio Latency Usage Meter - + Misuratore Utilizzo Latenza Audio Displays the fraction of latency used for audio processing. - + Visualizza la frazione di latenza utilizzata per l'elaborazione audio. A high value indicates that audible glitches are likely. - + Un valore elevato indica che sono probabili anomalie udibili. Do not enable keylock, effects or additional decks in this situation. - + Non abilitare keylock, effetti o deck aggiuntivi in questa situazione. Audio Latency Overload Indicator - + Indicatore Sovraccarico Latenza Audio If Vinyl control is enabled, displays time-coded vinyl signal quality (see Preferences -> Vinyl Control). - + Se è abilitato il controllo tramite Vinile, mostra la qualità del segnale codificato (vedi Opzioni > Controllo vinile). Drop tracks from library, external file manager, or other decks/samplers here. - + Rilascia tracce dalla libreria, dal file manager esterno o da altri deck/campionatore qui. Change the crossfader curve in Preferences -> Crossfader - + Cambia la curva crossfader in Preferenze -> Crossfader Crossfader Orientation - + Orientamento Crossfader Set the channel's crossfader orientation. - + Imposta l'orientamento del crossfader del canale. Either to the left side of crossfader, to the right side or to the center (unaffected by crossfader) - + Sul lato sinistro del crossfader, sul lato destro o al centro (non influenzato dal crossfader) Activate Vinyl Control from the Menu -> Options. - + Attiva il Controllo Vinile dal Menu -> Opzioni. Change the step-size in the Preferences -> Interface menu. - + Modifica l'incremento in Preferenze -> Menu interfaccia. Displays the current musical key of the loaded track after pitch shifting. - + Mostra la chiave musicale attuale della traccia caricata dopo la traslazione pitch. @@ -12633,7 +12758,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Fast rewind through the track. - + Indietro veloce attraverso la traccia. @@ -12643,24 +12768,24 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Fast forward through the track. - + Avanti veloce attraverso la traccia. Jumps to the end of the track. - + Salta alla fine della traccia. Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. - + Configura il tono con una chiave che permetta una transizione armonica all'altra traccia. Richiede che sia stata calcolata una chiave su entrambe le tracce dei decks coinvolti. Pitch Control - + Controllo Tono @@ -12670,7 +12795,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Displays the current playback rate of the track. - + Visualizza la velocità di riproduzione corrente della traccia. @@ -12680,7 +12805,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. When active the track will repeat if you go past the end or reverse before the start. - + Quando è attiva, la traccia si ripeterà se si supera la fine o si retrocederà prima dell'inizio. @@ -12695,17 +12820,17 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Hotcue - + Hotcue If hotcue is set, jumps to the hotcue. - + Se hotcue è impostato, salta all'hotcue. If hotcue is not set, sets the hotcue to the current play position. - + Se hotcue non è impostato, imposta l'hotcue sulla posizione di riproduzione corrente. @@ -12715,17 +12840,17 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Absolute mode - track position equals needle position and speed. - + Modo assoluto: la posizione della traccia equivale alla posizione e alla velocità della puntina. Relative mode - track speed equals needle speed regardless of needle position. - + Modo relativo: la velocità della traccia è uguale alla velocità della puntina indipendentemente dalla posizione della puntina. Constant mode - track speed equals last known-steady speed regardless of needle input. - + Modo costante: la velocità della traccia è uguale all'ultima velocità costante nota indipendentemente dall'input della puntina. @@ -12740,47 +12865,47 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Green for control enabled. - + Verde per controllo abilitato. Blinking yellow for when the needle reaches the end of the record. - + Lampeggia giallo quando la puntina raggiunge la fine del disco. Loop-In Marker - + Marcatore Loop-In Loop-Out Marker - + Marcatore Loop-Out Loop Halve - + Dimezza Loop Halves the current loop's length by moving the end marker. - + Dimezza la lunghezza del loop corrente spostando il marcatore finale. Deck immediately loops if past the new endpoint. - + Deck passa immediatamente in loop se supera il nuovo endpoint. Loop Double - + Raddoppia Loop Doubles the current loop's length by moving the end marker. - + Raddoppia la lunghezza del loop corrente spostando il marcatore finale. @@ -12790,52 +12915,52 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Toggles the current loop on or off. - + Attiva/disattiva il loop attuale. Works only if Loop-In and Loop-Out marker are set. - + Funziona solo se i marcatori Loop-In e Loop-Out sono impostati. Hint: Change the default cue mode in Preferences -> Interface. - + Suggerimento: Cambia il modo cue di default in Preferenze -> Interfaccia. Vinyl Cueing Mode - + Modo Cueing Vinile Determines how cue points are treated in vinyl control Relative mode: - + Determina il modo in cui i cue points vengono trattati nel Modo di Controllo Vinile Relativo: Off - Cue points ignored. - + Off - Punti Cue ignorati. One Cue - If needle is dropped after the cue point, track will seek to that cue point. - + Un Cue - Se la puntina è rilasciata dopo il punto cue, la traccia si posizionerà a quel punto cue. Track Time - + Tempo Traccia Track Duration - + Durata Traccia Displays the duration of the loaded track. - + Mostra la durata della traccia caricata, @@ -12845,42 +12970,42 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Track Artist - + Artista Traccia Displays the artist of the loaded track. - + Mostra l'artista della traccia caricata. Track Title - + Titolo Traccia Displays the title of the loaded track. - + Mostra il titolo della traccia caricata. Track Album - + Album Traccia Displays the album name of the loaded track. - + Mostra il nome dell'album della traccia caricata. Track Artist/Title - + Traccia Artista/Titolo Displays the artist and title of the loaded track. - + Mostra l'artista e il titolo della traccia caricata. @@ -12888,12 +13013,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Hiding tracks - + Nascondi tracce The selected tracks are in the following playlists:%1Hiding them will remove them from these playlists. Continue? - + Le traccie selezionate sono nelle seguenti playlists:%1 Nascondendole verranno rimosse da quelle playlists. Continuo? @@ -12901,47 +13026,47 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Export finished - + Esportazione terminata Exporting %1 - + Esportazione di %1 Overwrite Existing File? - + Sovrascrivere il file esistente? "%1" already exists, overwrite? - + "%1" esiste già, sovrascrivere? &Overwrite - + &Sovrascrivi Over&write All - + Sovrascrivi &Tutti &Skip - + S&alta Skip &All - + Salta T&utti Export Error - + Errore di Esportazione @@ -12958,46 +13083,46 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Export process was canceled - + L'esportazione è stata cancellata Error removing file %1: %2. Stopping. - + Errore rimozione file %1: %2. Interruzione in corso. Error exporting track %1 to %2: %3. Stopping. - + Errore esportazione traccia %1 in %2. Interruzione in corso. Error exporting tracks - + Errore esportando tracce TraktorFeature - + Traktor - + Traktor - + (loading) Traktor - + (caricamento) Traktor - + Error Loading Traktor Library - + Errore Caricamento Libreria Traktor - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. - + Si è verificato un errore in caricamento della libreria Traktor. Alcuni dei vostri brani o le playlist Traktor non possono essere caricati. @@ -13005,27 +13130,27 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Timer (Fallback) - + Timer (alternativa) MESA vblank_mode = 1 - + MESA vblank_mode = 1 Wait for Video sync - + Attesa per Video Sync Sync Control - + Controllo Sync Free + 1 ms (for benchmark only) - + Libero + 1 ms (solo per benchmark) @@ -13033,17 +13158,17 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Time until charged: %1 - + Tempo al caricamento: %1 Time left: %1 - + Tempo rimasto: %1 Battery fully charged. - + Batteria caricata completamente. @@ -13051,12 +13176,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. No color - + No color Custom color - + Colore personalizzato @@ -13065,7 +13190,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Choose new cover change cover art location - + Scegli nuova copertina @@ -13077,17 +13202,17 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Reload from file/folder reload cover art from file metadata or folder - + Ricarica da file/cartella Image Files - + Files Immagine Change Cover Art - + Cambia la copertina @@ -13095,32 +13220,32 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Cue number - + Numero cue Cue position - + Posizione cue Edit cue label - + Modifica etichetta cue Label... - + Etichetta... Delete this cue - + Cancella questa cue Hotcue #%1 - + Hotcue #%1 @@ -13142,7 +13267,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. No effect chain loaded. - + Nessuna catena effetto caricata. @@ -13166,7 +13291,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. &File - + &File @@ -13176,125 +13301,125 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Loads a track in deck %1 - + Carica una traccia sul deck %1 Open - + Apri &Exit - + &Esci Quits Mixxx - + Esce da Mixxx Ctrl+q - + Ctrl+q &Library - + &Libreria &Rescan Library - + &Riscansiona Libreria Rescans library folders for changes to tracks. - + Riscansiona le cartelle della libreria per rilevare cambiamenti alle tracce. E&xport Library to Engine Prime - + E&sporta Libreria a Engine Prime Export the library to the Engine Prime format - + Esporta la libreria nel formato Engine Prime Create &New Playlist - + Crea &Nuova Playlist Create a new playlist - + Crea una nuova playlist Ctrl+n - + Ctrl+n Create New &Crate - Crea Nuova &Cesta + Crea &Nuovo Contenitore Create a new crate - Crea una nuova cesta + Crea un nuovo contenitore Ctrl+Shift+N - + Ctrl+Shift+N &View - + &Vista May not be supported on all skins. - + Potrebbe non essere supportata su tutte le skins. Show Skin Settings Menu - + Mostra Menu Impostazioni Skin Show the Skin Settings Menu of the currently selected Skin - + Mostra Menu Impostazioni Skin della Skin correntemente selezionata Ctrl+1 Menubar|View|Show Skin Settings - + Ctrl+1 Show Microphone Section - + Mostra Sezione Microfono Show the microphone section of the Mixxx interface. - + Mostra la sezione microfono della interfaccia Mixxx. Ctrl+2 Menubar|View|Show Microphone Section - + Ctrl+2 @@ -13310,7 +13435,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Ctrl+3 Menubar|View|Show Vinyl Control Section - + Ctrl+3 @@ -13326,54 +13451,54 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Ctrl+4 Menubar|View|Show Preview Deck - + Ctrl+4 Show Cover Art - + Mostra Copertina Show cover art in the Mixxx interface. - + Mostra copertina nell'interfaccia Mixxx. Ctrl+6 Menubar|View|Show Cover Art - + Ctrl+6 Maximize Library - + Massimizza Libreria Maximize the track library to take up all the available screen space. - + Massimizza la libreria tracce per occupare tutto lo spazio disponibile sullo schermo. Space Menubar|View|Maximize Library - + Spazio &Full Screen - + &Schermo Intero Display Mixxx using the full screen - + Mostra Mixxx in modalità schermo intero &Options - + &Opzioni @@ -13383,7 +13508,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Use timecoded vinyls on external turntables to control Mixxx - + Usa vinili timecoded su piatti esterni per controllare Mixxx @@ -13393,210 +13518,210 @@ Use this to change only the effected (wet) signal with EQ and filter effects. &Record Mix - + &Registra Mix Record your mix to a file - + Registra il tuo mix su un file Ctrl+R - + Ctrl+R Enable Live &Broadcasting - Abilita Live &Broadcasting + Abilita Trasmissione &Live Stream your mixes to a shoutcast or icecast server - + Invia i tuoi mix a un server shoutcast o icecast Ctrl+L - + Ctrl+L Enable &Keyboard Shortcuts - + Attiva &Scorciatoie Tastiera Toggles keyboard shortcuts on or off - + Attiva/disattiva le scorciatoie da tastiera Ctrl+` - + Ctrl+` &Preferences - + &Preferenze Change Mixxx settings (e.g. playback, MIDI, controls) - + Modifica le impostazioni di Mixxx (es. riproduzione, MIDI, controlli) &Developer - + &Sviluppatore &Reload Skin - + &Ricarica Skin Reload the skin - + Ricarica la skin Ctrl+Shift+R - + Ctrl+Shift+R Developer &Tools - + Strumenti Sviluppa&tori Opens the developer tools dialog - + Apre la dialog strumenti sviluppatore Ctrl+Shift+T - + Ctrl+Shift+T Stats: &Experiment Bucket - + Statistiche: Cassetto &Esperimento Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. - + Abilita modo esperimento. Colleziona statistiche nel cassetto di tracciamento EXPERIMENT. Ctrl+Shift+E - + Ctrl+Shift+E Stats: &Base Bucket - + Statistiche: Cassetto &Base Enables base mode. Collects stats in the BASE tracking bucket. - + Abilita modo base. Colleziona statistiche nel cassetto tracciamento BASE. Ctrl+Shift+B - + Ctrl+Shift+B Deb&ugger Enabled - + Deb&ugger Abilitato Enables the debugger during skin parsing - + Abilita il debugger durante l'analisi skin Ctrl+Shift+D - + Ctrl+Shift+D &Help - + &Aiuto Show Keywheel menu title - + Mostra Keywheel Show keywheel tooltip text - + Mostra keywheel F12 Menubar|View|Show Keywheel - + F12 &Community Support - + Supporto &Comunità Get help with Mixxx - + Ottieni aiuto su Mixxx &User Manual - + Manuale &Utente Read the Mixxx user manual. - + Leggi il manuale utente di Mixxx &Keyboard Shortcuts - + Scorciatoie da tastiera Speed up your workflow with keyboard shortcuts. - + Velocizza il tuo flusso di lavoro con le scorciatoie da tastiera. &Translate This Application - + &Traduci Questa Applicazione Help translate this application into your language. - + Aiuta a tradurre questo programma nella tua lingua. &About - + &Informazioni About the application - + Informazioni sull'applicazione @@ -13604,26 +13729,26 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Passthrough - + Passthrough - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - + Pronto a partire, analizzo.. - - + + Loading track... Text on waveform overview when file is cached from source - + Caricamento traccia... - + Finalizing... Text on waveform overview during finalizing of waveform analysis - + Finalizzazione... @@ -13632,73 +13757,73 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Clear input Clear the search bar input field - + Cancella input Ctrl+F Search|Focus - + Ctrl+F Search noun - + Cerca Clear input - + Cancella input Search... Shown in the library search bar when it is empty. - + Cerca... Clear the search bar input field - + Pulisce il campo della barra di ricerca Enter a string to search for - + Inserisci una stringa da cercare Use operators like bpm:115-128, artist:BooFar, -year:1990 - + Usa operatori come bpm:115-128, artist:BooFar, -year:1990 For more information see User Manual > Mixxx Library - + Per maggiori informazioni vedi il Manuale Utente > Mixxx Library Shortcut - + Scorciatoia Ctrl+F - + Ctrl+F Focus Give search bar input focus - + Focus Ctrl+Backspace - + Ctrl+Backspace @@ -13714,13 +13839,13 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Esc - + Esc Exit search Exit search bar and leave focus - + Esci dalla ricerca @@ -13791,8 +13916,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Genere - - Folder + + Directory @@ -13806,22 +13931,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Deck - + Deck Sampler - + Campionatore Add to Playlist - + Aggiungi a playlist Crates - Ceste + Contenitori @@ -13831,7 +13956,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Update external collections - + Aggiorna collezioni estrerne @@ -13846,23 +13971,23 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Select Color - + Seleziona Colore Reset Reset metadata in right click track context menu in library - + Reimposta Add to Auto DJ Queue (bottom) - Aggiungi alla coda di Auto DJ (in fondo) + Aggiunge alla coda di Auto DJ (in fondo) Add to Auto DJ Queue (top) - Aggiungi alla coda di Auto DJ (in cima) + Aggiunge alla coda di Auto DJ (in cima) @@ -13882,62 +14007,62 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Remove from Playlist - + Rimuovi dalla Playlist Remove from Crate - Togli da Cesta + Togli da Contenitore Hide from Library - + Nascondi dalla Libreria Unhide from Library - + Mostra dalla Libreria Purge from Library - + Elimina dalla Libreria Properties - + Proprietà Open in File Browser - + Apri nel File Manager Import From File Tags - + Importa Da File Tags Import From MusicBrainz - + Importa Da MusicBrainz Export To File Tags - + Esporta su File Tags BPM and Beatgrid - + BPM e Beatgrid Play Count - + Conteggio Play @@ -13947,27 +14072,27 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Cue Point - + Punto Cue Hotcues - + Hotcue Intro - + Intro Outro - + Outro Loop - + Loop @@ -13987,32 +14112,32 @@ Use this to change only the effected (wet) signal with EQ and filter effects. All - + Tutto Lock BPM - + Blocca BPM Unlock BPM - + Sblocca BPM Double BPM - + Raddoppia BPM Halve BPM - + Dimezza BPM 2/3 BPM - + 2/3 BPM @@ -14022,168 +14147,173 @@ Use this to change only the effected (wet) signal with EQ and filter effects. 4/3 BPM - + 4/3 BPM 3/2 BPM - + 3/2 BPM Reset BPM + Reimposta BPM + + + + Update ReplayGain from Deck Gain - + Deck %1 Piatto %1 - + Sampler %1 - + Campionatore %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Crea Nuova Playlist - + Enter name for new playlist: Specifica nome per la playlist: - + New Playlist Nuova Playlist - - - + + + Playlist Creation Failed Creazione Playlist Fallita - + A playlist by that name already exists. Una playlist con quel nome esiste già. - + A playlist cannot have a blank name. La playlist non può avere un nome nullo. - + An unknown error occurred while creating playlist: Si è verificato un errore sconosciuto durante la creazione della playlist: - + Add to New Crate - Aggiungi a Nuova Cesta + Aggiungi a Nuovo Contenitore - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14191,10 +14321,10 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus - + ESC @@ -14202,7 +14332,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Show or hide columns. - + Mostra o nasconde colonne. @@ -14210,151 +14340,81 @@ Use this to change only the effected (wet) signal with EQ and filter effects. (GLSL) - + (GLSL) (GL) - + (GL) (GLSL ES) - + (GLSL) (GL ES) - - - - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - + (GLSL) mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + Scegli cartella libreria musica - + controllers - + Cannot open database - + Impossibile aprire database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. Click OK to exit. - + Impossibile stabilire una connessione al database. +Mixxx richiede QT con supporto Sqlite. Si prega di leggere la documentazione del driver Qt SQL per informazioni su come costruirlo. + +Fare clic su OK per uscire. @@ -14367,7 +14427,7 @@ Click OK to exit. Selected crates - + Contenitori selezionati @@ -14392,7 +14452,7 @@ Click OK to exit. Cancel - + Annulla @@ -14425,7 +14485,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14440,7 +14500,7 @@ Click OK to exit. Mixxx may wait to modify files until they are not loaded to any decks or samplers. If you do not see changed metadata in other programs immediately, eject the track from all decks and samplers or shutdown Mixxx. - + Mixxx può attendere prima di modificare files fino a che essi non vengono caricati in qualsiasi decks o campionatori. Se non vedi immediatamente cambiamenti nei metadati in altri programmi, espelli la traccia da tutti i decks e campionatori o chiudi Mixxx. @@ -14453,7 +14513,7 @@ Click OK to exit. Exported %1 track(s) and %2 crate(s). - + Esportate %1 tracc(ia/e) e %2 contenitore(i). @@ -14476,68 +14536,68 @@ Click OK to exit. Abort - + Termina mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: @@ -14547,7 +14607,7 @@ Click OK to exit. No network access - + Nessun accesso alla rete diff --git a/res/translations/mixxx_ja.qm b/res/translations/mixxx_ja.qm index f3734f29e05ae8d00bfa9ead087b04d3c1a83bdd..c528cc1b08ef673cd5287ef4c6da5ac603d47605 100644 GIT binary patch delta 5544 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 diff --git a/res/translations/mixxx_ja.ts b/res/translations/mixxx_ja.ts index 84a85dc8c54..f3cd5aa94d3 100644 --- a/res/translations/mixxx_ja.ts +++ b/res/translations/mixxx_ja.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates レコードボックス - + Remove Crate as Track Source - + Auto DJ オートDJ - + Add Crate as Track Source トラックソースを追加 @@ -43,24 +43,24 @@ BansheeFeature - + Banshee Banshee - - + + Error loading Banshee database Bansheeのデータべース読み込みに失敗しました - + Banshee database file not found at - + There was an error loading your Banshee database at @@ -69,32 +69,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) オートDJの最後に追加 - + Add to Auto DJ Queue (top) オートDJの先頭に追加 - + Add to Auto DJ Queue (replace) - + Import Playlist プレイリストをインポート - + Playlist Creation Failed プレイリストの作成に失敗 - + An unknown error occurred while creating playlist: プレイリストの作成中に不明なエラーが発生しました @@ -102,144 +102,144 @@ BasePlaylistFeature - + New Playlist プレイリストの新規作成 - + Add to Auto DJ Queue (bottom) オートDJの最後に追加 - - + + Create New Playlist 新規プレイリストの作成 - + Add to Auto DJ Queue (top) オートDJの先頭に追加 - + Remove 削除する - + Rename 名前を変更 - + Lock ロックをかける - + Duplicate 複製 - - + + Import Playlist プレイリストをインポート - + Export Track Files トラックファイルを出力 - + Analyze entire Playlist すべての曲を解析 - + Enter new name for playlist: プレイリストに新しい名前を付ける - + Duplicate Playlist プレイリストを複製する - - + + Enter name for new playlist: 新しいプレイリストの名前 - - + + Export Playlist プレイリストをエクスポート - + Add to Auto DJ Queue (replace) - + Rename Playlist プレイリストの名前の変更 - - + + Renaming Playlist Failed プレイリストの名前の変更に失敗 - - - + + + A playlist by that name already exists. 同じ名前のプレイリストが既にあります。 - - - + + + A playlist cannot have a blank name. プレイリストには名前が必要です。 - + _copy //: Appendix to default name when duplicating a playlist コピー(_C) - - - - - - + + + + + + Playlist Creation Failed プレイリストの作成に失敗 - - + + An unknown error occurred while creating playlist: プレイリストの作成中に不明なエラーが発生しました - + M3U Playlist (*.m3u) M3U プレイリスト (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3Uプレイリスト (*.m3u);;M3U8プレイリスト (*.m3u8);;PLSプレイリスト (*.pls);;CSVファイル(*.csv);;テキストファイル(*.txt);; @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. トラックを読み込めませんでした @@ -512,7 +512,7 @@ - + Computer コンピュータ @@ -532,7 +532,7 @@ スキャン - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -645,12 +645,12 @@ ファイルを作成しました - + Mixxx Library Mixxx ライブラリ - + Could not load the following file because it is in use by Mixxx or another application. Mixxxもしくは他のアプリケーションで使用中のため、以下のファイルを読み込めませんでした @@ -681,6 +681,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -863,13 +941,13 @@ - + Set to full volume 最大音量に設定 - + Set to zero volume 最小音量に設定 @@ -894,13 +972,13 @@ - + Headphone listen button モニタリングボタン - + Mute button ミュートボタン @@ -916,25 +994,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -978,36 +1056,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - 内部マスターBPM  1.0 減 - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - 同期をマスターに切り替え - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1019,7 +1067,7 @@ - + Toggle keylock mode キーロックモードON/OFF @@ -1030,199 +1078,199 @@ イコライザ - + Vinyl Control Vinylコントロール - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues キュー - + Cue button キューボタン - + Set cue point キューポイントをセット - + Go to cue point キューポイントに移動 - + Go to cue point and play キューポイントから再生 - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues ホットキュー - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 ホットキュー %1 を削除 - + Set hotcue %1 ホットキュー %1 を設定 - + Jump to hotcue %1 ホットキュー %1 へジャンプ - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play ホットキュー %1 から再生 - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 - + 1 1 - + 2 - + 4 - + 8 - + 16 16 - + 32 - + 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library ライブラリ @@ -1333,20 +1381,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1362,7 +1410,7 @@ - + Mute ミュート @@ -1373,7 +1421,7 @@ - + Headphone Listen @@ -1394,25 +1442,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1511,52 +1559,6 @@ Sync 同期 - - - Sync Mode - 同期モード - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1573,37 +1575,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1644,466 +1646,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue キューをセット - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) オートDJの最後に追加 - + Append the selected track to the Auto DJ Queue 選択された曲をオートDJの先頭に追加 - + Add to Auto DJ Queue (top) オートDJの先頭に追加 - + Prepend selected track to the Auto DJ Queue 選択された曲をオートDJの末尾に追加 - + Load Track - + Load selected track 選択された曲を読み込む - + Load selected track and play 選択された曲を読み込んで再生 - - + + Record Mix - + Toggle mix recording - + Effects - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next - + Switch to next effect - + Previous - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain ゲイン - + Gain knob ゲイン ノブ - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2128,93 +2130,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2271,806 +2273,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off マイクのオン/オフ - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ オートDJ - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3159,32 +3227,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3220,133 +3288,133 @@ CrateFeature - + Remove 削除する - - + + Create New Crate - + Rename 名前を変更 - - + + Lock ロックをかける - + Export Crate as Playlist - + Export Track Files トラックファイルを出力 - + Duplicate 複製 - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates レコードボックス - - + + Import Crate レコードボックスのインポート - + Export Crate レコードボックスのエクスポート - + Unlock ロックを解除 - + An unknown error occurred while creating crate: 新しいレコードボックスを作成中にエラーが発生しました - + Rename Crate レコードボックスの名前を変更 - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed レコードボックスの名前変更に失敗 - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3Uプレイリスト (*.m3u);;M3U8プレイリスト (*.m3u8);;PLSプレイリスト (*.pls);;CSVファイル(*.csv);;テキストファイル(*.txt);; - + Crates are a great way to help organize the music you want to DJ with. CratesはDJでしたい音楽を整理しやすくするための優れた方法です。 - + Crates let you organize your music however you'd like! Cratesはあなたがしたいあなたの音楽を整理しましょう! - + A crate cannot have a blank name. レコードボックスには名前が必要です。 - + A crate by that name already exists. この名前のレコードボックスは既に存在します @@ -3416,37 +3484,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: 寄付する方法: - + And special thanks to: そしてスペシャルサンクスを: - + Past Developers 過去の開発 - + Past Contributors 過去の開発 - + Official Website - + Donate @@ -4876,32 +4944,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin スキン - + Tool tips ツールチップ - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4911,52 +4979,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off オフ - + Library only - + Library and Skin @@ -5567,38 +5625,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information 通知 - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5817,62 +5875,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added 音楽フォルダを追加しました - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? いくつかの音楽フォルダが登録されました。が、その中にあるファイルは、ライブラリを再スキャンしないと使えません。すぐに再スキャンを行いますか? - + Scan スキャン - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6876,32 +6934,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV HSV - + RGB RGB - + OpenGL not available OpenGLが利用できません - + dropped frames ドロップフレーム - + Cached waveforms occupy %1 MiB on disk. @@ -7115,72 +7173,72 @@ Select from different types of displays for the waveform, which differ primarily ライブラリ - + Interface インターフェース - + Waveforms - + Auto DJ オートDJ - + Equalizers イコライザ - + Decks - + Colors - + Crossfader クロスフェーダー - + Effects - + LV2 Plugins - + Recording レコーディング - + Beat Detection - + Key Detection - + Normalization ノーマライズ - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7190,12 +7248,12 @@ Select from different types of displays for the waveform, which differ primarily Vinylコントロール - + Live Broadcasting ライブ放送 - + Modplug Decoder @@ -7336,123 +7394,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year 発売年 - + Title タイトル - - + + Artist アーティスト - - + + Album アルバム - + Album Artist アルバム アーティスト - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply 適用(&A) - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7844,17 +7902,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7955,38 +8013,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes iTunes - - + + Select your iTunes library iTunesライブラリを選択 - + (loading) iTunes (読み込み中)iTunes - + Use Default Library デフォルトのライブラリを使用 - + Choose Library... ライブラリを選択... - + Error Loading iTunes Library iTunesライブラリの読み込みに失敗 - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. iTunesライブラリの読み込み中にエラーが発生しました。読み込まれていないiTunesのトラック・プレイリストがあるかもしれません。 @@ -7994,13 +8052,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8008,57 +8066,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8079,22 +8137,22 @@ support. LibraryFeature - + Import Playlist プレイリストをインポート - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) プレイリスト ファイル (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8105,27 +8163,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner ライブラリースキャナー - + It's taking Mixxx a minute to scan your music library, please wait... ミュージックライブラリをスキャンするのに若干時間がかかります。しばらくお待ちください。 - + Cancel キャンセル - + Scanning: - + Scanning cover art (safe to cancel) @@ -8241,181 +8299,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy サウンドデバイスがビジーです。 - + <b>Retry</b> after closing the other application or reconnecting a sound device 他のアプリケーションを閉じるかデバイスを再接続した後で<b>リトライ</b>してください。 - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. Mixxxのサウンドデバイス設定を<b>再設定</b>する。 - - + + Get <b>Help</b> from the Mixxx Wiki. Mixxx Wikiで<b>Help</b>を手に入れてください。 - - - + + + <b>Exit</b> Mixxx. Mixxxを<b>終了</b>する。 - + Retry リトライ - + skin - - + + Reconfigure 再設定 - + Help ヘルプ - - + + Exit 終了 - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue 続行 - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit 終了の確認 - + A deck is currently playing. Exit Mixxx? デッキは現在再生中です。Mixxxを終了しますか? - + A sampler is currently playing. Exit Mixxx? サンプラーは現在再生中です。MIXXXを終了しますか? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8488,43 +8546,43 @@ Do you want to select an input device? PlaylistFeature - + Lock ロックをかける - + Playlists プレイリスト - + Unlock ロックを解除 - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist 新規プレイリストの作成 @@ -8532,58 +8590,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan スキャン - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8767,7 +8825,7 @@ Do you want to scan your library for cover files now? - + Encoder エンコーダ @@ -9893,12 +9951,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10036,54 +10094,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists プレイリスト - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10092,7 +10150,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox Rhythmbox @@ -10143,34 +10201,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates レコードボックス - + Check for Serato databases (refresh) - + (loading) Serato @@ -10193,12 +10251,12 @@ Fully right: end of the effect period - + Unlock ロックを解除 - + Lock ロックをかける @@ -11157,6 +11215,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12332,11 +12415,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12352,16 +12430,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - マスター同期を有効 - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12377,16 +12445,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12940,22 +12998,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor Traktor - + (loading) Traktor トラクターを読み込み中 - + Error Loading Traktor Library Traktorライブラリの読み込みに失敗 - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. Traktorライブラリの読み込みでエラーが起こりました。読み込まれていないTraktorトラックとプレイリストがあるかもしれません。 @@ -13567,20 +13625,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects.パススルー - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13751,8 +13809,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.ジャンル - - Folder + + Directory @@ -13995,155 +14053,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 デッキ %1 - + Sampler %1 サンプラー %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist 新規プレイリストの作成 - + Enter name for new playlist: 新しいプレイリストの名前 - + New Playlist プレイリストの新規作成 - - - + + + Playlist Creation Failed プレイリストの作成に失敗 - + A playlist by that name already exists. 同じ名前のプレイリストが既にあります。 - + A playlist cannot have a blank name. プレイリストには名前が必要です。 - + An unknown error occurred while creating playlist: プレイリストの作成中に不明なエラーが発生しました - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14151,7 +14214,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14188,128 +14251,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory 音楽ライブラリのディレクトリを選択してください - + controllers - + Cannot open database データベースが開けません。 - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14388,7 +14378,7 @@ OKを押すと終了します。 - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14445,62 +14435,62 @@ OKを押すと終了します。 mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: @@ -14518,7 +14508,7 @@ OKを押すと終了します。 No effect loaded. - + エフェクトが読み込まれていません \ No newline at end of file diff --git a/res/translations/mixxx_ko.ts b/res/translations/mixxx_ko.ts index d9c74a129ca..94c97e263d6 100644 --- a/res/translations/mixxx_ko.ts +++ b/res/translations/mixxx_ko.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates 상자 - + Remove Crate as Track Source 트랙 영역에 삭제 - + Auto DJ 자동 디제잉 - + Add Crate as Track Source 트랙 영역에 추가 @@ -43,24 +43,24 @@ BansheeFeature - + Banshee - - + + Error loading Banshee database - + Banshee database file not found at - + There was an error loading your Banshee database at @@ -69,32 +69,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) 자동 디제잉 대기열에 넣기 (아래로) - + Add to Auto DJ Queue (top) 자동 디제잉 대기열에 넣기 (위로) - + Add to Auto DJ Queue (replace) - + Import Playlist 재생 목록 가져오기 - + Playlist Creation Failed 재생 목록 생성 실패 - + An unknown error occurred while creating playlist: 재생 목록을 생성하는 도중에 알 수 없는 에러가 발생했습니다: @@ -102,144 +102,144 @@ BasePlaylistFeature - + New Playlist 새 재생 목록 - + Add to Auto DJ Queue (bottom) 자동 디제잉 대기열에 넣기 (아래로) - - + + Create New Playlist 새 재생 목록 만들기 - + Add to Auto DJ Queue (top) 자동 디제잉 대기열에 넣기 (위로) - + Remove 지우기 - + Rename 이름 바꾸기 - + Lock 잠그기 - + Duplicate 복제 - - + + Import Playlist 재생 목록 가져오기 - + Export Track Files - + Analyze entire Playlist - + Enter new name for playlist: - + Duplicate Playlist 재생 목록 복제 - - + + Enter name for new playlist: 새 재생 목록의 이름을 입력하세요: - - + + Export Playlist 재생 목록 내보내기 - + Add to Auto DJ Queue (replace) - + Rename Playlist 재생 목록 이름 변경 - - + + Renaming Playlist Failed 재생 목록 이름 변경 실패 - - - + + + A playlist by that name already exists. 해당 재생 목록 이름은 이미 존재합니다. - - - + + + A playlist cannot have a blank name. 재생 목록은 공백을 이름으로 가질 수 없습니다. - + _copy //: Appendix to default name when duplicating a playlist _복사 - - - - - - + + + + + + Playlist Creation Failed 재생 목록 생성 실패 - - + + An unknown error occurred while creating playlist: 재생 목록을 생성하는 도중에 알 수 없는 에러가 발생했습니다: - + M3U Playlist (*.m3u) M3U 재생 목록 (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U 재생 목록 (*.m3u);;M3U8 재생 목록 (*.m3u8);;PLS 재생 목록 (*.pls);;CSV 텍스트 (*.csv);;일반 텍스트 (*.txt) @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. 트랙을 불러올 수 없습니다. @@ -512,7 +512,7 @@ - + Computer @@ -532,7 +532,7 @@ - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -645,12 +645,12 @@ 파일 생성 완료 - + Mixxx Library Mixxx 라이브러리 - + Could not load the following file because it is in use by Mixxx or another application. Mixxx 또는 다른 프로그램에 의해 사용되고 있어서 다음 파일을 로드할 수 없었습니다. @@ -681,6 +681,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -863,13 +941,13 @@ - + Set to full volume 음량 최대로 - + Set to zero volume 음량 0으로 @@ -894,13 +972,13 @@ - + Headphone listen button 헤드폰 듣기 버튼 - + Mute button 음소거 @@ -916,25 +994,25 @@ - + Mix orientation (e.g. left, right, center) 믹스 방향 (예: 왼쪽, 오른쪽, 가운데) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -978,36 +1056,6 @@ Toggle quantize mode 양자화(quantiza) 모드 토글 - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1019,7 +1067,7 @@ - + Toggle keylock mode 음높이 고정 모드 토글 @@ -1029,199 +1077,199 @@ 이퀄라이저(EQ) - + Vinyl Control 바이닐(Vinyl) 컨트롤 - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) 바이닐 컨트롤 큐잉 모드 토글 (끄기/1회/핫큐) - + Toggle vinyl-control mode (ABS/REL/CONST) 바이닐 컨트롤 모드 토글 (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button 큐 버튼 - + Set cue point 큐 포인트 설정 - + Go to cue point - + Go to cue point and play - + Go to cue point and stop 큐 포인트로 가서 정지 - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues 핫큐 - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 핫큐 %1 지우기 - + Set hotcue %1 핫큐 %1 설정 - + Jump to hotcue %1 핫큐 %1 으로 이동 - + Jump to hotcue %1 and stop 핫큐 %1 으로 이동 후 정지 - + Jump to hotcue %1 and play 핫큐 %1 으로 이동 후 재생 - + Preview from hotcue %1 핫큐 %1 했을때 미리듣기 - - + + Hotcue %1 핫큐 %1 - + Looping 반복(루핑) - + Loop In button 반복 들어가기 버튼 - + Loop Out button 반복 나오기 버튼 - + Loop Exit button 반복 나가기 버튼 - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 32 - + 64 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop %1-박자 반복 만들기 - + Create temporary %1-beat loop roll %1-박자 반복 롤 설정 - + Library 라이브러리 @@ -1332,20 +1380,20 @@ - - + + Volume Fader - + Full Volume 최고음량 - + Zero Volume 무음량 @@ -1361,7 +1409,7 @@ - + Mute 음소거 @@ -1372,7 +1420,7 @@ - + Headphone Listen @@ -1393,25 +1441,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1510,52 +1558,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1572,37 +1574,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key 초기화 키 - + Resets key to original 원상복구 키 @@ -1643,466 +1645,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 핫큐 %1 지우기 - + Set Hotcue %1 핫큐 %1 설정 - + Jump To Hotcue %1 핫큐 %1 으로 이동 - + Jump To Hotcue %1 And Stop 핫큐 %1 으로 이동 후 정지 - + Jump To Hotcue %1 And Play 핫큐 %1 으로 이동 후 재생 - + Preview Hotcue %1 핫큐 %1 했을때 미리듣기 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 1/32 - + 1/16 1/16 - + 1/8 1/8 - + 1/4 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) 자동 디제잉 대기열에 넣기 (아래로) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) 자동 디제잉 대기열에 넣기 (위로) - + Prepend selected track to the Auto DJ Queue - + Load Track 트랙 불러오기 - + Load selected track 선택한 트랙 불러오기 - + Load selected track and play 선택한 트랙 불러오고 재생 - - + + Record Mix - + Toggle mix recording - + Effects 이펙트 - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next - + Switch to next effect - + Previous - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob 게인 노브 - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2127,93 +2129,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2270,806 +2272,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off 마이크 켜기/끄기 - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ 자동 디제잉 - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track 다음 노래로의 전환 발동 - + User Interface 유저 인터페이스 - + Samplers Show/Hide - + Show/hide the sampler section 샘플러 부분 보이기/가리기 - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section 바이닐 컨트롤 부분 보이기/가리기 - + Preview Deck Show/Hide - + Show/hide the preview deck 덱 미리보기 보기/가기리 - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget 회전하는 바이닐 위젯 보이기/가리기 - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3158,32 +3226,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3219,133 +3287,133 @@ CrateFeature - + Remove 지우기 - - + + Create New Crate 새 상자 만들기 - + Rename 이름 바꾸기 - - + + Lock 잠그기 - + Export Crate as Playlist - + Export Track Files - + Duplicate 복제 - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates 상자 - - + + Import Crate 상자 가져오기 - + Export Crate 상자 내보내기 - + Unlock 잠금 해제 - + An unknown error occurred while creating crate: 상자를 만드는 도중 예상치 못한 에러가 발생했습니다: - + Rename Crate 상자 이름 변경 - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed 상자 이름 변경 실패 - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U 재생 목록 (*.m3u);;M3U8 재생 목록 (*.m3u8);;PLS 재생 목록 (*.pls);;CSV 텍스트 (*.csv);;일반 텍스트 (*.txt) - + Crates are a great way to help organize the music you want to DJ with. 상자는 디제잉을 위해 음악을 구성하는 좋은 방법입니다. - + Crates let you organize your music however you'd like! 상자는 당신이 원하는 대로 음악을 구성해줍니다! - + A crate cannot have a blank name. 빈 상자를 만들 수 없습니다 - + A crate by that name already exists. 같은 이름의 상자가 이미 존재합니다 @@ -3415,37 +3483,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4876,32 +4944,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin 스킨 - + Tool tips 툴 팁 - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale 로케일 @@ -4911,52 +4979,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver 화면보호기 - + Start in full-screen mode 전체화면으로 구동시작 - + Full-screen mode 전체화면 - + Off - + Library only - + Library and Skin 라이브러리와 스킨 @@ -5567,38 +5625,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information 정보 - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5817,62 +5875,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6876,32 +6934,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available OpenGL 사용 불가능 - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7115,72 +7173,72 @@ Select from different types of displays for the waveform, which differ primarily 라이브러리 - + Interface - + Waveforms - + Auto DJ 자동 디제잉 - + Equalizers 이퀄라이저(EQ) - + Decks - + Colors - + Crossfader 크로스페이더 - + Effects 이펙트 - + LV2 Plugins - + Recording - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7190,12 +7248,12 @@ Select from different types of displays for the waveform, which differ primarily 바이닐(Vinyl) 컨트롤 - + Live Broadcasting - + Modplug Decoder @@ -7336,123 +7394,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year 년도 - + Title 제목 - - + + Artist 악곡가 - - + + Album 앨범 - + Album Artist 앨범 작가 - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7844,17 +7902,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7955,38 +8013,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7994,13 +8052,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8008,57 +8066,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut 단축키 @@ -8079,22 +8137,22 @@ support. LibraryFeature - + Import Playlist 재생 목록 가져오기 - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) 재생 목록 파일 (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8105,27 +8163,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8241,181 +8299,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry - + skin - - + + Reconfigure - + Help - - + + Exit - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8486,43 +8544,43 @@ Do you want to select an input device? PlaylistFeature - + Lock 잠그기 - + Playlists - + Unlock 잠금 해제 - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist 새 재생 목록 만들기 @@ -8530,58 +8588,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8765,7 +8823,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9891,12 +9949,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10034,54 +10092,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10090,7 +10148,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10141,34 +10199,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates 상자 - + Check for Serato databases (refresh) - + (loading) Serato @@ -10191,12 +10249,12 @@ Fully right: end of the effect period - + Unlock 잠금 해제 - + Lock 잠그기 @@ -11155,6 +11213,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12330,11 +12413,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12350,16 +12428,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12375,16 +12443,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12938,22 +12996,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13565,20 +13623,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13749,8 +13807,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.장르 - - Folder + + Directory @@ -13993,155 +14051,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 덱 %1 - + Sampler %1 샘플러 %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist 새 재생 목록 만들기 - + Enter name for new playlist: 새 재생 목록의 이름을 입력하세요: - + New Playlist 새 재생 목록 - - - + + + Playlist Creation Failed 재생 목록 생성 실패 - + A playlist by that name already exists. 해당 재생 목록 이름은 이미 존재합니다. - + A playlist cannot have a blank name. 재생 목록은 공백을 이름으로 가질 수 없습니다. - + An unknown error occurred while creating playlist: 재생 목록을 생성하는 도중에 알 수 없는 에러가 발생했습니다: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14149,7 +14212,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14186,128 +14249,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory 음악 라이브러리 디렉토리를 선택하세요 - + controllers - + Cannot open database 자료모음을 열 수 없음 - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14383,7 +14373,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14440,62 +14430,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_lb.ts b/res/translations/mixxx_lb.ts index d7a5d69eb30..7905779ffe2 100644 --- a/res/translations/mixxx_lb.ts +++ b/res/translations/mixxx_lb.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Datei - + Remove Crate as Track Source - + Auto DJ Auto Dj - + Add Crate as Track Source @@ -43,24 +43,24 @@ BansheeFeature - + Banshee - - + + Error loading Banshee database - + Banshee database file not found at - + There was an error loading your Banshee database at @@ -69,32 +69,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) An Playlescht Warteschlang setzen (Ennen) - + Add to Auto DJ Queue (top) An Playlescht Warteschlang setzen (Uewen) - + Add to Auto DJ Queue (replace) - + Import Playlist Playlescht emportéieren - + Playlist Creation Failed Playlescht konnt net erstallt gin - + An unknown error occurred while creating playlist: En onbekannten Fehler ass beim Erstellen vun der Playlescht opgetrueden: @@ -102,144 +102,144 @@ BasePlaylistFeature - + New Playlist Nei Playlist - + Add to Auto DJ Queue (bottom) An Playlescht Warteschlang setzen (Ennen) - - + + Create New Playlist - + Add to Auto DJ Queue (top) An Playlescht Warteschlang setzen (Uewen) - + Remove Läschen - + Rename Ëmbenennen - + Lock Späer - + Duplicate - - + + Import Playlist Playlescht emportéieren - + Export Track Files - + Analyze entire Playlist - + Enter new name for playlist: - + Duplicate Playlist Playlescht dublizeieren - - + + Enter name for new playlist: - - + + Export Playlist Playlescht exportéieren - + Add to Auto DJ Queue (replace) - + Rename Playlist Playlescht Embenennen - - + + Renaming Playlist Failed Embennen ass fehlgeschloen - - - + + + A playlist by that name already exists. Eng Playlescht mam selweschten Numm gett et schon - - - + + + A playlist cannot have a blank name. Eng Playlescht kann net Eidel sin - + _copy //: Appendix to default name when duplicating a playlist _kopéieren - - - - - - + + + + + + Playlist Creation Failed Playlescht konnt net erstallt gin - - + + An unknown error occurred while creating playlist: En onbekannten Fehler ass beim Erstellen vun der Playlescht opgetrueden: - + M3U Playlist (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U Playlescht (*.m3u);;M3U8 Playlescht (*.m3u8);;PLS Playlescht (*.pls);;Text CSV (*.csv);;LiesbarenText (*.txt) @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Konnt net gelueden gin @@ -512,7 +512,7 @@ - + Computer @@ -532,7 +532,7 @@ - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -645,12 +645,12 @@ - + Mixxx Library Mixxx Library - + Could not load the following file because it is in use by Mixxx or another application. Konnt net gelueden gin, wel et vun Mixx oder eng anner applicatioun benotzt gett. @@ -681,6 +681,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -863,13 +941,13 @@ - + Set to full volume - + Set to zero volume @@ -894,13 +972,13 @@ - + Headphone listen button - + Mute button @@ -916,25 +994,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -978,36 +1056,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1019,7 +1067,7 @@ - + Toggle keylock mode @@ -1029,199 +1077,199 @@ - + Vinyl Control - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 - + 1 - + 2 - + 4 - + 8 - + 16 - + 32 - + 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library @@ -1332,20 +1380,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1361,7 +1409,7 @@ - + Mute @@ -1372,7 +1420,7 @@ - + Headphone Listen @@ -1393,25 +1441,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1510,52 +1558,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1572,37 +1574,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1643,466 +1645,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) An Playlescht Warteschlang setzen (Ennen) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) An Playlescht Warteschlang setzen (Uewen) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix - + Toggle mix recording - + Effects - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next Nächsten - + Switch to next effect - + Previous Fierderun - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2127,93 +2129,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2270,806 +2272,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ Auto Dj - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3158,32 +3226,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3219,133 +3287,133 @@ CrateFeature - + Remove Läschen - - + + Create New Crate - + Rename Ëmbenennen - - + + Lock Späer - + Export Crate as Playlist - + Export Track Files - + Duplicate - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates Datei - - + + Import Crate Datei importeieren - + Export Crate Datei exporteieren - + Unlock Opgespart - + An unknown error occurred while creating crate: Een fehler ass opgetrueden bei der creatioun vun der datei - + Rename Crate datei embenimmen - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed Fehler beim embenennen vun der datei - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U Playlescht (*.m3u);;M3U8 Playlescht (*.m3u8);;PLS Playlescht (*.pls);;Text CSV (*.csv);;LiesbarenText (*.txt) - + Crates are a great way to help organize the music you want to DJ with. - + Crates let you organize your music however you'd like! - + A crate cannot have a blank name. Eng datei muss een numm hun. - + A crate by that name already exists. Dest datei mat dem selweschten num gett et schon @@ -3415,37 +3483,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4875,32 +4943,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin Fläch - + Tool tips - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4910,52 +4978,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off Aus - + Library only - + Library and Skin @@ -5566,38 +5624,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information Informatioun - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5816,62 +5874,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6875,32 +6933,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7114,72 +7172,72 @@ Select from different types of displays for the waveform, which differ primarily - + Interface - + Waveforms - + Auto DJ Auto Dj - + Equalizers - + Decks - + Colors - + Crossfader - + Effects - + LV2 Plugins - + Recording - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7189,12 +7247,12 @@ Select from different types of displays for the waveform, which differ primarily - + Live Broadcasting - + Modplug Decoder @@ -7335,123 +7393,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Joër - + Title Titel - - + + Artist Kënschtler - - + + Album Album - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7843,17 +7901,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7954,38 +8012,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7993,13 +8051,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8007,57 +8065,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8078,22 +8136,22 @@ support. LibraryFeature - + Import Playlist Playlescht emportéieren - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Playlescht Fichieren (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8104,27 +8162,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8240,181 +8298,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry - + skin - - + + Reconfigure - + Help - - + + Exit - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8485,43 +8543,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Späer - + Playlists - + Unlock Opgespart - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist @@ -8529,58 +8587,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8764,7 +8822,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9890,12 +9948,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10033,54 +10091,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10089,7 +10147,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10140,34 +10198,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates Datei - + Check for Serato databases (refresh) - + (loading) Serato @@ -10190,12 +10248,12 @@ Fully right: end of the effect period - + Unlock Opgespart - + Lock Späer @@ -11154,6 +11212,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12329,11 +12412,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12349,16 +12427,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12374,16 +12442,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12937,22 +12995,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13564,20 +13622,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13748,8 +13806,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Genre - - Folder + + Directory @@ -13992,155 +14050,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 - + Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist - + Enter name for new playlist: - + New Playlist Nei Playlist - - - + + + Playlist Creation Failed Playlescht konnt net erstallt gin - + A playlist by that name already exists. Eng Playlescht mam selweschten Numm gett et schon - + A playlist cannot have a blank name. Eng Playlescht kann net Eidel sin - + An unknown error occurred while creating playlist: En onbekannten Fehler ass beim Erstellen vun der Playlescht opgetrueden: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14148,7 +14211,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14185,128 +14248,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14382,7 +14372,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14439,62 +14429,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_lt.ts b/res/translations/mixxx_lt.ts index f58cb3288ba..79b25a90cbd 100644 --- a/res/translations/mixxx_lt.ts +++ b/res/translations/mixxx_lt.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Paketai - + Remove Crate as Track Source - + Auto DJ Automatinis DJ - + Add Crate as Track Source @@ -43,24 +43,24 @@ BansheeFeature - + Banshee - - + + Error loading Banshee database - + Banshee database file not found at - + There was an error loading your Banshee database at @@ -69,32 +69,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Įkelti į Automatinio DJ Eilę (apačioje) - + Add to Auto DJ Queue (top) Įkelti į Automatinio DJ Eilę (viršuje) - + Add to Auto DJ Queue (replace) - + Import Playlist Įkelti grojaraštį - + Playlist Creation Failed Grojaraščio kūrimas nepavyko - + An unknown error occurred while creating playlist: Įvyko nežinoma klaida sukuriant grojaraštį: @@ -102,144 +102,144 @@ BasePlaylistFeature - + New Playlist Naujas grojaraštis - + Add to Auto DJ Queue (bottom) Įkelti į Automatinio DJ Eilę (apačioje) - - + + Create New Playlist Sukurti grojaraštį - + Add to Auto DJ Queue (top) Įkelti į Automatinio DJ Eilę (viršuje) - + Remove Pašalinti - + Rename Pervadinti - + Lock Užrakinti - + Duplicate Dublikuoti - - + + Import Playlist Įkelti grojaraštį - + Export Track Files - + Analyze entire Playlist Analizuoti visą grojaraštį - + Enter new name for playlist: Įrašykite naują grojaraščio pavadinimą: - + Duplicate Playlist Duplikuoti grojaraštį - - + + Enter name for new playlist: Įrašykite naujo grojaraščio pavadinimą: - - + + Export Playlist Eksportuoti grojaraštį - + Add to Auto DJ Queue (replace) - + Rename Playlist Pervadinti grojaraštį - - + + Renaming Playlist Failed Grojaraščio pervadinti nepavyko - - - + + + A playlist by that name already exists. Grojaraštis šiuo pavadinimu jau egzistuoja. - - - + + + A playlist cannot have a blank name. Grojaraščio pavadinimas negali būti tuščias. - + _copy //: Appendix to default name when duplicating a playlist - - - - - - + + + + + + Playlist Creation Failed Grojaraščio kūrimas nepavyko - - + + An unknown error occurred while creating playlist: Įvyko nežinoma klaida sukuriant grojaraštį: - + M3U Playlist (*.m3u) M3U Grojaraštis (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U Grojaraštis (*.m3u);;M3U8 Grojaraštis (*.m3u8);;PLS Grojaraštis (*.pls);;Tekstinis CSV (*.csv);;Skaitomas tekstas (*.txt) @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Negalima įkrauti takelio. @@ -512,7 +512,7 @@ - + Computer Kompiuteris @@ -532,7 +532,7 @@ - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -645,12 +645,12 @@ - + Mixxx Library Mixxx Biblioteka - + Could not load the following file because it is in use by Mixxx or another application. Negalima įkrauti šios bylos, nes ji naudojama Mixxx ar kitos programos. @@ -681,6 +681,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -863,13 +941,13 @@ - + Set to full volume Nustatyti visu garsu - + Set to zero volume Nustatyti be garso @@ -894,13 +972,13 @@ - + Headphone listen button Ausinių pasiklausymo mygtukas - + Mute button @@ -916,25 +994,25 @@ - + Mix orientation (e.g. left, right, center) Mikso vieta (pvz: kairė, dešinė, centras) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -978,36 +1056,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1019,7 +1067,7 @@ - + Toggle keylock mode @@ -1029,199 +1077,199 @@ Ekvalaizeriai - + Vinyl Control Vinilo kontrolė - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 - + 1 - + 2 - + 4 - + 8 - + 16 - + 32 - + 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library @@ -1332,20 +1380,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1361,7 +1409,7 @@ - + Mute Išjungti garsą @@ -1372,7 +1420,7 @@ - + Headphone Listen Klausytis ausinėse @@ -1393,25 +1441,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1510,52 +1558,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1572,37 +1574,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1643,466 +1645,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) Įkelti į Automatinio DJ Eilę (apačioje) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) Įkelti į Automatinio DJ Eilę (viršuje) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix - + Toggle mix recording - + Effects Efektai - + Quick Effects Greiti Efektai - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect Greitas Efektas - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next - + Switch to next effect - + Previous - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob Gavimo rankenėlė - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2127,93 +2129,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2270,806 +2272,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ Automatinis DJ - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3158,32 +3226,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3219,133 +3287,133 @@ CrateFeature - + Remove Pašalinti - - + + Create New Crate - + Rename Pervadinti - - + + Lock Užrakinti - + Export Crate as Playlist - + Export Track Files - + Duplicate Dublikuoti - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates Paketai - - + + Import Crate Importuoti paketą - + Export Crate Eksportuoti paketą - + Unlock Atrakinti - + An unknown error occurred while creating crate: Neatpažinta klaida įvyko sukuriant naują paketą: - + Rename Crate Pervadinti paketą - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed Paketo pervadinimas nepavyko - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U Grojaraštis (*.m3u);;M3U8 Grojaraštis (*.m3u8);;PLS Grojaraštis (*.pls);;Tekstinis CSV (*.csv);;Skaitomas tekstas (*.txt) - + Crates are a great way to help organize the music you want to DJ with. Paketai yra puikus būdas padedantis valdyti muziką su kuria norite dirbti. - + Crates let you organize your music however you'd like! Paketai leidžia jums valdyti muziką taip kaip jūs norite! - + A crate cannot have a blank name. Paketo pavadinimas negali būti tuščias. - + A crate by that name already exists. Paketas tokiu pavadinimu jau egzistuoja. @@ -3415,37 +3483,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4875,32 +4943,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin - + Tool tips - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4910,52 +4978,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off - + Library only - + Library and Skin @@ -5566,38 +5624,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5816,62 +5874,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6875,32 +6933,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7114,72 +7172,72 @@ Select from different types of displays for the waveform, which differ primarily - + Interface - + Waveforms - + Auto DJ Automatinis DJ - + Equalizers Ekvalaizeriai - + Decks - + Colors - + Crossfader Takelių suliejiklis - + Effects Efektai - + LV2 Plugins - + Recording - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7189,12 +7247,12 @@ Select from different types of displays for the waveform, which differ primarily Vinilo kontrolė - + Live Broadcasting - + Modplug Decoder @@ -7335,123 +7393,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Metai - + Title Pavadinimas - - + + Artist Atlikėjas - - + + Album Albumas - + Album Artist Albumas Atlikėjas - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7843,17 +7901,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7954,38 +8012,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7993,13 +8051,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8007,57 +8065,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8078,22 +8136,22 @@ support. LibraryFeature - + Import Playlist Įkelti grojaraštį - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Grojaraščio bylos (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8104,27 +8162,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8240,181 +8298,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry - + skin - - + + Reconfigure - + Help - - + + Exit - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8485,43 +8543,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Užrakinti - + Playlists - + Unlock Atrakinti - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist Sukurti grojaraštį @@ -8529,58 +8587,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8764,7 +8822,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9890,12 +9948,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10033,54 +10091,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10089,7 +10147,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10140,34 +10198,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates Paketai - + Check for Serato databases (refresh) - + (loading) Serato @@ -10190,12 +10248,12 @@ Fully right: end of the effect period - + Unlock Atrakinti - + Lock Užrakinti @@ -11154,6 +11212,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12329,11 +12412,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12349,16 +12427,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12374,16 +12442,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12937,22 +12995,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13564,20 +13622,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13748,8 +13806,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Stilius - - Folder + + Directory @@ -13992,155 +14050,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 Grotuvas %1 - + Sampler %1 Sempleris %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Sukurti grojaraštį - + Enter name for new playlist: Įrašykite naujo grojaraščio pavadinimą: - + New Playlist Naujas grojaraštis - - - + + + Playlist Creation Failed Grojaraščio kūrimas nepavyko - + A playlist by that name already exists. Grojaraštis šiuo pavadinimu jau egzistuoja. - + A playlist cannot have a blank name. Grojaraščio pavadinimas negali būti tuščias. - + An unknown error occurred while creating playlist: Įvyko nežinoma klaida sukuriant grojaraštį: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14148,7 +14211,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14185,128 +14248,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14382,7 +14372,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14439,62 +14429,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_lv.ts b/res/translations/mixxx_lv.ts index 38753473206..4db017d7fd3 100644 --- a/res/translations/mixxx_lv.ts +++ b/res/translations/mixxx_lv.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Grozi - + Remove Crate as Track Source - + Auto DJ Auto DJ - + Add Crate as Track Source @@ -43,24 +43,24 @@ BansheeFeature - + Banshee - - + + Error loading Banshee database - + Banshee database file not found at - + There was an error loading your Banshee database at @@ -69,32 +69,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Pievienot Auto DJ - + Add to Auto DJ Queue (top) Pievienot Auto DJ (augšā) - + Add to Auto DJ Queue (replace) - + Import Playlist Importēt atskaņošanas sarakstu - + Playlist Creation Failed Neizdevās izveidot atskaņošanas sarakstu - + An unknown error occurred while creating playlist: Notikusi nezināma kļūda veidojot atskaņošanas sarakstu: @@ -102,144 +102,144 @@ BasePlaylistFeature - + New Playlist Jauns atskaņošanas saraksts - + Add to Auto DJ Queue (bottom) Pievienot Auto DJ - - + + Create New Playlist Izveidot jaunu atskaņošanas sarakstu - + Add to Auto DJ Queue (top) Pievienot Auto DJ (augšā) - + Remove Dzēst - + Rename Pārsaukt - + Lock Bloķēt - + Duplicate Dublikāts - - + + Import Playlist Importēt atskaņošanas sarakstu - + Export Track Files - + Analyze entire Playlist - + Enter new name for playlist: - + Duplicate Playlist Dublēt atkaņošanas sarakstu - - + + Enter name for new playlist: - - + + Export Playlist Eksportēt atskaņošanas sarakstu - + Add to Auto DJ Queue (replace) - + Rename Playlist Pārdēvēt atskaņošnas sarakstu - - + + Renaming Playlist Failed Neizdevās pārsaukt atskaņošanas sarakstu - - - + + + A playlist by that name already exists. Atskaņošanas saraksts ar šādu nosaukumu jau eksistē. - - - + + + A playlist cannot have a blank name. Atskaņošanas saraksts nevar būt bez nosaukuma. - + _copy //: Appendix to default name when duplicating a playlist - - - - - - + + + + + + Playlist Creation Failed Neizdevās izveidot atskaņošanas sarakstu - - + + An unknown error occurred while creating playlist: Notikusi nezināma kļūda veidojot atskaņošanas sarakstu: - + M3U Playlist (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U Atskaņošanas Saraksts (*.m3u);;M3U8 Atskaņošanas Saraksts (*.m3u8);;PLS Atskaņošanas Saraksts (*.pls);;Teksts CSV (*.csv);;Lasāms Teksts (*.txt) @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Nevar ielādēt celiņu @@ -512,7 +512,7 @@ - + Computer @@ -532,7 +532,7 @@ Skenēt - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -645,12 +645,12 @@ - + Mixxx Library Mixxx bibliotēka - + Could not load the following file because it is in use by Mixxx or another application. Nevar ielādēt šo failu, jo to patreiz lieto Mixxx vai cita aplikācija. @@ -681,6 +681,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -863,13 +941,13 @@ - + Set to full volume - + Set to zero volume @@ -894,13 +972,13 @@ - + Headphone listen button Austiņu noklausīšanās poga - + Mute button @@ -916,25 +994,25 @@ - + Mix orientation (e.g. left, right, center) Miksa orientācija (piem., kreisā, labā, centrālā) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -978,36 +1056,6 @@ Toggle quantize mode Kvantizācijas režīms - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1019,7 +1067,7 @@ - + Toggle keylock mode Aizlēgšanas režīms @@ -1029,199 +1077,199 @@ Ekvalizācija - + Vinyl Control Vinila vadība - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 - + 1 - + 2 - + 4 - + 8 - + 16 - + 32 - + 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library @@ -1332,20 +1380,20 @@ - - + + Volume Fader - + Full Volume Pilns skaļums - + Zero Volume @@ -1361,7 +1409,7 @@ - + Mute Klusums @@ -1372,7 +1420,7 @@ - + Headphone Listen @@ -1393,25 +1441,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1510,52 +1558,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1572,37 +1574,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1643,466 +1645,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) Pievienot Auto DJ - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) Pievienot Auto DJ (augšā) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix - + Toggle mix recording - + Effects - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next - + Switch to next effect - + Previous - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob Pastiprinājums - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2127,93 +2129,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2270,806 +2272,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ Auto DJ - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3158,32 +3226,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3219,133 +3287,133 @@ CrateFeature - + Remove Dzēst - - + + Create New Crate - + Rename Pārsaukt - - + + Lock Bloķēt - + Export Crate as Playlist - + Export Track Files - + Duplicate Dublikāts - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates Grozi - - + + Import Crate Importēt grozu - + Export Crate Eksportēt grozu - + Unlock Atbloķēt - + An unknown error occurred while creating crate: Notikusi nezināma kļūda veidojot grozu: - + Rename Crate Pārsaukt grozu - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed Neizdevās pārsaukt grozu - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U Atskaņošanas Saraksts (*.m3u);;M3U8 Atskaņošanas Saraksts (*.m3u8);;PLS Atskaņošanas Saraksts (*.pls);;Teksts CSV (*.csv);;Lasāms Teksts (*.txt) - + Crates are a great way to help organize the music you want to DJ with. Grozi ir lielisks veids kā sakārtot mūziku ko vēlaties atskaņot. - + Crates let you organize your music however you'd like! Grozi ļauj jums organizēt jūsu mūziku tā kā jūs to vēlaties! - + A crate cannot have a blank name. Groza nosaukums nevar būt tukšs - + A crate by that name already exists. Grozs ar šādu nosaukumu jau eksistē. @@ -3415,37 +3483,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4875,32 +4943,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin - + Tool tips - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4910,52 +4978,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off - + Library only - + Library and Skin @@ -5566,38 +5624,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5816,62 +5874,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan Skenēt - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6875,32 +6933,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7114,72 +7172,72 @@ Select from different types of displays for the waveform, which differ primarily - + Interface - + Waveforms - + Auto DJ Auto DJ - + Equalizers Ekvalizācija - + Decks - + Colors - + Crossfader Krosfeideris - + Effects - + LV2 Plugins - + Recording - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7189,12 +7247,12 @@ Select from different types of displays for the waveform, which differ primarily Vinila vadība - + Live Broadcasting - + Modplug Decoder @@ -7335,123 +7393,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Gads - + Title Nosaukums - - + + Artist Izpildītājs - - + + Album Albūms - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7843,17 +7901,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7954,38 +8012,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7993,13 +8051,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8007,57 +8065,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8078,22 +8136,22 @@ support. LibraryFeature - + Import Playlist Importēt atskaņošanas sarakstu - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Atskaņošanas sarakstu datnes (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8104,27 +8162,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8240,181 +8298,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry - + skin - - + + Reconfigure - + Help - - + + Exit - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8485,43 +8543,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Bloķēt - + Playlists - + Unlock Atbloķēt - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist Izveidot jaunu atskaņošanas sarakstu @@ -8529,58 +8587,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Skenēt - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8764,7 +8822,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9890,12 +9948,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10033,54 +10091,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10089,7 +10147,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10140,34 +10198,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates Grozi - + Check for Serato databases (refresh) - + (loading) Serato @@ -10190,12 +10248,12 @@ Fully right: end of the effect period - + Unlock Atbloķēt - + Lock Bloķēt @@ -11154,6 +11212,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12329,11 +12412,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12349,16 +12427,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12374,16 +12442,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12937,22 +12995,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13564,20 +13622,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13748,8 +13806,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Žanrs - - Folder + + Directory @@ -13992,155 +14050,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 Atskaņotājs %1 - + Sampler %1 Sempleris %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Izveidot jaunu atskaņošanas sarakstu - + Enter name for new playlist: - + New Playlist Jauns atskaņošanas saraksts - - - + + + Playlist Creation Failed Neizdevās izveidot atskaņošanas sarakstu - + A playlist by that name already exists. Atskaņošanas saraksts ar šādu nosaukumu jau eksistē. - + A playlist cannot have a blank name. Atskaņošanas saraksts nevar būt bez nosaukuma. - + An unknown error occurred while creating playlist: Notikusi nezināma kļūda veidojot atskaņošanas sarakstu: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14148,7 +14211,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14185,128 +14248,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14382,7 +14372,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14439,62 +14429,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_mi.ts b/res/translations/mixxx_mi.ts index ea44fe297bb..3d2576454f2 100644 --- a/res/translations/mixxx_mi.ts +++ b/res/translations/mixxx_mi.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates - + Remove Crate as Track Source - + Auto DJ - + Add Crate as Track Source @@ -43,24 +43,24 @@ BansheeFeature - + Banshee - - + + Error loading Banshee database - + Banshee database file not found at - + There was an error loading your Banshee database at @@ -69,32 +69,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) - + Add to Auto DJ Queue (top) - + Add to Auto DJ Queue (replace) - + Import Playlist Kawemai Rārangipāho - + Playlist Creation Failed I rahua te auaha tūtira waiata - + An unknown error occurred while creating playlist: Hapa waihangatanga rārangipāho: @@ -102,144 +102,144 @@ BasePlaylistFeature - + New Playlist Rārangipāho Hōu - + Add to Auto DJ Queue (bottom) - - + + Create New Playlist Waihangaia he Rārangipāho - + Add to Auto DJ Queue (top) - + Remove Muku - + Rename Whakaingoa Anō - + Lock Raka - + Duplicate Tārua - - + + Import Playlist Kawemai Rārangipāho - + Export Track Files Kaweake ngā kōnae waiata - + Analyze entire Playlist Tātari Rārangipāho katoa - + Enter new name for playlist: Tāurutia te ingoa rārangipāho hōu: - + Duplicate Playlist Tārua tēnei tūtira waiata - - + + Enter name for new playlist: Tāurutia te ingoa rārangipāho hōu: - - + + Export Playlist Kaweake Rārangipāho - + Add to Auto DJ Queue (replace) - + Rename Playlist Whakaingoa Rārangipāho anō - - + + Renaming Playlist Failed - - - + + + A playlist by that name already exists. Kei te tīariari kē te ingoa rārangipāho. - - - + + + A playlist cannot have a blank name. - + _copy //: Appendix to default name when duplicating a playlist - - - - - - + + + + + + Playlist Creation Failed I rahua te auaha tūtira waiata - - + + An unknown error occurred while creating playlist: Hapa waihangatanga rārangipāho: - + M3U Playlist (*.m3u) Rārangipāho M3U (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. @@ -512,7 +512,7 @@ - + Computer @@ -532,7 +532,7 @@ - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -645,12 +645,12 @@ - + Mixxx Library - + Could not load the following file because it is in use by Mixxx or another application. @@ -681,6 +681,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -863,13 +941,13 @@ - + Set to full volume - + Set to zero volume @@ -894,13 +972,13 @@ - + Headphone listen button - + Mute button @@ -916,25 +994,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -978,36 +1056,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1019,7 +1067,7 @@ - + Toggle keylock mode @@ -1029,199 +1077,199 @@ - + Vinyl Control - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 - + 1 - + 2 - + 4 - + 8 - + 16 - + 32 - + 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library @@ -1332,20 +1380,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1361,7 +1409,7 @@ - + Mute @@ -1372,7 +1420,7 @@ - + Headphone Listen @@ -1393,25 +1441,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1510,52 +1558,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1572,37 +1574,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1643,466 +1645,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix - + Toggle mix recording - + Effects - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next - + Switch to next effect - + Previous - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2127,93 +2129,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2270,806 +2272,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3158,32 +3226,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3219,133 +3287,133 @@ CrateFeature - + Remove Muku - - + + Create New Crate - + Rename Whakaingoa Anō - - + + Lock Raka - + Export Crate as Playlist - + Export Track Files Kaweake ngā kōnae waiata - + Duplicate Tārua - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates - - + + Import Crate - + Export Crate - + Unlock - + An unknown error occurred while creating crate: - + Rename Crate - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) - + Crates are a great way to help organize the music you want to DJ with. - + Crates let you organize your music however you'd like! - + A crate cannot have a blank name. - + A crate by that name already exists. @@ -3415,37 +3483,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4875,32 +4943,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin - + Tool tips - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4910,52 +4978,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off - + Library only - + Library and Skin @@ -5566,38 +5624,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5816,62 +5874,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6875,32 +6933,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7114,72 +7172,72 @@ Select from different types of displays for the waveform, which differ primarily - + Interface - + Waveforms - + Auto DJ - + Equalizers - + Decks - + Colors - + Crossfader - + Effects - + LV2 Plugins - + Recording - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7189,12 +7247,12 @@ Select from different types of displays for the waveform, which differ primarily - + Live Broadcasting - + Modplug Decoder @@ -7335,123 +7393,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Tau - + Title Taitara - - + + Artist Mataoro - - + + Album Pukaemi - + Album Artist Mataoro Pukaemi - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7843,17 +7901,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7954,38 +8012,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7993,13 +8051,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8007,57 +8065,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8078,22 +8136,22 @@ support. LibraryFeature - + Import Playlist Kawemai Rārangipāho - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8104,27 +8162,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8240,181 +8298,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry - + skin - - + + Reconfigure - + Help - - + + Exit - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8485,43 +8543,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Raka - + Playlists Ngā Rārangipāho - + Unlock - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist Waihangaia he Rārangipāho @@ -8529,58 +8587,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8764,7 +8822,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9890,12 +9948,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10033,54 +10091,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists Ngā Rārangipāho - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10089,7 +10147,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10140,34 +10198,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates - + Check for Serato databases (refresh) - + (loading) Serato @@ -10190,12 +10248,12 @@ Fully right: end of the effect period - + Unlock - + Lock Raka @@ -11154,6 +11212,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12329,11 +12412,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12349,16 +12427,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12374,16 +12442,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12937,22 +12995,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13564,20 +13622,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13748,8 +13806,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Tūmomo - - Folder + + Directory @@ -13992,155 +14050,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 - + Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Waihangaia he Rārangipāho - + Enter name for new playlist: Tāurutia te ingoa rārangipāho hōu: - + New Playlist Rārangipāho Hōu - - - + + + Playlist Creation Failed I rahua te auaha tūtira waiata - + A playlist by that name already exists. Kei te tīariari kē te ingoa rārangipāho. - + A playlist cannot have a blank name. - + An unknown error occurred while creating playlist: Hapa waihangatanga rārangipāho: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14148,7 +14211,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14185,128 +14248,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14382,7 +14372,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14439,62 +14429,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_mk.ts b/res/translations/mixxx_mk.ts index 8e282946b88..7b71d66cef3 100644 --- a/res/translations/mixxx_mk.ts +++ b/res/translations/mixxx_mk.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates - + Remove Crate as Track Source - + Auto DJ Авто-Диџеј - + Add Crate as Track Source @@ -43,24 +43,24 @@ BansheeFeature - + Banshee - - + + Error loading Banshee database - + Banshee database file not found at - + There was an error loading your Banshee database at @@ -69,32 +69,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Додади во листата на автоматскиот Диџеј (најдолу) - + Add to Auto DJ Queue (top) Додади во листата на автоматскиот Диџеј (најгоре) - + Add to Auto DJ Queue (replace) - + Import Playlist Внеси Плејлиста - + Playlist Creation Failed Неуспешно креирање на Плејлистата - + An unknown error occurred while creating playlist: Непозната грешка се појави при креирање на плејлистата: @@ -102,144 +102,144 @@ BasePlaylistFeature - + New Playlist Нова Плејлиста - + Add to Auto DJ Queue (bottom) Додади во листата на автоматскиот Диџеј (најдолу) - - + + Create New Playlist - + Add to Auto DJ Queue (top) Додади во листата на автоматскиот Диџеј (најгоре) - + Remove Одстрани - + Rename Преименувај - + Lock Заклучи - + Duplicate - - + + Import Playlist Внеси Плејлиста - + Export Track Files - + Analyze entire Playlist - + Enter new name for playlist: - + Duplicate Playlist - - + + Enter name for new playlist: - - + + Export Playlist Изнеси Плејлиста - + Add to Auto DJ Queue (replace) - + Rename Playlist Преименувај Плејлиста - - + + Renaming Playlist Failed Неуспешно преименување на Плејлистата - - - + + + A playlist by that name already exists. Веќе постои Плејлиста со тоа име. - - - + + + A playlist cannot have a blank name. Плејлистата неможе да има празно име. - + _copy //: Appendix to default name when duplicating a playlist - - - - - - + + + + + + Playlist Creation Failed Неуспешно креирање на Плејлистата - - + + An unknown error occurred while creating playlist: Непозната грешка се појави при креирање на плејлистата: - + M3U Playlist (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U Плејлиста (*.m3u);;M3U8 Плејлиста (*.m3u8);;PLS Плејлиста (*.pls);;Текст CSV (*.csv);;Читлив текст (*.txt) @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Не може да се вчита датотеката @@ -512,7 +512,7 @@ - + Computer @@ -532,7 +532,7 @@ - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -645,12 +645,12 @@ - + Mixxx Library Mixxx библиотека - + Could not load the following file because it is in use by Mixxx or another application. Не може да се вчитаат следните датотеки поради тоа што се користат од Mixxx или друга апликација. @@ -681,6 +681,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -863,13 +941,13 @@ - + Set to full volume - + Set to zero volume @@ -894,13 +972,13 @@ - + Headphone listen button - + Mute button @@ -916,25 +994,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -978,36 +1056,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1019,7 +1067,7 @@ - + Toggle keylock mode @@ -1029,199 +1077,199 @@ - + Vinyl Control - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 - + 1 - + 2 - + 4 - + 8 - + 16 - + 32 - + 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library @@ -1332,20 +1380,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1361,7 +1409,7 @@ - + Mute @@ -1372,7 +1420,7 @@ - + Headphone Listen @@ -1393,25 +1441,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1510,52 +1558,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1572,37 +1574,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1643,466 +1645,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) Додади во листата на автоматскиот Диџеј (најдолу) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) Додади во листата на автоматскиот Диџеј (најгоре) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix - + Toggle mix recording - + Effects - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next - + Switch to next effect - + Previous - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2127,93 +2129,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2270,806 +2272,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ Авто-Диџеј - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3158,32 +3226,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3219,133 +3287,133 @@ CrateFeature - + Remove Одстрани - - + + Create New Crate - + Rename Преименувај - - + + Lock Заклучи - + Export Crate as Playlist - + Export Track Files - + Duplicate - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates - - + + Import Crate - + Export Crate Изнеси кутија - + Unlock Отклучи - + An unknown error occurred while creating crate: - + Rename Crate - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U Плејлиста (*.m3u);;M3U8 Плејлиста (*.m3u8);;PLS Плејлиста (*.pls);;Текст CSV (*.csv);;Читлив текст (*.txt) - + Crates are a great way to help organize the music you want to DJ with. - + Crates let you organize your music however you'd like! - + A crate cannot have a blank name. - + A crate by that name already exists. @@ -3415,37 +3483,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4875,32 +4943,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin - + Tool tips - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4910,52 +4978,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off - + Library only - + Library and Skin @@ -5566,38 +5624,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5816,62 +5874,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6875,32 +6933,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7114,72 +7172,72 @@ Select from different types of displays for the waveform, which differ primarily - + Interface - + Waveforms - + Auto DJ Авто-Диџеј - + Equalizers - + Decks - + Colors - + Crossfader - + Effects - + LV2 Plugins - + Recording - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7189,12 +7247,12 @@ Select from different types of displays for the waveform, which differ primarily - + Live Broadcasting - + Modplug Decoder @@ -7335,123 +7393,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Година - + Title Наслов - - + + Artist Изведувач - - + + Album Албум - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7843,17 +7901,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7954,38 +8012,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7993,13 +8051,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8007,57 +8065,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8078,22 +8136,22 @@ support. LibraryFeature - + Import Playlist Внеси Плејлиста - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Подржани фајлови на плејлисти(*.m3u, *.m3u8, *.pls, *.cvs) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8104,27 +8162,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8240,181 +8298,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry - + skin - - + + Reconfigure - + Help - - + + Exit - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8485,43 +8543,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Заклучи - + Playlists - + Unlock Отклучи - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist @@ -8529,58 +8587,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8764,7 +8822,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9890,12 +9948,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10033,54 +10091,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10089,7 +10147,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10140,34 +10198,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates - + Check for Serato databases (refresh) - + (loading) Serato @@ -10190,12 +10248,12 @@ Fully right: end of the effect period - + Unlock Отклучи - + Lock Заклучи @@ -11154,6 +11212,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12329,11 +12412,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12349,16 +12427,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12374,16 +12442,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12937,22 +12995,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13564,20 +13622,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13748,8 +13806,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Жанр - - Folder + + Directory @@ -13992,155 +14050,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 - + Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist - + Enter name for new playlist: - + New Playlist Нова Плејлиста - - - + + + Playlist Creation Failed Неуспешно креирање на Плејлистата - + A playlist by that name already exists. Веќе постои Плејлиста со тоа име. - + A playlist cannot have a blank name. Плејлистата неможе да има празно име. - + An unknown error occurred while creating playlist: Непозната грешка се појави при креирање на плејлистата: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14148,7 +14211,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14185,128 +14248,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14382,7 +14372,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14439,62 +14429,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_ml.ts b/res/translations/mixxx_ml.ts index 123f006bc07..165da222065 100644 --- a/res/translations/mixxx_ml.ts +++ b/res/translations/mixxx_ml.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates - + Remove Crate as Track Source - + Auto DJ - + Add Crate as Track Source @@ -43,24 +43,24 @@ BansheeFeature - + Banshee - - + + Error loading Banshee database - + Banshee database file not found at - + There was an error loading your Banshee database at @@ -69,32 +69,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) - + Add to Auto DJ Queue (top) - + Add to Auto DJ Queue (replace) - + Import Playlist - + Playlist Creation Failed - + An unknown error occurred while creating playlist: @@ -102,144 +102,144 @@ BasePlaylistFeature - + New Playlist - + Add to Auto DJ Queue (bottom) - - + + Create New Playlist - + Add to Auto DJ Queue (top) - + Remove നീക്കം ചെയ്യുക - + Rename പേരു് മാറ്റുക - + Lock പൂട്ടു് - + Duplicate - - + + Import Playlist - + Export Track Files - + Analyze entire Playlist - + Enter new name for playlist: - + Duplicate Playlist - - + + Enter name for new playlist: - - + + Export Playlist - + Add to Auto DJ Queue (replace) - + Rename Playlist - - + + Renaming Playlist Failed - - - + + + A playlist by that name already exists. - - - + + + A playlist cannot have a blank name. - + _copy //: Appendix to default name when duplicating a playlist - - - - - - + + + + + + Playlist Creation Failed - - + + An unknown error occurred while creating playlist: - + M3U Playlist (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. @@ -512,7 +512,7 @@ - + Computer @@ -532,7 +532,7 @@ - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -645,12 +645,12 @@ - + Mixxx Library - + Could not load the following file because it is in use by Mixxx or another application. @@ -681,6 +681,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -863,13 +941,13 @@ - + Set to full volume - + Set to zero volume @@ -894,13 +972,13 @@ - + Headphone listen button - + Mute button @@ -916,25 +994,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -978,36 +1056,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1019,7 +1067,7 @@ - + Toggle keylock mode @@ -1029,199 +1077,199 @@ - + Vinyl Control - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 - + 1 - + 2 - + 4 - + 8 - + 16 - + 32 - + 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library @@ -1332,20 +1380,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1361,7 +1409,7 @@ - + Mute @@ -1372,7 +1420,7 @@ - + Headphone Listen @@ -1393,25 +1441,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1510,52 +1558,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1572,37 +1574,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1643,466 +1645,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix - + Toggle mix recording - + Effects - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next അടുത്തത് - + Switch to next effect - + Previous മുന്‍പത്തേത് - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2127,93 +2129,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2270,806 +2272,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3158,32 +3226,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3219,133 +3287,133 @@ CrateFeature - + Remove നീക്കം ചെയ്യുക - - + + Create New Crate - + Rename പേരു് മാറ്റുക - - + + Lock പൂട്ടു് - + Export Crate as Playlist - + Export Track Files - + Duplicate - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates - - + + Import Crate - + Export Crate - + Unlock - + An unknown error occurred while creating crate: - + Rename Crate - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) - + Crates are a great way to help organize the music you want to DJ with. - + Crates let you organize your music however you'd like! - + A crate cannot have a blank name. - + A crate by that name already exists. @@ -3415,37 +3483,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4875,32 +4943,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin - + Tool tips - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4910,52 +4978,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off അവസാനിപ്പിക്കുക - + Library only - + Library and Skin @@ -5566,38 +5624,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information വിവരം - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5816,62 +5874,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6875,32 +6933,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7114,72 +7172,72 @@ Select from different types of displays for the waveform, which differ primarily - + Interface ദൃശ്യതലം - + Waveforms - + Auto DJ - + Equalizers - + Decks - + Colors - + Crossfader - + Effects - + LV2 Plugins - + Recording റിക്കോര്‍ഡ് ചെയ്യുന്നു - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7189,12 +7247,12 @@ Select from different types of displays for the waveform, which differ primarily - + Live Broadcasting - + Modplug Decoder @@ -7335,123 +7393,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year വര്‍ഷം - + Title ശീര്‍ഷകം - - + + Artist ഗായകന്‍ - - + + Album ആല്‍ബം - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply &നടപ്പിലാക്കുക - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7843,17 +7901,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7954,38 +8012,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7993,13 +8051,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8007,57 +8065,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8078,22 +8136,22 @@ support. LibraryFeature - + Import Playlist - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8104,27 +8162,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel റദ്ദാക്കുക - + Scanning: - + Scanning cover art (safe to cancel) @@ -8240,181 +8298,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry വീണ്ടും ശ്രമിക്കുക - + skin - - + + Reconfigure - + Help സഹായം - - + + Exit പുറത്തു കടക്കുക - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue തുടരുക - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8485,43 +8543,43 @@ Do you want to select an input device? PlaylistFeature - + Lock പൂട്ടു് - + Playlists - + Unlock - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist @@ -8529,58 +8587,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8764,7 +8822,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9890,12 +9948,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10033,54 +10091,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10089,7 +10147,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox സംഗീതപെട്ടി @@ -10140,34 +10198,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates - + Check for Serato databases (refresh) - + (loading) Serato @@ -10190,12 +10248,12 @@ Fully right: end of the effect period - + Unlock - + Lock പൂട്ടു് @@ -11154,6 +11212,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12329,11 +12412,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12349,16 +12427,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12374,16 +12442,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12937,22 +12995,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13564,20 +13622,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13748,8 +13806,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.വിഭാഗം - - Folder + + Directory @@ -13992,155 +14050,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 - + Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist - + Enter name for new playlist: - + New Playlist - - - + + + Playlist Creation Failed - + A playlist by that name already exists. - + A playlist cannot have a blank name. - + An unknown error occurred while creating playlist: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14148,7 +14211,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14185,128 +14248,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14382,7 +14372,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14439,62 +14429,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_mn.ts b/res/translations/mixxx_mn.ts index 85cb227f0dc..ef44fe4099f 100644 --- a/res/translations/mixxx_mn.ts +++ b/res/translations/mixxx_mn.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates - + Remove Crate as Track Source - + Auto DJ Автомат ДиЖэи - + Add Crate as Track Source @@ -43,24 +43,24 @@ BansheeFeature - + Banshee - - + + Error loading Banshee database - + Banshee database file not found at - + There was an error loading your Banshee database at @@ -69,32 +69,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) - + Add to Auto DJ Queue (top) - + Add to Auto DJ Queue (replace) - + Import Playlist - + Playlist Creation Failed - + An unknown error occurred while creating playlist: @@ -102,144 +102,144 @@ BasePlaylistFeature - + New Playlist - + Add to Auto DJ Queue (bottom) - - + + Create New Playlist - + Add to Auto DJ Queue (top) - + Remove - + Rename - + Lock - + Duplicate - - + + Import Playlist - + Export Track Files - + Analyze entire Playlist - + Enter new name for playlist: - + Duplicate Playlist - - + + Enter name for new playlist: - - + + Export Playlist - + Add to Auto DJ Queue (replace) - + Rename Playlist - - + + Renaming Playlist Failed - - - + + + A playlist by that name already exists. - - - + + + A playlist cannot have a blank name. - + _copy //: Appendix to default name when duplicating a playlist - - - - - - + + + + + + Playlist Creation Failed - - + + An unknown error occurred while creating playlist: - + M3U Playlist (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Уншиж чадахгүй байна @@ -512,7 +512,7 @@ - + Computer @@ -532,7 +532,7 @@ - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -645,12 +645,12 @@ - + Mixxx Library Мixxx-ийн Сан - + Could not load the following file because it is in use by Mixxx or another application. @@ -681,6 +681,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -863,13 +941,13 @@ - + Set to full volume - + Set to zero volume @@ -894,13 +972,13 @@ - + Headphone listen button - + Mute button @@ -916,25 +994,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -978,36 +1056,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1019,7 +1067,7 @@ - + Toggle keylock mode @@ -1029,199 +1077,199 @@ - + Vinyl Control - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 - + 1 - + 2 - + 4 - + 8 - + 16 - + 32 - + 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library @@ -1332,20 +1380,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1361,7 +1409,7 @@ - + Mute @@ -1372,7 +1420,7 @@ - + Headphone Listen @@ -1393,25 +1441,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1510,52 +1558,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1572,37 +1574,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1643,466 +1645,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix - + Toggle mix recording - + Effects - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next - + Switch to next effect - + Previous - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2127,93 +2129,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2270,806 +2272,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ Автомат ДиЖэи - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3158,32 +3226,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3219,133 +3287,133 @@ CrateFeature - + Remove - - + + Create New Crate - + Rename - - + + Lock - + Export Crate as Playlist - + Export Track Files - + Duplicate - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates - - + + Import Crate - + Export Crate - + Unlock - + An unknown error occurred while creating crate: - + Rename Crate - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) - + Crates are a great way to help organize the music you want to DJ with. - + Crates let you organize your music however you'd like! - + A crate cannot have a blank name. - + A crate by that name already exists. @@ -3415,37 +3483,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4875,32 +4943,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin - + Tool tips - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4910,52 +4978,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off - + Library only - + Library and Skin @@ -5566,38 +5624,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5816,62 +5874,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6875,32 +6933,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7114,72 +7172,72 @@ Select from different types of displays for the waveform, which differ primarily - + Interface - + Waveforms - + Auto DJ Автомат ДиЖэи - + Equalizers - + Decks - + Colors - + Crossfader - + Effects - + LV2 Plugins - + Recording - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7189,12 +7247,12 @@ Select from different types of displays for the waveform, which differ primarily - + Live Broadcasting - + Modplug Decoder @@ -7335,123 +7393,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Он - + Title - - + + Artist Уран бүтээлч - - + + Album Цомог - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7843,17 +7901,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7954,38 +8012,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7993,13 +8051,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8007,57 +8065,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8078,22 +8136,22 @@ support. LibraryFeature - + Import Playlist - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8104,27 +8162,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8240,181 +8298,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry - + skin - - + + Reconfigure - + Help - - + + Exit - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8485,43 +8543,43 @@ Do you want to select an input device? PlaylistFeature - + Lock - + Playlists - + Unlock - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist @@ -8529,58 +8587,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8764,7 +8822,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9890,12 +9948,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10033,54 +10091,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10089,7 +10147,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10140,34 +10198,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates - + Check for Serato databases (refresh) - + (loading) Serato @@ -10190,12 +10248,12 @@ Fully right: end of the effect period - + Unlock - + Lock @@ -11154,6 +11212,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12329,11 +12412,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12349,16 +12427,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12374,16 +12442,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12937,22 +12995,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13564,20 +13622,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13748,8 +13806,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - Folder + + Directory @@ -13992,155 +14050,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 - + Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist - + Enter name for new playlist: - + New Playlist - - - + + + Playlist Creation Failed - + A playlist by that name already exists. - + A playlist cannot have a blank name. - + An unknown error occurred while creating playlist: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14148,7 +14211,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14185,128 +14248,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14382,7 +14372,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14439,62 +14429,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_mr.qm b/res/translations/mixxx_mr.qm index 0c8e0e964becbdbebc7cf04b3e450620358b416f..821b18b2c6061a4fbd8f88cfa343a8b3f002321e 100644 GIT binary patch literal 10178 zcmdT}Yit}>6~2zWkGtMo$8UT68pn=tAS6+mkYEKT>-Z5nahupiRjGK4cdz4>XJ?k# z+1TzMplQ{#s#*z%AmSk^r3FM4MF=VcRIS0#GW@0d;g8N?K32>|2u@#&mgw7BX&QC*t3rWUSxzc{2H<8J;aV7#I7u2&m|K0 z;6ZrqKZwo!h>0%5t|N$jS+aBd9YPwflVdxcCnT0b-1;11$J>aVXAu+Ah`l3Z_R7Ps zuJ0i>wIa5^kC=ECvG?cX{`&1;$63Ut=MbCc5Ib8<{5xV-9IX5EJW&y=Uq!sOJe8I9vCl$6h9cyouO)3bBVE_9p}9E>D47 zQ-}lYfyXDW5E4Cs*tUS!@dXo~LL8V0Jbr9HJof}*+mnHB|3n2jF~p{?Aa>mdT;XwS zyN=lX5@L@Yc(=2TkjPlz-R<8bBrt~RIV&jEa&!tZi(i@IV-}4GzEn@d}#C|=NnH+(2zYxE_?~j0u z@vC1OBqa3L_*-{<71r|@Vkm(qJ=$>i8}JN9CyG|DiT@{Px>8OHge%HyYbug2sr>BAN z#70-`TUcf~lU5;vWmRGutX_v?t}@-tcOzCcVUll1cTjx_jAY^?kzt4}k0XCFOLkbE z>)}-e<-p4aYC<|yUcbZ;VKOoY+gIAuKtt zUk8m6Il0jWOMk<3HmB)^bkdaWNA{jdX&|3BC?;|<13I|}C*d3VByDNyD5`G?T0biJ=(vDgqM)p;9TI~G!9*7uLPzr{7JiRrNc^bQ-J>T0T)un$4{=(KVT( zagv;bwkD=KN9iA?MLP=Zpsh4X_tG)?ak`Ukp+iK1JA3G;72moOT582LjtM$U_tPVE z7`XfCC>;U`y9FMxq(ps}%x&5&96iti){fF`-~n!bA6&zC%kChK#jfk`1>YsX2et4S zrMuv>1!Qn(8$AiKc$T`$5`%oH2An!k1IqGOYF3U54q_SAZT8j}`TtSP1-o5Bhy2m00lez(O zi3f8hBvc=`aHxzK8p{~`{mYfw0?QnPi11|s8Sqnd*is%ks%5jVMYxKHoBkSwbp9AE zC2@GX0P0~1ab-tAAy+;{2gY~mUDL<7JlAaMyx%~)?M{Qs01{g!~@nc!%(!| zmd0s2WW+!*VJ&uWPK=PQTKOsu3-=zNtrjz|kTDdmRbp(o!KI|ATUgJz^TH4e9?b)m zvby`2ta}(qArp8N4$vu!7aC`0GAZn~u`yj+&9m~sjkhn}5C-WegNA&YtE~GEOYlda)l$!~j?=gzGmaak0^K(Ejo{^s}mB&f(Qm zo|#_9;q~Ln>EemFC?P-TOgTxMYYR#njDbU9qT9(4%-lHOhUS+GOG~)_S5TucJ9-Rs zpzEa0mS7u{(+?CTWhP zG(BD9c(w4Ywk$ts5I31{a;(DKB%Y^uQJ)s&T*)Gk(op@*75F+=AFj-N$t*-`^ z%04PTw^Z8g*+41@x2l;|%B}nj;5PjJP^r?r!BjqdQ-|A?LT=NUcBL90=XsSB--Bv3 tksq>-(u4ezv+7MCh=*DHaIQU@SzB8h8G%{K+|==RkD7Dv$1OEA{|6)8G-Ut) delta 724 zcmXZZO-NKx6bJA#Gw;5c_x-dGn^a~Z6UkO3%why7X;kRLWHz=j&_#q&;6Su_&=*sP zi!OskK}eB78qyHB8H(r;4bG+p3c^j{BE)K;3lXC;^M7~qgL4n(+;i^xbL9>%y)xEZ z{`0s{Nw&NloiDAOBnpob4SixiLNyJ|9%zq1=Nfbmljwd#wNp3N1g#T+uSvWcCyFdV zbq#7I5?<}XTt&d{BC&gu6W3w15gIq3`2;!})YZ4n-F)irED?n+L1h8z*8_h*;{~)= z=!}1d2b+PaN?tvn-A2GPpmUrq8twd$DX1>M=qac#LL&ps3Fs_E%6q;1poDU7`58M0 zmG98l7x)d@Tb}Z8vOv@j5&7i|H%viyR!pDvd7%$rY#3_WP)|X(ET;RrIj;(1Gh*)L zBv1Gcs#l?<2*374u`ke?3iSS}oAIAS%Gu}#zsiOBpnE|x^1R~EXDAw>HlXcRazvV~ zkEQo>BMXW_7|jLx`s&Utu6w}DFaGAd^HAKkT3;O_vhQBzsRtsm$0^9cc&EJLju+b- zvZ{REJTH5lqcRn*6ekW=L-K1&TXD8k3CmnlQkn^;e)}{rT(g)>X2SB Analyze - + Analyze AutoDJFeature - + Crates - + Crates - + Remove Crate as Track Source - + Remove Crate as Track Source - + Auto DJ - + Auto DJ - + Add Crate as Track Source - + Add Crate as Track Source BansheeFeature - + Banshee - + Banshee - - + + Error loading Banshee database - + Error loading Banshee database - + Banshee database file not found at - + Banshee database file not found at + - + There was an error loading your Banshee database at - + There was an error loading your Banshee database at + BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) - + Add to Auto DJ Queue (bottom) - + Add to Auto DJ Queue (top) - + Add to Auto DJ Queue (top) - + Add to Auto DJ Queue (replace) - + Import Playlist - + Import Playlist - + Playlist Creation Failed - + Playlist Creation Failed - + An unknown error occurred while creating playlist: - + An unknown error occurred while creating playlist: BasePlaylistFeature - + New Playlist नवीन वादकयादी - + Add to Auto DJ Queue (bottom) - + Add to Auto DJ Queue (bottom) - - + + Create New Playlist - + Create New Playlist - + Add to Auto DJ Queue (top) - + Add to Auto DJ Queue (top) - + Remove काढून टाका - + Rename पुनःनामांकन करा - + Lock कुलूपबंद करा - + Duplicate - + Duplicate - - + + Import Playlist - + Import Playlist - + Export Track Files - + Export Track Files - + Analyze entire Playlist - + Analyze entire Playlist - + Enter new name for playlist: - + Enter new name for playlist: - + Duplicate Playlist - + Duplicate Playlist - - + + Enter name for new playlist: - + Enter name for new playlist: - - + + Export Playlist - + Export Playlist - + Add to Auto DJ Queue (replace) - + Rename Playlist - + Rename Playlist - - + + Renaming Playlist Failed - - - + + + A playlist by that name already exists. - - - + + + A playlist cannot have a blank name. - + _copy //: Appendix to default name when duplicating a playlist - - - - - - + + + + + + Playlist Creation Failed - + Playlist Creation Failed - - + + An unknown error occurred while creating playlist: - + An unknown error occurred while creating playlist: - + M3U Playlist (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) @@ -260,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. @@ -512,7 +514,7 @@ - + Computer @@ -532,7 +534,7 @@ - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -645,12 +647,12 @@ - + Mixxx Library - + Could not load the following file because it is in use by Mixxx or another application. @@ -681,6 +683,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -863,13 +943,13 @@ - + Set to full volume - + Set to zero volume @@ -894,13 +974,13 @@ - + Headphone listen button - + Mute button @@ -916,25 +996,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -978,36 +1058,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1019,7 +1069,7 @@ - + Toggle keylock mode @@ -1029,199 +1079,199 @@ - + Vinyl Control - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 - + 1 - + 2 - + 4 - + 8 - + 16 - + 32 - + 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library @@ -1332,20 +1382,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1361,7 +1411,7 @@ - + Mute @@ -1372,7 +1422,7 @@ - + Headphone Listen @@ -1393,25 +1443,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1510,52 +1560,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1572,37 +1576,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1643,466 +1647,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) - + Add to Auto DJ Queue (bottom) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) - + Add to Auto DJ Queue (top) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix - + Toggle mix recording - + Effects - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next - + Switch to next effect - + Previous - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2127,93 +2131,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2270,806 +2274,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ - + Auto DJ - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3158,32 +3228,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3219,133 +3289,133 @@ CrateFeature - + Remove काढून टाका - - + + Create New Crate - + Rename पुनःनामांकन करा - - + + Lock कुलूपबंद करा - + Export Crate as Playlist - + Export Track Files - + Export Track Files - + Duplicate - + Duplicate - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates - + Crates - - + + Import Crate - + Export Crate - + Unlock कुलूप उघडा - + An unknown error occurred while creating crate: - + Rename Crate - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) - + Crates are a great way to help organize the music you want to DJ with. - + Crates let you organize your music however you'd like! - + A crate cannot have a blank name. - + A crate by that name already exists. @@ -3415,37 +3485,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -3497,7 +3567,7 @@ Analyze - + Analyze @@ -3703,7 +3773,7 @@ last sound. Auto DJ - + Auto DJ @@ -4875,32 +4945,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin - + Tool tips - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4910,52 +4980,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off - + Library only - + Library and Skin @@ -5566,38 +5626,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5816,62 +5876,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6875,32 +6935,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7114,72 +7174,72 @@ Select from different types of displays for the waveform, which differ primarily - + Interface - + Waveforms - + Auto DJ - + Auto DJ - + Equalizers - + Decks - + Colors - + Crossfader - + Effects - + LV2 Plugins - + Recording - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7189,12 +7249,12 @@ Select from different types of displays for the waveform, which differ primarily - + Live Broadcasting - + Modplug Decoder @@ -7335,123 +7395,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year वर्ष - + Title शिर्षक - - + + Artist कलाकार - - + + Album अल्बम - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7843,17 +7903,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7954,38 +8014,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7993,13 +8053,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8007,57 +8067,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8078,22 +8138,22 @@ support. LibraryFeature - + Import Playlist - + Import Playlist - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8104,27 +8164,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8240,181 +8300,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry - + skin - - + + Reconfigure - + Help - - + + Exit - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8485,102 +8545,102 @@ Do you want to select an input device? PlaylistFeature - + Lock कुलूपबंद करा - + Playlists - + Unlock कुलूप उघडा - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist - + Create New Playlist QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8764,7 +8824,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9890,12 +9950,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10033,54 +10093,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10089,7 +10149,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10140,34 +10200,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates - + Crates - + Check for Serato databases (refresh) - + (loading) Serato @@ -10190,12 +10250,12 @@ Fully right: end of the effect period - + Unlock कुलूप उघडा - + Lock कुलूपबंद करा @@ -11154,6 +11214,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12329,11 +12414,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12349,16 +12429,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12374,16 +12444,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12937,22 +12997,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13564,20 +13624,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13748,8 +13808,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.श्रेणी - - Folder + + Directory @@ -13778,7 +13838,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Crates - + Crates @@ -13814,12 +13874,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Add to Auto DJ Queue (bottom) - + Add to Auto DJ Queue (bottom) Add to Auto DJ Queue (top) - + Add to Auto DJ Queue (top) @@ -13992,155 +14052,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 - + Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist - + Create New Playlist - + Enter name for new playlist: - + Enter name for new playlist: - + New Playlist नवीन वादकयादी - - - + + + Playlist Creation Failed - + Playlist Creation Failed - + A playlist by that name already exists. - + A playlist cannot have a blank name. - + An unknown error occurred while creating playlist: - + An unknown error occurred while creating playlist: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14148,7 +14213,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14185,128 +14250,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14382,7 +14374,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14439,62 +14431,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_ms.ts b/res/translations/mixxx_ms.ts index 5a7141e94f8..ee3d168c683 100644 --- a/res/translations/mixxx_ms.ts +++ b/res/translations/mixxx_ms.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates - + Remove Crate as Track Source - + Auto DJ DJ Automatik - + Add Crate as Track Source @@ -43,24 +43,24 @@ BansheeFeature - + Banshee - - + + Error loading Banshee database - + Banshee database file not found at - + There was an error loading your Banshee database at @@ -69,32 +69,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Tambah Dalam Senarai DJ Automatik (bawah) - + Add to Auto DJ Queue (top) Tambah Dalam Senarai DJ Automatik (atas) - + Add to Auto DJ Queue (replace) - + Import Playlist Import Senarai Main - + Playlist Creation Failed Cipta Senarai Main Gagal - + An unknown error occurred while creating playlist: Ralat tidak diketahui berlaku semasa mencipta senarai main @@ -102,144 +102,144 @@ BasePlaylistFeature - + New Playlist Senarai Main Baru - + Add to Auto DJ Queue (bottom) Tambah Dalam Senarai DJ Automatik (bawah) - - + + Create New Playlist - + Add to Auto DJ Queue (top) Tambah Dalam Senarai DJ Automatik (atas) - + Remove Buang - + Rename Namakan Semula - + Lock Kunci - + Duplicate - - + + Import Playlist Import Senarai Main - + Export Track Files - + Analyze entire Playlist - + Enter new name for playlist: - + Duplicate Playlist - - + + Enter name for new playlist: - - + + Export Playlist - + Add to Auto DJ Queue (replace) - + Rename Playlist - - + + Renaming Playlist Failed - - - + + + A playlist by that name already exists. - - - + + + A playlist cannot have a blank name. - + _copy //: Appendix to default name when duplicating a playlist - - - - - - + + + + + + Playlist Creation Failed Cipta Senarai Main Gagal - - + + An unknown error occurred while creating playlist: Ralat tidak diketahui berlaku semasa mencipta senarai main - + M3U Playlist (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Tidak dapat memuatkan trek. @@ -512,7 +512,7 @@ - + Computer @@ -532,7 +532,7 @@ - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -645,12 +645,12 @@ - + Mixxx Library Pustaka Mixxx - + Could not load the following file because it is in use by Mixxx or another application. Tidak dapat memuatkan fail berikut kerana ia sedang digunakan oleh Mixxx atau aplikasi lain. @@ -681,6 +681,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -863,13 +941,13 @@ - + Set to full volume - + Set to zero volume @@ -894,13 +972,13 @@ - + Headphone listen button - + Mute button @@ -916,25 +994,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -978,36 +1056,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1019,7 +1067,7 @@ - + Toggle keylock mode @@ -1029,199 +1077,199 @@ - + Vinyl Control - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 - + 1 - + 2 - + 4 - + 8 - + 16 - + 32 - + 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library @@ -1332,20 +1380,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1361,7 +1409,7 @@ - + Mute @@ -1372,7 +1420,7 @@ - + Headphone Listen @@ -1393,25 +1441,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1510,52 +1558,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1572,37 +1574,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1643,466 +1645,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) Tambah Dalam Senarai DJ Automatik (bawah) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) Tambah Dalam Senarai DJ Automatik (atas) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix - + Toggle mix recording - + Effects - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next - + Switch to next effect - + Previous - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2127,93 +2129,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2270,806 +2272,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ DJ Automatik - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3158,32 +3226,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3219,133 +3287,133 @@ CrateFeature - + Remove Buang - - + + Create New Crate - + Rename Namakan Semula - - + + Lock Kunci - + Export Crate as Playlist - + Export Track Files - + Duplicate - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates - - + + Import Crate Import Krat - + Export Crate Eksport Krat - + Unlock Buka - + An unknown error occurred while creating crate: Terdapat ralat semasa mecipta krat: - + Rename Crate Namakan Semula Krate - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed Menamakan Semula Krat Gagal - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) - + Crates are a great way to help organize the music you want to DJ with. - + Crates let you organize your music however you'd like! - + A crate cannot have a blank name. Nama krat tidak boleh kosong. - + A crate by that name already exists. Krat dengan nama tadi telah wujid. @@ -3415,37 +3483,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4875,32 +4943,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin - + Tool tips - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4910,52 +4978,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off - + Library only - + Library and Skin @@ -5566,38 +5624,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5816,62 +5874,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6875,32 +6933,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7114,72 +7172,72 @@ Select from different types of displays for the waveform, which differ primarily - + Interface - + Waveforms - + Auto DJ DJ Automatik - + Equalizers - + Decks - + Colors - + Crossfader - + Effects - + LV2 Plugins - + Recording - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7189,12 +7247,12 @@ Select from different types of displays for the waveform, which differ primarily - + Live Broadcasting - + Modplug Decoder @@ -7335,123 +7393,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Tahun - + Title Tajuk - - + + Artist Artis - - + + Album Album - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7843,17 +7901,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7954,38 +8012,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7993,13 +8051,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8007,57 +8065,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8078,22 +8136,22 @@ support. LibraryFeature - + Import Playlist Import Senarai Main - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8104,27 +8162,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8240,181 +8298,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry - + skin - - + + Reconfigure - + Help - - + + Exit - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8485,43 +8543,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Kunci - + Playlists - + Unlock Buka - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist @@ -8529,58 +8587,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8764,7 +8822,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9890,12 +9948,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10033,54 +10091,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10089,7 +10147,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10140,34 +10198,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates - + Check for Serato databases (refresh) - + (loading) Serato @@ -10190,12 +10248,12 @@ Fully right: end of the effect period - + Unlock Buka - + Lock Kunci @@ -11154,6 +11212,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12329,11 +12412,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12349,16 +12427,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12374,16 +12442,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12937,22 +12995,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13564,20 +13622,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13748,8 +13806,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Genre - - Folder + + Directory @@ -13992,155 +14050,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 - + Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist - + Enter name for new playlist: - + New Playlist Senarai Main Baru - - - + + + Playlist Creation Failed Cipta Senarai Main Gagal - + A playlist by that name already exists. - + A playlist cannot have a blank name. - + An unknown error occurred while creating playlist: Ralat tidak diketahui berlaku semasa mencipta senarai main - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14148,7 +14211,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14185,128 +14248,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14382,7 +14372,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14439,62 +14429,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_my.ts b/res/translations/mixxx_my.ts index e61ac7ef939..8b14306d566 100644 --- a/res/translations/mixxx_my.ts +++ b/res/translations/mixxx_my.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates အကန့်ကန့်ရန် - + Remove Crate as Track Source ရင်းမြစ် တေးဂီတ အဖြစ် စုစည်မှု မှ ဖယ်ရန် - + Auto DJ အော်တို ဒီဂျေ - + Add Crate as Track Source ရင်းမြစ် တေးဂီတ အဖြစ် စုစည်မှု သို့ ထည့်ရန် @@ -43,24 +43,24 @@ BansheeFeature - + Banshee - - + + Error loading Banshee database - + Banshee database file not found at - + There was an error loading your Banshee database at @@ -69,32 +69,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) အော်တို ဒီဂျေ တန်းစီခြင်း သို့ ထည့် ရန် (အောက်​) - + Add to Auto DJ Queue (top) အော်တို ဒီဂျေ တန်းစီခြင်း သို့ ထည့် ရန် (အထက်) - + Add to Auto DJ Queue (replace) အော်တို ဒီဂျေ တန်းစီခြင်း သို့ ထည့် ရန် (အစားထိုး) - + Import Playlist ဖွင့်မည့်စာရင်း ကိုသွင်းရန် - + Playlist Creation Failed ဖွင့်မည့်စာရင်း ပြုလုပ်ခြင်း မအောင်မြင်ပါ - + An unknown error occurred while creating playlist: ဖွင့်မည့်စာရင်း ပြုလုပ်စဉ် မသိသော အမှားတစ်ခု ဖြစ်ခဲ့သည်: @@ -102,144 +102,144 @@ BasePlaylistFeature - + New Playlist ဖွင့်မည့်စာရင်း အသစ် - + Add to Auto DJ Queue (bottom) အော်တို ဒီဂျေ တန်းစီခြင်း သို့ ထည့် ရန် (အောက်​) - - + + Create New Playlist ဖွင့်မည့်စာရင်း အသစ် ပြုလုပ်ရန် - + Add to Auto DJ Queue (top) အော်တို ဒီဂျေ တန်းစီခြင်း သို့ ထည့် ရန် (အထက်) - + Remove ဖယ်ရှားပါ - + Rename အမည်ပြောင်းပါ - + Lock ပိတ် - + Duplicate ပုံတူပွားရန် - - + + Import Playlist ဖွင့်မည့်စာရင်း ကိုသွင်းရန် - + Export Track Files တေးဂီတ ဖိုင်များ ထုတ်လုပ်ရန် - + Analyze entire Playlist ဖွင့်မည့်စာရင်း တစ်ခုလုံး ကို စီစစ်ရန် - + Enter new name for playlist: ဖွင့်မည့်စာရင်း အတွက် အမည်သစ် တစ်ခု ရိုက်ထည့်ပါ: - + Duplicate Playlist ဖွင့်မည့်စာရင်း ထပ်နေသည် - - + + Enter name for new playlist: ဖွင့်မည့်စာရင်း အသစ် အတွက် အမည်ရိုက်ထည့်ပါ: - - + + Export Playlist ဖွင့်မည့်စာရင်း ထုတ်ယူရန် - + Add to Auto DJ Queue (replace) အော်တို ဒီဂျေ တန်းစီခြင်း သို့ ထည့် ရန် (အစားထိုး) - + Rename Playlist ဖွင့်မည့်စာရင်း အမည်ပြန်ပေးရန် - - + + Renaming Playlist Failed ဖွင့်မည့်စာရင်း အမည်ပြန်ပြောင်းခြင်း မအောင်မြင်ပါ - - - + + + A playlist by that name already exists. ဖွင့်မည့်စာရင်း အတွက် ပေးထားသော အမည်မှာ ရှိပြီးဖြစ်သည်။ - - - + + + A playlist cannot have a blank name. ဖွင့်မည့်စာရင်း အမည် ကို အလွတ်ထား၍ မရပါ။ - + _copy //: Appendix to default name when duplicating a playlist _ကူးယူ - - - - - - + + + + + + Playlist Creation Failed ဖွင့်မည့်စာရင်း ပြုလုပ်ခြင်း မအောင်မြင်ပါ - - + + An unknown error occurred while creating playlist: ဖွင့်မည့်စာရင်း ပြုလုပ်စဉ် မသိသော အမှားတစ်ခု ဖြစ်ခဲ့သည်: - + M3U Playlist (*.m3u) M3U ဖွင့်မည့်စာရင်း (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U  ဖွင့်မည့်စာရင်း (*.m3u);;M3U8 ဖွင့်မည့်စာရင်း (*.m3u8);;PLS ဖွင့်မည့်စာရင်း (*.pls);;စာသား CSV (*.csv);;ဖတ်ရသော စသားမျိုး (*.txt) @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. တေးဂီတပုဒ် မဖွင့်နိုင်ပါ @@ -512,7 +512,7 @@ - + Computer ကွန်ပျူတာ @@ -532,7 +532,7 @@ ထောက်လှမ်းရှာဖွေရန် - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -645,12 +645,12 @@ - + Mixxx Library - + Could not load the following file because it is in use by Mixxx or another application. @@ -681,6 +681,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -863,13 +941,13 @@ - + Set to full volume - + Set to zero volume @@ -894,13 +972,13 @@ - + Headphone listen button - + Mute button @@ -916,25 +994,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -978,36 +1056,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1019,7 +1067,7 @@ - + Toggle keylock mode @@ -1029,199 +1077,199 @@ - + Vinyl Control - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 - + 1 - + 2 - + 4 - + 8 - + 16 - + 32 - + 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library @@ -1332,20 +1380,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1361,7 +1409,7 @@ - + Mute @@ -1372,7 +1420,7 @@ - + Headphone Listen @@ -1393,25 +1441,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1510,52 +1558,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1572,37 +1574,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1643,466 +1645,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) အော်တို ဒီဂျေ တန်းစီခြင်း သို့ ထည့် ရန် (အောက်​) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) အော်တို ဒီဂျေ တန်းစီခြင်း သို့ ထည့် ရန် (အထက်) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix - + Toggle mix recording - + Effects - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next - + Switch to next effect - + Previous - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle အော်တို ဒီဂျေ ခလုပ် - + Toggle Auto DJ On/Off အော်တို ဒီဂျေ ဖွင့်/ပိတ် ခလုပ် - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2127,93 +2129,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2270,806 +2272,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) အော်တို ဒီဂျေ တန်းစီခြင်း သို့ ထည့် ရန် (အစားထိုး) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ အော်တို ဒီဂျေ - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3158,32 +3226,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3219,133 +3287,133 @@ CrateFeature - + Remove ဖယ်ရှားပါ - - + + Create New Crate - + Rename အမည်ပြောင်းပါ - - + + Lock ပိတ် - + Export Crate as Playlist - + Export Track Files တေးဂီတ ဖိုင်များ ထုတ်လုပ်ရန် - + Duplicate ပုံတူပွားရန် - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates အကန့်ကန့်ရန် - - + + Import Crate - + Export Crate - + Unlock - + An unknown error occurred while creating crate: - + Rename Crate - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U  ဖွင့်မည့်စာရင်း (*.m3u);;M3U8 ဖွင့်မည့်စာရင်း (*.m3u8);;PLS ဖွင့်မည့်စာရင်း (*.pls);;စာသား CSV (*.csv);;ဖတ်ရသော စသားမျိုး (*.txt) - + Crates are a great way to help organize the music you want to DJ with. - + Crates let you organize your music however you'd like! - + A crate cannot have a blank name. - + A crate by that name already exists. @@ -3415,37 +3483,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4875,32 +4943,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin - + Tool tips - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4910,52 +4978,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off - + Library only - + Library and Skin @@ -5566,38 +5624,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5816,62 +5874,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan ထောက်လှမ်းရှာဖွေရန် - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6875,32 +6933,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7114,72 +7172,72 @@ Select from different types of displays for the waveform, which differ primarily - + Interface - + Waveforms - + Auto DJ အော်တို ဒီဂျေ - + Equalizers - + Decks - + Colors - + Crossfader - + Effects - + LV2 Plugins - + Recording - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7189,12 +7247,12 @@ Select from different types of displays for the waveform, which differ primarily - + Live Broadcasting - + Modplug Decoder @@ -7335,123 +7393,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year ခုနှစ် - + Title ခေါင်းစဉ် - - + + Artist အဆိုတော် - - + + Album - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7843,17 +7901,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7954,38 +8012,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. သင့် iTunes မီဒီယာတိုက် ကို တင်သွင်းစဥ် အမှားဖြစ်သည်။ အချို့သော သင့် iTune အပုဒ်များ သို့မဟုတ် ဖွင့်မည့်စာရင်းများ တင်သွင်းမရခဲ့ပါ။ @@ -7993,13 +8051,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8007,57 +8065,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8078,22 +8136,22 @@ support. LibraryFeature - + Import Playlist ဖွင့်မည့်စာရင်း ကိုသွင်းရန် - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) ဖွင့်မည့်စာရင်း ဖိုင်များ (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8104,27 +8162,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8240,181 +8298,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry - + skin - - + + Reconfigure - + Help - - + + Exit - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8487,43 +8545,43 @@ Do you want to select an input device? PlaylistFeature - + Lock ပိတ် - + Playlists ဖွင့်မည့်စာရင်းများ - + Unlock - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. အချို့သော ဒီဂျေများသည် သူတို့၏ တိုက်ရိုက် တင်ဆက်မှု မတိုင်မီ ဖွင့်မည့်စာရင်းများ တည်ဆောက်ကြသည်။ သို့သော် အချို့သည် တင်ဆက်နေစဥ် စီမံရသည်ကို ပိုနှစ်သက်ကြသည်။ - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. ဖွင့်မည့်စာရင်း သုံးကာ တိုက်ရိုက် ဒီဂျေ တင်ဆက်စဉ် သင့် ပရိတ်သတ်များမှ သင်ရွေးချယ် ဖွင့်ထားသော ဂီတ အပေါ် မည်သို့ တုန့်ပြန်နေသည် ကို အမြဲအာရုံစိုက် စောင့်ကြည့်နေရမည်ကို မှတ်ထားပါ။ - + Create New Playlist ဖွင့်မည့်စာရင်း အသစ် ပြုလုပ်ရန် @@ -8531,58 +8589,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan ထောက်လှမ်းရှာဖွေရန် - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8766,7 +8824,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9892,12 +9950,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10035,54 +10093,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists ဖွင့်မည့်စာရင်းများ - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10091,7 +10149,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10142,34 +10200,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates အကန့်ကန့်ရန် - + Check for Serato databases (refresh) - + (loading) Serato @@ -10192,12 +10250,12 @@ Fully right: end of the effect period - + Unlock - + Lock ပိတ် @@ -11156,6 +11214,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12331,11 +12414,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12351,16 +12429,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12376,16 +12444,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12939,22 +12997,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13566,20 +13624,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13750,8 +13808,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.အမျိုးအစား - - Folder + + Directory @@ -13994,155 +14052,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 - + Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist ဖွင့်မည့်စာရင်း အသစ် ပြုလုပ်ရန် - + Enter name for new playlist: ဖွင့်မည့်စာရင်း အသစ် အတွက် အမည်ရိုက်ထည့်ပါ: - + New Playlist ဖွင့်မည့်စာရင်း အသစ် - - - + + + Playlist Creation Failed ဖွင့်မည့်စာရင်း ပြုလုပ်ခြင်း မအောင်မြင်ပါ - + A playlist by that name already exists. ဖွင့်မည့်စာရင်း အတွက် ပေးထားသော အမည်မှာ ရှိပြီးဖြစ်သည်။ - + A playlist cannot have a blank name. ဖွင့်မည့်စာရင်း အမည် ကို အလွတ်ထား၍ မရပါ။ - + An unknown error occurred while creating playlist: ဖွင့်မည့်စာရင်း ပြုလုပ်စဉ် မသိသော အမှားတစ်ခု ဖြစ်ခဲ့သည်: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14150,7 +14213,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14187,128 +14250,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14384,7 +14374,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14441,62 +14431,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_nb.ts b/res/translations/mixxx_nb.ts index bb6c998659f..e89a136304d 100644 --- a/res/translations/mixxx_nb.ts +++ b/res/translations/mixxx_nb.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Kasser - + Remove Crate as Track Source Fjern Kasse som Sporkilde - + Auto DJ Auto DJ - + Add Crate as Track Source Legg til Kasse som Sporkilde @@ -43,25 +43,25 @@ BansheeFeature - + Banshee Banshee - - + + Error loading Banshee database Feil under lasting av Banshee-database - + Banshee database file not found at Banshee-database ikke funnet i - + There was an error loading your Banshee database at Det oppsto et problem under lasting av Banshee-database i @@ -71,32 +71,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Legg til Automatisk DJ Kø - + Add to Auto DJ Queue (top) Legg til Automatisk DJ Kø (øverst) - + Add to Auto DJ Queue (replace) - + Import Playlist Importer spilleliste - + Playlist Creation Failed Oppretting av spilleliste mislyktes - + An unknown error occurred while creating playlist: Det oppstod en ukjent feil under oppretting av spilleliste: @@ -104,144 +104,144 @@ BasePlaylistFeature - + New Playlist Ny spilleliste - + Add to Auto DJ Queue (bottom) Legg til Automatisk DJ Kø - - + + Create New Playlist Opprett ny spilleliste - + Add to Auto DJ Queue (top) Legg til Automatisk DJ Kø (øverst) - + Remove Fjern - + Rename Gi nytt navn - + Lock Lås - + Duplicate Duplikat - - + + Import Playlist Importer spilleliste - + Export Track Files - + Analyze entire Playlist Analysér hele spillelisten - + Enter new name for playlist: Skriv inn nytt navn for spilleliste: - + Duplicate Playlist Dupliser spillelisten - - + + Enter name for new playlist: Skriv inn nytt navn for spilleliste: - - + + Export Playlist Eksportér spilleliste - + Add to Auto DJ Queue (replace) - + Rename Playlist Gi spillelisten nytt navn - - + + Renaming Playlist Failed Navngivning av spilleliste mislyktes - - - + + + A playlist by that name already exists. Det finnes allerede en spilleliste med det navnet. - - - + + + A playlist cannot have a blank name. Spillelisten kan ikke ha en tomt navn. - + _copy //: Appendix to default name when duplicating a playlist Kopier - - - - - - + + + + + + Playlist Creation Failed Oppretting av spilleliste mislyktes - - + + An unknown error occurred while creating playlist: Det oppstod en ukjent feil under oppretting av spilleliste: - + M3U Playlist (*.m3u) M3U spilleliste (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U Spilleliste (*.m3u);;M3U8 Spilleliste (*.m3u8);;PLS Spilleliste (*.pls);;Tekst CSV (*.csv);;Lesbar Tekst (*.txt) @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Fikk ikke lastet sporet @@ -514,7 +514,7 @@ - + Computer Datamaskin @@ -534,7 +534,7 @@ Skann - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -647,12 +647,12 @@ Fil Opprettet - + Mixxx Library Mixxx Bibliotek - + Could not load the following file because it is in use by Mixxx or another application. Filen er allerede i bruk av Mixxx eller et annet program, og kunne ikke lastes. @@ -683,6 +683,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -865,13 +943,13 @@ - + Set to full volume Sett til fullt volum - + Set to zero volume @@ -896,13 +974,13 @@ - + Headphone listen button - + Mute button @@ -918,25 +996,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -980,36 +1058,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1021,7 +1069,7 @@ - + Toggle keylock mode @@ -1031,200 +1079,200 @@ Hint - + Vinyl Control Vinylkontroll - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues Markører - + Cue button Markørknapp - + Set cue point Sett markørpunkt - + Go to cue point Gå til markørpunkt - + Go to cue point and play Gå til markørpunkt og spill - + Go to cue point and stop Gå til markørpunkt og stopp - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 32 - + 64 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library Bibliotek @@ -1335,20 +1383,20 @@ Markørknapp - - + + Volume Fader - + Full Volume Fullt Volum - + Zero Volume @@ -1364,7 +1412,7 @@ Markørknapp - + Mute @@ -1375,7 +1423,7 @@ Markørknapp - + Headphone Listen @@ -1396,25 +1444,25 @@ Markørknapp - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1513,52 +1561,6 @@ Markørknapp Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1575,37 +1577,37 @@ Markørknapp - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1646,466 +1648,466 @@ Markørknapp - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode Vinyl Kontrollmodus - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) Legg til Automatisk DJ Kø - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) Legg til Automatisk DJ Kø (øverst) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix - + Toggle mix recording - + Effects Effekter - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next Neste - + Switch to next effect - + Previous Forrige - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob Forsterker knapp - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2130,93 +2132,93 @@ Markørknapp - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2273,806 +2275,872 @@ Markørknapp - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off Mikrofon av/på - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ Auto DJ - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface Brukergrensesnitt - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3161,32 +3229,32 @@ Markørknapp ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3222,133 +3290,133 @@ Markørknapp CrateFeature - + Remove Fjern - - + + Create New Crate - + Rename Gi nytt navn - - + + Lock Lås - + Export Crate as Playlist - + Export Track Files - + Duplicate Duplikat - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates Kasser - - + + Import Crate Importer Kasse - + Export Crate Eksporter Kasse - + Unlock Lås opp - + An unknown error occurred while creating crate: En ukjent feil oppstod under oppretting av kasse: - + Rename Crate Endra navn på Kasse - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed Endring av kassenavn mislykket - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U Spilleliste (*.m3u);;M3U8 Spilleliste (*.m3u8);;PLS Spilleliste (*.pls);;Tekst CSV (*.csv);;Lesbar Tekst (*.txt) - + Crates are a great way to help organize the music you want to DJ with. Kasser er en fin måte å organisere musikken du vil mikse med. - + Crates let you organize your music however you'd like! Kasser lar deg organisere musikken som du vil! - + A crate cannot have a blank name. En kasse kan ikke ha blankt navn. - + A crate by that name already exists. Det er allerede en kasse ved det navnet. @@ -3418,37 +3486,37 @@ Markørknapp DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: Med bidrag fra: - + And special thanks to: Og spesielt takk til: - + Past Developers Tidligere utviklere - + Past Contributors Tidligere bidragsytere - + Official Website - + Donate @@ -4878,32 +4946,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin Tema - + Tool tips - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4913,52 +4981,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off Av - + Library only - + Library and Skin @@ -5569,38 +5627,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information Informasjon - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5819,62 +5877,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added Musikkmappe lagt til - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? Du har lagt til én eller flere musikkmapper. Sporene i disse mappene vil ikke være tilgjengelig før du oppdaterer biblioteket. Vil du oppdatere nå? - + Scan Skann - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6878,32 +6936,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available OpenGL ikke tilgjengelig - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7117,72 +7175,72 @@ Select from different types of displays for the waveform, which differ primarily Bibliotek - + Interface - + Waveforms - + Auto DJ Auto DJ - + Equalizers Hint - + Decks - + Colors - + Crossfader Kryssfader - + Effects Effekter - + LV2 Plugins - + Recording Opptak - + Beat Detection - + Key Detection - + Normalization Normalisering - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7192,12 +7250,12 @@ Select from different types of displays for the waveform, which differ primarily Vinylkontroll - + Live Broadcasting Direkte Sending - + Modplug Decoder @@ -7338,123 +7396,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year År - + Title Tittel - - + + Artist Artist - - + + Album Album - + Album Artist Albumartist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous &Forrige - + &Next &Neste - + &Apply &Bruk - + &Close &Lukk - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7846,17 +7904,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7957,38 +8015,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes iTunes - - + + Select your iTunes library Velg ditt ITunes-bibliotek - + (loading) iTunes (laster) iTunes - + Use Default Library Bruk standardbiblioteket - + Choose Library... Velg bibliotek ... - + Error Loading iTunes Library Feil ved lasting av iTunes-bibliotek - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. Det oppstod en feil under lasting av iTunes-biblioteket. Noen av sporene eller spillelistene har muligens ikke blitt lastet. @@ -7996,13 +8054,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8010,57 +8068,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut Snarvei @@ -8081,22 +8139,22 @@ support. LibraryFeature - + Import Playlist Importer spilleliste - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Spilleliste filer (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8107,27 +8165,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... Mixxx bruker litt tid på å søke gjennom musikksamlingen din. Det er bare å vente... - + Cancel Avbryt - + Scanning: - + Scanning cover art (safe to cancel) @@ -8243,181 +8301,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. Finn <b>Hjelp</b> i Mixxx-wiki'en. - - - + + + <b>Exit</b> Mixxx. - + Retry Prøv igjen - + skin - - + + Reconfigure Sett opp på nytt - + Help Hjelp - - + + Exit Avslutt - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue Fortsett - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8488,43 +8546,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Lås - + Playlists Spillelister - + Unlock Lås opp - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist Opprett ny spilleliste @@ -8532,58 +8590,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Skann - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8767,7 +8825,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9893,12 +9951,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10036,54 +10094,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists Spillelister - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10092,7 +10150,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10143,34 +10201,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates Kasser - + Check for Serato databases (refresh) - + (loading) Serato @@ -10193,12 +10251,12 @@ Fully right: end of the effect period - + Unlock Lås opp - + Lock Lås @@ -11157,6 +11215,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12332,11 +12415,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12352,16 +12430,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12377,16 +12445,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12940,22 +12998,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor Traktor - + (loading) Traktor (laster) Traktor - + Error Loading Traktor Library Feil ved lasting av Traktor-biblioteket - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13567,20 +13625,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13751,8 +13809,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Sjanger - - Folder + + Directory @@ -13995,155 +14053,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 Spiller %1 - + Sampler %1 Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Opprett ny spilleliste - + Enter name for new playlist: Skriv inn nytt navn for spilleliste: - + New Playlist Ny spilleliste - - - + + + Playlist Creation Failed Oppretting av spilleliste mislyktes - + A playlist by that name already exists. Det finnes allerede en spilleliste med det navnet. - + A playlist cannot have a blank name. Spillelisten kan ikke ha en tomt navn. - + An unknown error occurred while creating playlist: Det oppstod en ukjent feil under oppretting av spilleliste: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14151,7 +14214,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus ESC @@ -14188,128 +14251,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database Får ikke åpnet databasen - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14385,7 +14375,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14442,62 +14432,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_nl.qm b/res/translations/mixxx_nl.qm index 609e1a6d52fc595dead50653d3d1a39497ab5cd4..a6564da01c643160a55bdd5cb6b7e8a674264001 100644 GIT binary patch delta 19484 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 delta 21789 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

Z7w_n9yn~MY4AbSGv`4+uu)6NSoyuqx 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 AutoDJFeature - + Crates Kratten - + Remove Crate as Track Source Verwijder krat als Track bron - + Auto DJ Auto DJ - + Add Crate as Track Source Voeg krat toe als Track bron @@ -43,25 +43,25 @@ BansheeFeature - + Banshee Banshee - - + + Error loading Banshee database Fout bij het laden van de Banshee database - + Banshee database file not found at Banshee database bestand niet gevonden op - + There was an error loading your Banshee database at Er is een fout opgetreden bij het laden van uw Banshee database op @@ -71,32 +71,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Voeg toe aan de Auto DJ wachtrij (onderaan) - + Add to Auto DJ Queue (top) Voeg toe aan de auto DJ wachtrij (bovenaan) - + Add to Auto DJ Queue (replace) Voeg toe aan de Auto DJ wachtrij (vervang) - + Import Playlist Importeer Afspeellijst - + Playlist Creation Failed Aanmaak van afspeellijst mislukt - + An unknown error occurred while creating playlist: Er is een onbekende fout opgetreden tijdens het maken van de afspeellijst: @@ -104,144 +104,144 @@ BasePlaylistFeature - + New Playlist Nieuwe Afspeellijst - + Add to Auto DJ Queue (bottom) Voeg toe aan de Auto DJ wachtrij (onderaan) - - + + Create New Playlist Nieuwe Afspeellijst aanmaken - + Add to Auto DJ Queue (top) Voeg toe aan de auto DJ wachtrij (bovenaan) - + Remove Verwijderen - + Rename Hernoemen - + Lock Vergrendelen - + Duplicate Dupliceren - - + + Import Playlist Importeer Afspeellijst - + Export Track Files Exporteer Tracks - + Analyze entire Playlist Analyseer volledige Afspeellijst - + Enter new name for playlist: Voer nieuwe naam in voor Afspeellijst - + Duplicate Playlist Dupliceer Afspeellijst - - + + Enter name for new playlist: Voer naam in voor nieuwe afspeellijst: - - + + Export Playlist Exporteer Afspeellijst - + Add to Auto DJ Queue (replace) Voeg toe aan de Auto DJ wachtrij (vervang) - + Rename Playlist Hernoem Afspeellijst - - + + Renaming Playlist Failed Afspeellijst hernoemen mislukt - - - + + + A playlist by that name already exists. Een afspeellijst met deze naam bestaan reeds. - - - + + + A playlist cannot have a blank name. Een Afspeellijst kan geen blanco naam bevatten. - + _copy //: Appendix to default name when duplicating a playlist _kopiëren - - - - - - + + + + + + Playlist Creation Failed Aanmaak van afspeellijst mislukt - - + + An unknown error occurred while creating playlist: Er is een onbekende fout opgetreden tijdens het maken van de afspeellijst: - + M3U Playlist (*.m3u) M3U speellijst(*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U Speellijst (*.m3u);;M3U8 Speellijst (*.m3u8);;PLS Speellijst (*.pls);;Tekst CSV (*.csv);;Leesbare Tekst (*.txt) @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Kan het nummer niet laden. @@ -514,7 +514,7 @@ - + Computer Computer @@ -534,7 +534,7 @@ Scan - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. De optie "Computer" laat u toe om in mappen te navigeren, nummers te bekijken en te laden van op uw harde schijf en externe apparaten. @@ -647,12 +647,12 @@ Bestand Aangemaakt - + Mixxx Library Mixxx Bibliotheek - + Could not load the following file because it is in use by Mixxx or another application. Kon het volgende bestand niet laden omdat het in gebruik is door Mixxx of een andere applicatie. @@ -683,6 +683,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + Start Mixxx in volledige scherm modus + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + Top-level hoofdmap waar Mixxx moet zoeken naar zijn bronbestanden zoals MIDI-mappings, waarbij de standaard installatielocatie wordt overschreven. + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -865,13 +943,13 @@ - + Set to full volume Zet naar maximale volume - + Set to zero volume Zet naar nul volume @@ -896,13 +974,13 @@ Reverse roll (Censor) knop - + Headphone listen button Luisterknop hoofdtelefoon - + Mute button Stilteknop @@ -918,25 +996,25 @@ - + Mix orientation (e.g. left, right, center) Orientatie van de mix (b.v. links, rechts, midden) - + Set mix orientation to left Orientatie mix links - + Set mix orientation to center Orientatie mix midden - + Set mix orientation to right Orientatie mix rechts @@ -980,36 +1058,6 @@ Toggle quantize mode Quantize modus aan/uit - - - Increase internal master BPM by 1 - Verhoog interne master BPM met 1 - - - - Decrease internal master BPM by 1 - Verlaag interne master BPM met 1 - - - - Increase internal master BPM by 0.1 - Verhoog interne master BPM met 0.1 - - - - Decrease internal master BPM by 0.1 - Verlaag interne master BPM met 0.1 - - - - Toggle sync master - Sync master aan/uit - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - 3-standenschakelaar voor synchronisatiemodus (UIT, VOLG, MASTER) - One-time beat sync (tempo only) @@ -1021,7 +1069,7 @@ Eenmalige beat-synchronisatie (alleen fase) - + Toggle keylock mode Key-lock mode aan/uit @@ -1031,199 +1079,199 @@ Equalizers - + Vinyl Control Vinyl Control - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) Wisselknop cueing mode met vinylbedeining (UIT / EEN / HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) Wisselknop vinylbediening modus (ABS/REL/CONST) - + Pass through external audio into the internal mixer Via externe audio naar de interne mixer doorgeven - + Cues Cues - + Cue button Cue knop - + Set cue point Stel het cue-punt in - + Go to cue point Ga naar het cue-punt - + Go to cue point and play Ga naar het cue-punt en speel - + Go to cue point and stop Ga naar het cue-punt en stop - + Preview from cue point Voorbeluisteren vanaf het cue-punt - + Cue button (CDJ mode) Cue-knop (CDJ modus) - + Stutter cue Stutter cue - + Hotcues Hotcues - + Set, preview from or jump to hotcue %1 Stel in, voorbeluisteren van of spring naar hotcue% 1 - + Clear hotcue %1 Wis hotcue %1 - + Set hotcue %1 Stel hotcue %1 in. - + Jump to hotcue %1 Spring naar hotcue %1 - + Jump to hotcue %1 and stop Spring naar hotcue %1 en stop - + Jump to hotcue %1 and play Spring naar hotcue %1 en speel - + Preview from hotcue %1 Voorbeluisteren vanaf hotcue %1 - - + + Hotcue %1 Hotcue %1 - + Looping Looping - + Loop In button Loop In knop - + Loop Out button Loop Out knop - + Loop Exit button Loop Exit knop - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 32 - + 64 64 - + Move loop forward by %1 beats Verplaats loop voorwaarts met %1 beats - + Move loop backward by %1 beats Verplaats loop achteruit met %1 beats - + Create %1-beat loop Maak %1-beat loop - + Create temporary %1-beat loop roll Maak een tijdelijke % 1-beat loop roll - + Library Bibliotheek @@ -1334,20 +1382,20 @@ - - + + Volume Fader Volume Regelaar - + Full Volume Volledig Volume - + Zero Volume Geen Volume @@ -1363,7 +1411,7 @@ - + Mute Dempen @@ -1374,7 +1422,7 @@ - + Headphone Listen Hoofdtelefoon Luisteren @@ -1395,25 +1443,25 @@ - + Orientation Positionering - + Orient Left Positioneer Links - + Orient Center Positioneer Midden - + Orient Right Positioneer Rechts @@ -1512,52 +1560,6 @@ Sync Sync - - - Sync Mode - Sync Modus - - - - Internal Sync Master - Interne Sync Master - - - - Toggle Internal Sync Master - Interne Sync Master aan/uit - - - - - Internal Master BPM - Interne Master BPM - - - - Internal Master BPM +1 - Interne Master BPM +1 - - - - Internal Master BPM -1 - Interne Master BPM -1 - - - - Internal Master BPM +0.1 - Interne Master BPM +0.1 - - - - Internal Master BPM -0.1 - Interne Master BPM -0.1 - - - - Sync Master - Sync Master - Beat Sync One-Shot @@ -1574,37 +1576,37 @@ Synchroniseer fase eenmalig - + Pitch control (does not affect tempo), center is original pitch Pitch controle (geen invloed op tempo), midden is de originele pitch - + Pitch Adjust Aanpassen Pitch - + Adjust pitch from speed slider pitch Pas pitch aan met de pitch schuifregelaar - + Match musical key Muziekale key overeenstemmen - + Match Key Key overeenstemmen - + Reset Key Key resetten - + Resets key to original Key resetten naar origineel @@ -1645,466 +1647,466 @@ Lage EQ - + Toggle Vinyl Control Wissel Vinylbediening - + Toggle Vinyl Control (ON/OFF) Wissel VinylBediening (AAN/UIT) - + Vinyl Control Mode Vinylbediening Modus - + Vinyl Control Cueing Mode Vinylbediening Cueing Modus - + Vinyl Control Passthrough Vinylbediening doorvoeren - + Vinyl Control Next Deck Vinylbediening Volgende deck - + Single deck mode - Switch vinyl control to next deck Enkelvoudige deck modus - Wissel vinylbediening naar volgende deck - + Cue Cue - + Set Cue Cue instellen - + Go-To Cue Ga Naar cue - + Go-To Cue And Play Ga Naar Cue en Speel - + Go-To Cue And Stop Ga Naar verwijzing en Stop - + Preview Cue Cue voorbeluisteren - + Cue (CDJ Mode) Cue (CDJ Modus) - + Stutter Cue Stutter Cue - + Go to cue point and play after release Ga Naar het Cue punt en speel na het loslaten - + Clear Hotcue %1 Wis Hotcue %1 - + Set Hotcue %1 Stel Hotcue %1 in - + Jump To Hotcue %1 Spring naar Hotcue %1 - + Jump To Hotcue %1 And Stop Spring naar Hotcue %1 en Stop - + Jump To Hotcue %1 And Play Spring naar Hotcue %1 en Speel - + Preview Hotcue %1 Hotcue %1 voorbeluisteren - + Loop In Loop In - + Loop Out Loop Out - + Loop Exit Verlaat Loop - + Reloop/Exit Loop Reloop/Verlaat Loop - + Loop Halve Halve Loop - + Loop Double Dubbele Loop - + 1/32 1/32 - + 1/16 1/16 - + 1/8 1/8 - + 1/4 1/4 - + Move Loop +%1 Beats Verplaats Loop +%1 Beats - + Move Loop -%1 Beats Verplaats Loop -%1 Beats - + Loop %1 Beats Loop %1 Beats - + Loop Roll %1 Beats Loop lus %1 Beats - + Add to Auto DJ Queue (bottom) Voeg toe aan de Auto DJ wachtrij (onderaan) - + Append the selected track to the Auto DJ Queue Voeg de geselecteerde track toe aan de Auto DJ wachtrij - + Add to Auto DJ Queue (top) Voeg toe aan de auto DJ wachtrij (bovenaan) - + Prepend selected track to the Auto DJ Queue Voeg de geselecteerde track vooraan toe in de AutoDJ wachtrij - + Load Track Track Laden - + Load selected track Geselecteerde tracks laden - + Load selected track and play Laad geselecteerde track en speel - - + + Record Mix Opname Mix - + Toggle mix recording Wissel Opname Mix - + Effects Effecten - + Quick Effects Snelle Effecten - + Deck %1 Quick Effect Super Knob Superknop snelle effecten deck %1 - + Quick Effect Super Knob (control linked effect parameters) Superknop Snelle Effecten (bedien gekoppelde effectparameters) - - + + Quick Effect Snel Effect - + Clear effect rack Wis effecten rack - + Clear Effect Rack Wis Effecten Rack - + Clear Unit Wis Eenheid - + Clear effect unit Wis effecten eenheid - + Toggle Unit Wissel Eenheid - + Dry/Wet Droog/Nat - + Adjust the balance between the original (dry) and processed (wet) signal. Pas de balans tussen het originele (droge) en verwerkte (natte) signaal aan. - + Super Knob Super knop - + Next Chain Volgende Schakel - + Assign Toewijzen - + Clear Wissen - + Clear the current effect Wis het huidige effect - + Toggle Omschakelen - + Toggle the current effect Huidig effect omschakelen - + Next Volgende - + Switch to next effect Schakel naar volgend effect - + Previous Vorige - + Switch to the previous effect Schakel naar vorig effect - + Next or Previous Volgende of Vorige - + Switch to either next or previous effect Schakel ofwel naar volgende of vorig effect - - + + Parameter Value Parameter Waarde - - + + Microphone Ducking Strength Onderdrukkingssterkte Microfoon - + Microphone Ducking Mode Onderdrukkingsmodus Microfoon - + Gain Versterken - + Gain knob Knop Versterken - + Shuffle the content of the Auto DJ queue Schud de inhoud van de Auto DJ-wachtrij - + Skip the next track in the Auto DJ queue Het volgende nummer overslaan in de Auto DJ-wachtrij - + Auto DJ Toggle Auto DJ omschakelen - + Toggle Auto DJ On/Off Schakel Auto DJ Aan/Uit - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide Toon/verberg mengpaneel - + Show or hide the mixer. Toon of verberg de mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore Bibliotheek Maximaliseren/Herstellen - + Maximize the track library to take up all the available screen space. Maximaliseer de trackbibliotheek in de beschikbare schermruimte. - + Effect Rack Show/Hide Effeceten rack Tonen/Verbergen - + Show/hide the effect rack Toon/Verberg het effecten rack - + Waveform Zoom Out Waveform Uitzoomen @@ -2129,93 +2131,93 @@ Eenmalig beat-synchronisatietempo (en fase met quantize ingeschakeld) - + Playback Speed Afspeelsnelheid - + Playback speed control (Vinyl "Pitch" slider) Bediening afspeelsnelheid (Vinyl "Pitch" regelaar) - + Pitch (Musical key) Pitch (Toonhoogte) - + Increase Speed Snelheid verhogen - + Adjust speed faster (coarse) Snelheid hoger bijstellen (grof) - - + + Increase Speed (Fine) Verhoog snelheid (fijn) - + Adjust speed faster (fine) Snelheid hoger bijstellen (fijn) - + Decrease Speed Snelheid verlagen - + Adjust speed slower (coarse) Snelheid lager bijstellen (grof) - + Adjust speed slower (fine) Snelheid lager bijstellen (fijn) - + Temporarily Increase Speed Snelheid tijdelijk verhogen - + Temporarily increase speed (coarse) Snelheid tijdelijk verhogen (grof) - + Temporarily Increase Speed (Fine) Snelheid Tijdelijk Verhogen (Fijn) - + Temporarily increase speed (fine) Snelheid tijdelijk verhogen (fijn) - + Temporarily Decrease Speed Snelheid Tijdelijk Verlagen - + Temporarily decrease speed (coarse) Snelheid tijdelijk verlagen (grof) - + Temporarily Decrease Speed (Fine) Snelheid Tijdelijk Verlagen (Fijn) - + Temporarily decrease speed (fine) Snelheid tijdelijk verlagen (fijn) @@ -2272,806 +2274,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed Snelheid - + Pitch (Musical Key) Pitch (toonhoogte) - + Increase Pitch Verhoog toon - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch Verlaag toon - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock Keylock - + CUP (Cue + Play) CUP (Cue + Afspelen) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker Intro Start Markeerpunt - + Intro End Marker Intro Einde Markering - + Outro Start Marker Outro Start Markering - + Outro End Marker Outro Einde Markering - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats Loop Geselecteerde Beats - + Create a beat loop of selected beat size Maak een beat loop van de geselecteerde beatgrootte - + Loop Roll Selected Beats Loop Roll van geselecteerde beats - + Create a rolling beat loop of selected beat size Maak een rollende beat loop van de geselecteerde beatgrootte - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position Schakel het loopen aan/uit en spring naar het Loop-In punt als de loop zich achter de afspeelpositie bevindt - + Reloop And Stop Reloop En Stop - + Enable loop, jump to Loop In point, and stop Schakel het loopen in, spring naar Loop-In punt en stop - + Halve the loop length Halveer de Loop lengte - + Double the loop length Verdubbel de Loop lengte - + Beat Jump / Loop Move Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats Spring / verplaats Loop vooruit% 1 Beats - + Jump / Move Loop Backward %1 Beats Spring / verplaats Loop achteruit% 1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats Spring vooruit met %1 beats, of als een loop is ingeschakeld, verplaats de loop naar voren met %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats Spring achteruit met %1 beats, of als een loop is ingeschakeld, verplaats de loop achteruit %1 beats - + Beat Jump / Loop Move Forward Selected Beats Beat Jump / Loop Move Geselecteerde Beats Vooruit - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats Spring vooruit met het aantal geselecteerde beats, of als een loop is ingeschakeld, verplaats de loop naar voren met het aantal geselecteerde beats - + Beat Jump / Loop Move Backward Selected Beats Beat Jump / Loop Move Geselecteerde Beats Achteruit - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats Spring achteruit met het aantal geselecteerde beats, of als een loop is ingeschakeld, verplaats de loop achteruit met het aantal geselecteerde beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation Navigatie - + Move up Omhoog - + Equivalent to pressing the UP key on the keyboard Vergelijkbaar met het indrukken van de Up-toets op het toetsenbord - + Move down Omlaag - + Equivalent to pressing the DOWN key on the keyboard Vergelijkbaar met het indrukken van de Down-toets op het toetsenbord - + Move up/down Omhoog/Omlaag - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys Beweeg verticaal in beide richtingen met een knop, alsof u de toetsen OMHOOG / OMLAAG indrukt - + Scroll Up Naar Boven Scrollen - + Equivalent to pressing the PAGE UP key on the keyboard Vergelijkbaar met het indrukken van de PAGE UP-toets op het toetsenbord - + Scroll Down Naar Beneden Scrollen - + Equivalent to pressing the PAGE DOWN key on the keyboard Vergelijkbaar met het indrukken van de PAGE DOWN-toets op het toetsenbord - + Scroll up/down Scroll omhoog/omlaag - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys Beweeg verticaal in beide richtingen met een knop, alsof u de toetsen PGUP / PGDOWN indrukt - + Move left Naar links - + Equivalent to pressing the LEFT key on the keyboard Vergelijkbaar met het indrukken van de LINKS-toets op het toetsenbord - + Move right Naar rechts - + Equivalent to pressing the RIGHT key on the keyboard Vergelijkbaar met het indrukken van de RECHTS-toets op het toetsenbord - + Move left/right Ga naar links/rechts - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys Beweeg horizontaal in beide richtingen met een knop, alsof u de toetsen LINKS / RECHTS indrukt - + Move focus to right pane Verplaats de focus naar het rechter deelvenster - + Equivalent to pressing the TAB key on the keyboard Vergelijkbaar met het indrukken van de TAB-toets op het toetsenbord. - + Move focus to left pane Verplaats de focus naar het linker deelvenster. - + Equivalent to pressing the SHIFT+TAB key on the keyboard Vergelijkbaar met het indrukken van de SHIFT+TAB toetsen op het toetsenbord - + Move focus to right/left pane Verplaats de focus naar het rechter / linker deelvenster - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys Verplaats de focus één deelvenster naar rechts of links met een knop, alsof u op de TAB / SHIFT + TAB-toetsen drukt - + Go to the currently selected item Ga naar het huidig geselecteerde item. - + Choose the currently selected item and advance forward one pane if appropriate Kies het momenteel geselecteerde item en ga indien nodig één venstergedeelte vooruit - + Load Track and Play - + Add to Auto DJ Queue (replace) Voeg toe aan de Auto DJ wachtrij (vervang) - + Replace Auto DJ Queue with selected tracks Vervang de Auto DJ wachtrij met de geselecteerde tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button Deck %1 Snel Effect Inschakelknop - + Quick Effect Enable Button Snel Effect Inschakelknop - + Enable or disable effect processing Effectverwerking in- of uitschakelen - + Super Knob (control effects' Meta Knobs) Super Knop (heeft controle over de Meta Knoppen effecten) - + Mix Mode Toggle Mix Modus Schakelen - + Toggle effect unit between D/W and D+W modes Wissel effecteenheid tussen de modi D/W en D+W - + Next chain preset Volgende vooringestelde keten - + Previous Chain Vorige keten - + Previous chain preset Vorige vooringestelde keten - + Next/Previous Chain Volgende/Vorige Keten - + Next or previous chain preset Volgende of vorige vooringestelde keten - - + + Show Effect Parameters Toon Effect Parameters - + Effect Unit Assignment - + Meta Knob Meta Knop - + Effect Meta Knob (control linked effect parameters) Effect Meta Knop (controleert gelinkte effect parameters) - + Meta Knob Mode Meta Knop Modus - + Set how linked effect parameters change when turning the Meta Knob. Stel in hoe gekoppelde effectparameters veranderen bij het draaien van de Meta Knop. - + Meta Knob Mode Invert Meta Knop Modus Omkering - + Invert how linked effect parameters change when turning the Meta Knob. Keer om hoe gekoppelde effectparameters veranderen wanneer u aan de Meta-knop draait. - - + + Button Parameter Value - + Microphone / Auxiliary Microfoon / Aux - + Microphone On/Off Microfoon Aan/Uit - + Microphone on/off Microfoon aan/uit - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) Wisselen van onderdrukkingsmodus (UIT, AUTO, MANUEEL) - + Auxiliary On/Off AUX Aan/Uit - + Auxiliary on/off AUX aan/uit - + Auto DJ Auto DJ - + Auto DJ Shuffle Auto DJ Schudden - + Auto DJ Skip Next Auto DJ Volgende Overslaan - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next Auto DJ Naar Volgende Faden - + Trigger the transition to the next track Activeer de overgang naar het volgende nummer - + User Interface Gebruikersomgeving - + Samplers Show/Hide Samplers Toon/Verberg - + Show/hide the sampler section Toon/Verberg Sampler sectie - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. Stream je mix over het Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide Vinyl Controle Toon/Verberg - + Show/hide the vinyl control section Toon/Verberg de vinyl controle sectie - + Preview Deck Show/Hide Deck Voorbeluisteren Toon/Verberg - + Show/hide the preview deck Toon/Verberg de Voorbeluister-deck - + Toggle 4 Decks Schakel naar 4 Decks - + Switches between showing 2 decks and 4 decks. Schakelt tussen weergave van 2 decks en 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide Vinyl Spinner Toon/Verberg - + Show/hide spinning vinyl widget Toon/Verberg de spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom Waveform zoom - + Waveform Zoom Waveform Zoom - + Zoom waveform in Waveform inzoomen - + Waveform Zoom In Waveform Inzoomen - + Zoom waveform out Waveform uitzoomen - + Star Rating Up Sterwaardering Verhogen - + Increase the track rating by one star Verhoog de trackwaardering met één ster - + Star Rating Down Sterwaardering Verlagen - + Decrease the track rating by one star Verlaag de nummerwaardering met één ster @@ -3160,32 +3228,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. De functionaliteit van deze controller-verbinding wordt uitgeschakeld totdat het probleem is opgelost. - + You can ignore this error for this session but you may experience erratic behavior. U kunt deze fout voor deze sessie negeren, maar u kunt onregelmatig gedrag ervaren. - + Try to recover by resetting your controller. Probeer te herstellen door uw controller te resetten. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. De script code moet hersteld worden. @@ -3221,133 +3289,133 @@ CrateFeature - + Remove Verwijderen - - + + Create New Crate Maak nieuwe krat - + Rename Hernoemen - - + + Lock Vergrendelen - + Export Crate as Playlist - + Export Track Files Exporteer Tracks - + Duplicate Dupliceren - + Analyze entire Crate Analyseer volledige krat - + Auto DJ Track Source Auto DJ Track Bron - + Enter new name for crate: Geef nieuwe naam voor krat: - - + + Crates Kratten - - + + Import Crate Importeer krat - + Export Crate Exporteer krat - + Unlock Ontgrendel - + An unknown error occurred while creating crate: Een onbekende fout opgetreden bij het maken krat: - + Rename Crate Hernoem krat - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed Hernoemen krat mislukt - + Crate Creation Failed Aanmaken krat mislukt - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U Speellijst (*.m3u);;M3U8 Speellijst (*.m3u8);;PLS Speellijst (*.pls);;Tekst CSV (*.csv);;Leesbare Tekst (*.txt) - + Crates are a great way to help organize the music you want to DJ with. Kratten zijn een geweldige manier om de muziek te organiseren waarmee je wilt DJ'en. - + Crates let you organize your music however you'd like! Kratten laten je toe om je muziek te organiseren zoals jij dat wil! - + A crate cannot have a blank name. Een krat kan geen lege naam hebben. - + A crate by that name already exists. Een krat met deze naam bestaat al. @@ -3417,37 +3485,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: Met bijdragen van: - + And special thanks to: En speciale dank aan: - + Past Developers Eerdere Ontwikkelaars - + Past Contributors Eerdere Medewerkers - + Official Website - + Donate @@ -4914,32 +4982,32 @@ Instellingen toepassen en doorgaan? DlgPrefControlsDlg - + Skin Skin - + Tool tips Tooltips - + Select from different color schemes of a skin if available. Kies uit verschillende kleurenschema's van een skin indien beschikbaar. - + Color scheme Kleurenschema - + Locales determine country and language specific settings. Regionale instellingen bepalen land- en taalspecifieke instellingen. - + Locale Regio @@ -4949,52 +5017,42 @@ Instellingen toepassen en doorgaan? Omgevingsvoorkeuren - + HiDPI / Retina scaling HiDPI / Retina schaling - + Change the size of text, buttons, and other items. Wijzig de tekstgrootte, knoppen en andere items. - - Adopt scale factor from the operating system - Neem schaalfactor over van het besturingssysteem - - - - Auto Scaling - Automatisch Schalen - - - + Screen saver Screensaver - + Start in full-screen mode Start in volledig-scherm modus - + Full-screen mode Volledig-scherm modus - + Off Uit - + Library only Enkel bibliotheek - + Library and Skin Bibliotheek en Skin @@ -5628,39 +5686,39 @@ U kunt de tracks ten allen tijde op het scherm slepen en neerzetten om een deck DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. De minimale grootte van de geselecteerde skin is groter dan uw schermresolutie. - + Allow screensaver to run Toestaan om screensaver te laten uitvoeren - + Prevent screensaver from running Voorkom dat screensaver wordt uitgevoerd - + Prevent screensaver while playing Voorkom screensaver tijdens afspelen - + This skin does not support color schemes Deze skin ondersteunt geen kleurenschema's - + Information Informatie - - Mixxx must be restarted before the new locale setting will take effect. - Mixxx moet opnieuw worden gestart voordat de nieuwe locale-instelling van kracht wordt. + + Mixxx must be restarted before the new locale or scaling settings will take effect. + @@ -5878,62 +5936,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added Muziekmap toegevoegd - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? U hebt een of meer muziekmappen toegevoegd. De tracks in deze mappen zijn pas beschikbaar als u uw bibliotheek opnieuw scant. Wilt u nu opnieuw scannen? - + Scan Scan - + Choose a music directory Kies een map voor muziek - + Confirm Directory Removal Bevestig Verwijdering Map - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. Mixxx zal deze map niet langer in de gaten houden voor nieuwe tracks. Wat zou je willen doen met de tracks uit deze map en submappen?<ul><li>Verberg alle tracks uit deze directory en submappen. </li><li>Verwijder permanent alle metadata van deze tracks uit Mixxx.</li><li>Laat de tracks ongemoeid in je bibliotheek.</li></ul>Tracks verbergen zal wel de metadata blijven bewaren mocht je ze in de toekomst opnieuw willen toevoegen. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. Metadata betekent alle trackdetails (artiest, titel, playcount, etc.) evenals beatgrids, hotcues en loops. Deze keuze heeft alleen betrekking op de Mixxx-bibliotheek. Er worden geen bestanden op schijf gewijzigd of verwijderd. - + Hide Tracks Verberg Tracks - + Delete Track Metadata Verwijder Metadata - + Leave Tracks Unchanged Laat tracks ongewijzigd - + Relink music directory to new location Koppel de muziekmap opnieuw aan een nieuwe locatie - + Select Library Font Selecteer bibliotheeklettertype @@ -6939,32 +6997,32 @@ Het doelvolume is bij benadering en gaat ervan uit dat track pregain en master o DlgPrefWaveform - + Filtered Gefilterd - + HSV HSV - + RGB RGB - + OpenGL not available OpenGL niet beschikbaar - + dropped frames verloren frames - + Cached waveforms occupy %1 MiB on disk. Waveforms in cache gebruiken %1 Mb op schijf @@ -7180,72 +7238,72 @@ Kies uit verschillende soorten weergaven voor de waveform, die voornamelijk vers Bibliotheek - + Interface Omgeving - + Waveforms Waveforms - + Auto DJ Auto DJ - + Equalizers Equalizers - + Decks Decks - + Colors Kleuren - + Crossfader Crossfader - + Effects Effecten - + LV2 Plugins LV2 Plugins - + Recording Opname - + Beat Detection Beat detectie - + Key Detection Key detectie - + Normalization Normalisatie - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7255,12 +7313,12 @@ Kies uit verschillende soorten weergaven voor de waveform, die voornamelijk vers Vinyl Control - + Live Broadcasting Live uitzenden - + Modplug Decoder Modplug Decoder @@ -7401,123 +7459,123 @@ Kies uit verschillende soorten weergaven voor de waveform, die voornamelijk vers Selecteer best mogelijke overeenkomst - - + + Track Track - - + + Year Jaar - + Title Titel - - + + Artist Artiest - - + + Album Album - + Album Artist Album Artiest - + Fetching track data from the MusicBrainz database Trackgegevens ophalen uit de MusicBrainz-database - + Mixxx could not find this track in the MusicBrainz database. Mixxx kon dit nummer niet terugvinden in de MusicBrainz-database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. haal API-key op - + Submit Submits audio fingerprints to the MusicBrainz database. Indienen - + New Column Nieuwe kolom - + New Item Nieuw Item - + &Previous Vo&rige - + &Next Vo&lgende - + &Apply &Pas toe - + &Close &Sluit - + Status: %1 Status: %1 - + HTTP Status: %1 HTTP Status: %1 - + Code: %1 Code: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx kan om onbekende reden geen verbinding maken met %1. - + Mixxx can't connect to %1. Mixxx kan geen verbinding maken met %1. - + Original tags Originele tags - + Suggested tags Voorgestelde tags @@ -7911,17 +7969,17 @@ Dit resulteert vaak in beat-rasters van hogere kwaliteit, maar zal het niet goed EngineBuffer - + Soundtouch (faster) Soundtouch (sneller) - + Rubberband (better) Rubberband (beter) - + Unknown (bad value) Onbekend (slechte waarde) @@ -8022,38 +8080,38 @@ Dit resulteert vaak in beat-rasters van hogere kwaliteit, maar zal het niet goed ITunesFeature - + iTunes iTunes - - + + Select your iTunes library Selecteer je iTunes-bibliotheek - + (loading) iTunes iTunes (aan het laden) - + Use Default Library Gebruik de standaardbibliotheek - + Choose Library... Kies bibliotheek... - + Error Loading iTunes Library Fout bij het laden van iTunes-bibliotheek - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. Er is een fout opgetreden bij het laden van je iTunes-bibliotheek. Sommige van uw iTunes-nummers of afspeellijsten zijn mogelijk niet geladen. @@ -8061,13 +8119,13 @@ Dit resulteert vaak in beat-rasters van hogere kwaliteit, maar zal het niet goed LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. Veilige modus ingeschakeld - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8076,57 +8134,57 @@ support. ondersteuning. - + activate Activeer - + toggle Omwisselen - + right rechts - + left links - + right small rechts klein - + left small links klein - + up omhoog - + down omlaag - + up small omhoog klein - + down small omlaag klein - + Shortcut Snelkoppeling @@ -8147,22 +8205,22 @@ ondersteuning. LibraryFeature - + Import Playlist Importeer Afspeellijst - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Afspeellijstbestanden (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? Bestand Overschrijven? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8176,27 +8234,27 @@ Wil je het echt overschrijven? LibraryScannerDlg - + Library Scanner Bibliotheekscanner - + It's taking Mixxx a minute to scan your music library, please wait... Mixxx heeft ongeveer een minuut nodig om je muziekbibliotheek te scannen, even geduld... - + Cancel Annuleren - + Scanning: Scannen: - + Scanning cover art (safe to cancel) Hoezen aan het scannen (veilig om te annuleren) @@ -8313,185 +8371,185 @@ Wil je het echt overschrijven? MixxxMainWindow - + Sound Device Busy Geluisapparaat bezig - + <b>Retry</b> after closing the other application or reconnecting a sound device <b>Probeer opnieuw</b> na het afsluiten van de andere applicatie of het opnieuw aansluiten van een geluidsapparaat - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. <b>Configureer</b> opnieuw de Mixxx instellingen van het geluidsapparaat. - - + + Get <b>Help</b> from the Mixxx Wiki. <b>Hulp</b>zoeken in de Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. <b>Verlaat</b> Mixxx. - + Retry Opnieuw Proberen - + skin - - + + Reconfigure Opnieuw configureren - + Help Help - - + + Exit Afsluiten - - + + Mixxx was unable to open all the configured sound devices. Mixxx kon niet alle geconfigureerde geluidsapparaten openen. - + Sound Device Error Fout met geluidsapparaat - + <b>Retry</b> after fixing an issue <b>Probeer opnieuw</b> na het oplossen van een probleem - + No Output Devices Geen uitvoerapparaten - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. Mixxx is ingesteld zonder uitvoerapparaten voor geluid. Geluidsverwerking wordt uitgeschakeld zonder een geconfigureerd uitvoerapparaat. - + <b>Continue</b> without any outputs. <b>Ga door</b> zonder uitvoer. - + Continue Verdergaan - + Load track to Deck %1 Laad track in deck %1 - + Deck %1 is currently playing a track. Deck %1 speelt momenteel een track af. - + Are you sure you want to load a new track? Bent u zeker dat u een nieuwe track wil laden? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. Er is geen invoerapparaat geselecteerd voor deze vinylbesturing. Selecteer eerst een invoerapparaat in de voorkeuren voor geluidshardware. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. Er is geen invoerapparaat geselecteerd voor dit doorvoerapparaat. Selecteer eerst een invoerapparaat in de voorkeuren voor geluidsapparatuur. - + There is no input device selected for this microphone. Do you want to select an input device? Er is geen invoerapparaat geselecteerd voor deze microfoon. Wilt u een invoerapparaat selecteren? - + There is no input device selected for this auxiliary. Do you want to select an input device? Er is geen invoerapparaat geselecteerd voor deze auxiliary. Wilt u een invoerapparaat selecteren? - + Error in skin file Fout in themabestand - + The selected skin cannot be loaded. Het geselecteerde thema kan niet worden geladen. - + OpenGL Direct Rendering OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. Directe weergave is niet ingeschakeld op uw computer.<br><br> Dit betekent dat de weergave van de golfvormen erg<br><b> traag zal zijn en uw CPU zwaar kan belasten</b>. Werk uw <br> configuratie bij om directe weergave mogelijk te maken of schakel<br>de waveform weergaven uit in de Mixxx-voorkeuren door "Leeg" te selecteren<br> als de waveform weergave in het gedeelte "Interface". - - - + + + Confirm Exit Afsluiten bevestigen - + A deck is currently playing. Exit Mixxx? Er is momenteel een deck actief. Mixxx afsluiten? - + A sampler is currently playing. Exit Mixxx? Er is momenteel een sampler actief. Mixxx afsluiten? - + The preferences window is still open. Het scherm "Voorkeuren" staat nog open. - + Discard any changes and exit Mixxx? Wijzigingen negeren en Mixxx afsluiten? @@ -8564,43 +8622,43 @@ Wilt u een invoerapparaat selecteren? PlaylistFeature - + Lock Vergrendelen - + Playlists Speellijsten - + Unlock Ontgrendel - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. Sommige DJ's maken afspeellijsten voordat ze live optreden, maar anderen bouwen ze liever on-the-fly tijdens hun optreden. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. Wanneer u een afspeellijst gebruikt tijdens een live DJ-set, vergeet dan niet om goed op te letten hoe uw publiek reageert op de muziek die u hebt gekozen om te spelen. - + Create New Playlist Nieuwe Afspeellijst aanmaken @@ -8608,59 +8666,59 @@ Wilt u een invoerapparaat selecteren? QMessageBox - + Upgrading Mixxx Mixxx Upgraden - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? Mixxx ondersteunt nu het weergeven van albumhoezen. Wilt u nu uw bibliotheek scannen op albumhoezen? - + Scan Scan - + Later Later - + Upgrading Mixxx from v1.9.x/1.10.x. Mixxx aan het upgraden van v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. Mixxx bevat een nieuwe en verbeterde beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. Wanneer je tracks laadt, kan Mixxx ze opnieuw analyseren en nieuwe, nauwkeurigere beat-rasters genereren. Dit maakt automatische beatsync en looping betrouwbaarder. - + This does not affect saved cues, hotcues, playlists, or crates. Dit heeft geen invloed op opgeslagen cues, hotcues, afspeellijsten of kratten. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. Als je niet wilt dat Mixxx je tracks opnieuw analyseert, kies dan "Huidige beat-rasters behouden". Je kunt deze instelling op elk moment wijzigen in het "Beat Detectie" gedeelte in de Voorkeuren. - + Keep Current Beatgrids Huidige beat-rasters behouden - + Generate New Beatgrids Nieuwe beat-rasters genereren @@ -8844,7 +8902,7 @@ Wilt u nu uw bibliotheek scannen op albumhoezen? Opus gebruiken met andere samplerates dan 48 kHz wordt niet ondersteund door de Opus-encoder. Gebruik 48000 Hz in de voorkeuren voor geluidsapparaten of schakel over naar een andere codering. - + Encoder Encoder @@ -9996,12 +10054,12 @@ Volledig rechts: einde van de effectperiode - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10139,54 +10197,54 @@ Volledig rechts: einde van de effectperiode RekordboxFeature - - - + + + Rekordbox Rekordbox - + Playlists Speellijsten - + Folders Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids Beat-rasters - + Memory cues Memory cues - + (loading) Rekordbox (laden) Rekordbox @@ -10195,7 +10253,7 @@ Volledig rechts: einde van de effectperiode RhythmboxFeature - + Rhythmbox Rhythmbox @@ -10246,34 +10304,34 @@ Volledig rechts: einde van de effectperiode SeratoFeature - - - + + + Serato Serato - + Reads the following from the Serato Music directory and removable devices: Leest het volgende uit de Serato Music-directory en verwijderbare apparaten: - + Tracks Tracks - + Crates Kratten - + Check for Serato databases (refresh) Controleer op Serato-databases (vernieuwen) - + (loading) Serato (laden) Serato @@ -10296,12 +10354,12 @@ Volledig rechts: einde van de effectperiode Historiek - + Unlock Ontgrendel - + Lock Vergrendelen @@ -11260,6 +11318,31 @@ Volledig rechts: einde van de effectperiode Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. Stuurt de audio van het geselecteerde kanaal naar de hoofdtelefoonuitgang, geselecteerd in Voorkeuren -> Geluidshardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12437,11 +12520,6 @@ Gebruik deze optie om alleen het verwerkte (Wet) signaal met EQ en filtereffecte Old Synchronize Oude synchronisatie - - - (This skin should be updated to use Master Sync!) - (Deze skin moet worden bijgewerkt om Master Sync te gebruiken!) - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12457,16 +12535,6 @@ Gebruik deze optie om alleen het verwerkte (Wet) signaal met EQ en filtereffecte Decks can't sync to samplers and samplers can only sync to decks. Spelers kunnen niet worden gesynchroniseerd met samplers en samplers kunnen alleen worden gesynchroniseerd met decks. - - - Enable Master Sync - Schakel Master Sync in - - - - Tap to sync the tempo to other playing tracks or the master clock. - Tik om het tempo te synchroniseren met andere tracks die worden afgespeeld of met de hoofdklok. - Hold for at least a second to enable sync lock for this deck. @@ -12482,16 +12550,6 @@ Gebruik deze optie om alleen het verwerkte (Wet) signaal met EQ en filtereffecte Resets the key to the original track key. Herstelt de toonaard naar de originele track-toonaard. - - - Enable Sync Clock Master - Schakel Sync Clock Master in - - - - When enabled, this device will serve as the master clock for all other decks. - Indien ingeschakeld, zal dit apparaat dienen als de masterklok voor alle andere decks. - Speed Control @@ -13045,22 +13103,22 @@ Gebruik deze optie om alleen het verwerkte (Wet) signaal met EQ en filtereffecte TraktorFeature - + Traktor Traktor - + (loading) Traktor (laden) Tractor - + Error Loading Traktor Library Fout bij het laden van de Traktor-bibliotheek - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. Er is een fout opgetreden bij het laden van uw Traktor-bibliotheek. Sommige van uw Traktor-tracks of afspeellijsten zijn mogelijk niet geladen. @@ -13672,20 +13730,20 @@ Gebruik deze optie om alleen het verwerkte (Wet) signaal met EQ en filtereffecte Passthrough - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13856,8 +13914,8 @@ Gebruik deze optie om alleen het verwerkte (Wet) signaal met EQ en filtereffecte Genre - - Folder + + Directory @@ -14100,155 +14158,160 @@ Gebruik deze optie om alleen het verwerkte (Wet) signaal met EQ en filtereffecte Herstel BPM - + + Update ReplayGain from Deck Gain + + + + Deck %1 Deck %1 - + Sampler %1 Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Nieuwe Afspeellijst aanmaken - + Enter name for new playlist: Voer naam in voor nieuwe afspeellijst: - + New Playlist Nieuwe Afspeellijst - - - + + + Playlist Creation Failed Aanmaak van afspeellijst mislukt - + A playlist by that name already exists. Een afspeellijst met deze naam bestaan reeds. - + A playlist cannot have a blank name. Een Afspeellijst kan geen blanco naam bevatten. - + An unknown error occurred while creating playlist: Er is een onbekende fout opgetreden tijdens het maken van de afspeellijst: - + Add to New Crate Voeg toe aan nieuwe krat - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14256,7 +14319,7 @@ Gebruik deze optie om alleen het verwerkte (Wet) signaal met EQ en filtereffecte WTrackTableView - + ESC Focus ESC @@ -14293,128 +14356,55 @@ Gebruik deze optie om alleen het verwerkte (Wet) signaal met EQ en filtereffecte (GL ES) - - main - - - Starts Mixxx in full-screen mode - Start Mixxx in volledige scherm modus - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - Top-level hoofdmap waar Mixxx moet zoeken naar zijn bronbestanden zoals MIDI-mappings, waarbij de standaard installatielocatie wordt overschreven. - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects effecten - + audio interface audio-interface - + decks decks - + library - + Choose music library directory Kies de map voor de muziekbibliotheek - + controllers - + Cannot open database Kan database niet openen - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14493,7 +14483,7 @@ Klik op OK om af te sluiten. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14550,62 +14540,62 @@ Klik op OK om af te sluiten. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse Generieke HID Muis - + Generic HID Joystick Generieke HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard Generieke HID Toetsenbord - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: @@ -14623,7 +14613,7 @@ Klik op OK om af te sluiten. No effect loaded. - + Geen effect geladen. \ No newline at end of file diff --git a/res/translations/mixxx_nl_BE.qm b/res/translations/mixxx_nl_BE.qm index 050f5d0d6fff3351fd5cf1a18c78e6f7d496b253..fe2514b9d1044668f234b90bc435433f88a89a32 100644 GIT binary patch delta 38881 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

=kW)`d1L9|rT&1Bj(4#J_ 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 Bl7#>O delta 23444 zcmb50cU;Zy|Noz_>$+aAv(K@zMF@%PO}30=lMtfF$jZp*(6CBIX2_nUA}b?%r%)o2 zQPvyToBSTV`rUs2eQ&?t@Aet@*Xwl7>s;e`J)e)~^SX}kn`L%yC~a+he016C?>DWv zX;<;gh;64Ibs*}!m58blm2v>>Nt$$|h>y;wWRZbjePY(~U<0Bi`&6>{CtyROrtiVV zM9n&Z&GBCo*q&I)CtwF+rH+CfiP;P!vQj5vWt{LrXK)ADg;=>{(1loePp}X1klsYR z3m$wyCF?o>^uiaE1-(hSw+&p4`=>-=D!xDlrxAB41I{Ggt|d4Ruh#{Gz=vQkz9$#o zFP5PtXn@#EtaJ*v9S!LR9suWnhrp}gX<}t7fH%>wrr;wmj!46a9Ul*#CHAruQBCyB zsb&!a-+{AmkDfZVB6gu32F#56Pz+F2bVyinQ5_fFAcp#04X_sO(VNDhxbKDGE$rbe za3Qg-2^h}8_gx`s4c?Ce@rB(C7{Goc%{dODBQ|Jw=SL)kRK`H|B(gyV3R&xG5nYz5 zWS6XH3I4#_CaRPx%>bujv_FA6NjiiP0h!ZbqONsFsy1JxTd! z*bu}B_Zvi3$#)bk#t`ehuZU52Any506S$aoHomam7vi(cU;*wiQvJ2KpQ%zzz5!k# zsrpv*_A*Jg1BeE~W>zgLV$R_I&2*J~f9E2`v>;2CO+uPrL(GN0U1sRz=fB#5?^W z=JFjY0JhP!2JuCO%qB4%&$tv%B4#7;zCNIJBgr*9aDk;YNKYdEGVwuUNgVA=QvV<@ zhq${tiKO?$9_&)dN3O(nVM z2$E}$CAn1~ro>8emtL6T-zwRx43fJxA+mESV#5NJEGt+g&wfC%D@Hg5^Iv!&rk%nI zUx;E$sT9*N%mdM*xKS$EfNdoEB%^U{T+y4JvtcbZ}EA;>-4uysdzwJI~Pa?L?Au9Lalfi4A{3a?A*#N8ddXRZ8o-t7KWnRPsj)Nd6s!_w_2G(+-vF96pEF z*?oK;DBD^;k+M60q{<^m!CbTFqe$bJ0X`Zw$|b0CR>`BY`I7qR@wRJFiJ;$<7Mx2_?27^YGrS*b>%AZbY+)oO?yHo8l- z8pGPB+@V^{VC7R8)p89YUh4ok^sY)0^(Th_P%2NgVXWfYeyV-T9?YZKFiNZVK874I z_Y4nKdHy>&4hSK+%xH4N)QIQZ$T95-iC@jBPNTuZ8kC|sou0#=7f{`64M|GBO-=(d zi2Iw#$=!wcwEN@~1)s8_8Pz-CN8;>Qs$Ujv`SDL`I47EToBh;?suCqSQsc(ItXQX) zsBs8-Kr5(8VeqiFrzYxp4Wwp1h3mT|HLvA_;PQ)F&V_N=xEHZ>MiI+(pq444;W8oyNF32i+IsjrCf10b^Tt7*yC<0`Tiv8=ChZ0=Ze(b5mV!~N2O2_se6+U;uFKc zjU=@3)V=8%lKNev?$%LWM5XnfsQZNeSl15Jed$t?s*a}aNlW0dT2S{B z)riG5rtVkpMFVrm)v%LjWHFV(@jJP?BoTWUM?D!nXPiqtE1HSl4W^zR7f3E|qMnyR z5j*4}*6B#r!WX2aU(^>^%4L;urO)KH_ADGx9Jy`ngAm(^ddZ3KT>pwV`c@IcJ5%pL z7l{S;En@f#>OEvRg3dDPeKvwbYBcr!uz{qb1E}v(SbtTS`W}xUY4~mGHw^24**Poq z8@G?xu%Fc5e4Z%!5A{dSrHC)oKNvkYc2^}cy`TZUGJO7Y8h8U=;5e5CzFI>(crgvS zdY7beK}DSSncOSdp}}e79ss6Dx#PA0xMkle3bB-ts6+;5;kBOO$7lhs6n$E+s4 z^b>iESwnJ3nLK=>Nz|-G9^(%aW$RS()zRd!H<2XY>*R595{XMSX^6p|sQjKHI*B4S zaZ$-e*c9<>QW5W+R4LmYr6Jx>O;f;Wh%MIq`7~tFMq+3GqoK-DV&(%hw09z+VGIoo z+DUxsdm0)HA<<+e4PA(y$|*GLshPy8NE-GVHn7K^hTBac#(Zda2aIHPD;oK^fP~8y z8s#;bXzV`n9&(AKN{`7Kj*d$HN8UI6h@b09W9n@nD_eS#Caye3vgSPbg+`O~eLMM` zYlEy^hNZqLs2e}Sx;PO<5Y-=mp^IK?(2y0k10B0HMGMX+TwDM_`H_1 z?QK3$6(j8^10x(&oOYx+lNf!4c3#jEnV!(DcF##n{z$uRt&moa6xzLr5r5c$_J(GV zw6cKqZpRP~{Yd*C9U|_wn_{vz5Nm&r;;y-oN%4%TF{k2&56(GOjl+$$1+(!SMo8ptBcdsxnB^JcGI=~8;F)C(zU6WnrU0<+FCp~ zyA!28hHwq6M7I~fR#rcu4BLDXo)Tpo`3TXGK=(Fe5t|lF_p2t8WKqbfUQ}?U`>BX( ztEN-7EsSJZV|qH*iKyLP%JsG--ZO<>jk!pC<#Bp7%bui7Bj`#e*zMC*5+p+$?cXTEm zdXs*YLyWG!iT)HeVDcOKb3UJ>fqE+VmbVNqz;y`z1)yW9Yg17bV`n zli1TFiTguz-XA5&waiGX4oljJcEr;*NV+In5}C6k!x2Gr_^3)Td$?qNf>kurdPK4r z07aA5MJgSCjigT&sce}jcrbgZ{NjA#y0KEFb+Gbo!zEjH^khp-$!>=Ok*8IvmWBsQ z%cbfY1Bu6Wl4_j5`zyDSYJWy}eqbu%3q^7~cb{aN_fow<=a5^TmFmp|drgt*Yf};I zEVfdE*Zw4K3aQbXbdsk3lA7KRA^P`IYSz%7=yW-i49{%laUD_etkk-0GO_OlsrBA^ z&WXqnB+MIzzTNy5OTnt+? zrAVD^t6}{={vmZ~gSk9*S?clx+J5VNsmrrMzLt7Tfe{5pOYSiNBsXd+4UU~nyi5zp z!>t|?k$KWkk1UewgHgNFyH)fm9nQdDV*`(R;Pz6>*&;yGUu&`F_L(HI%&9 z;q@bZrLiubiJh^P#%}e;`hU|-@?8>y1frWXZfrvmANEQU1+2V6uu5sp3u&Ug14&;p zq=}&&Nc=ZlnsQwtKKhsB{|9qF_mC9ekWMmllLA6<|3@p$+4>sFWnK|=tBTm-wo2J9 zRhnC)KZ)Ppr9f}%AENg&q(C1i)P{W}>u)5Wn}pi6vHh*3#Rsu$`{YW?*VH5_^`W$4)=v`ex=Jhc*GZIAq?I3%i8rb%ZTgPo{AY)> z%_fh;>rc|QeV>UpZ71zmX-m?~8d9vaM-H*gQ>EAe_<|olq}Z{(ME~VWv3^+Juir_r zk!gs6LDHdFi1V@0Qexg5;yIt!K z*#*z9{Z_hk5lTvQlrC>YCbgxubnRmlNw2<0*6a4DV6^-v-8cr78rMQfeZ8EdxecYX z-OY)9ua(ly-Xf`O9qCpR`fe^SmNxa5fG(yL4xqCXnxwLgrpl%a@~s!AU=!iw()NuTnfi841zKfGaFjrvJH z_d1cVoi6>ZpMe-KRQhwY42e4-j74B1#_VJ4*==-WCDV8yLrSuKVw#Oxi7)BQ%ok1| z3%nT-xLy0m>KN}5Tj35=qrrdpC^8)EBJd<6x3& zC9%%McOY{PW?h5sl5C#GdJNb_v~s^nF{U!>k%f`@bd~jtK=fP@!g|+^K>puxmwLf2 ze`39t=&(+Iv%YKLi0s-h_w}j7cHU;gd*k&nHQ4YSn7bvL+30_;?oaKRcM3*i?sPWR zBbg-Kem3?a1WD2^=DU0mv2~$rT;6x2+&{nq62&+hUj|d#tv;LVm5!09%w{)u3;qAn zh0QyfNz!I5vo^vT9#2szPQ7Cb+Cpgb|H*>ie?lS>%0d_(q?yS=&LcJd(tw4ep;lm6 z$3hD*1vYxNct`{!S@9y)J*QH3n#&gdgX{h>h=tciO6M-I<xv6^PFyt+uiGJdeU zE^tUA&RbdDX;eU_tz&s#5XEvwu@^NVq4w-xZ&o353AeKMI;h{y5$r=VTM`lF*w0Q_ z@AuBIpNp?y9p6&PT2(9Jfqm@fQU?;>bJ@>JP`y>}v0nkOnQeCL*WPl_32oW$XK}>u zO=bmggNPlpcIHBD$zLwtnog{9J+6uNBeA$U*W7wW;_5oCPd!g!%pR`4SCXXTCa(Wn z_`#Lj7%mh2+{2C6F~@x@+?0x`%hPjnbRg23imk<*UI`D?&VO0I9@Wy*l)zJC#77Y>3*RS9$yaO=A-FTaEW|H}8 z-Zp1Cf>mAKKK~esRg-u}$&;+SeotIL!8AC@J8C)*`*eVJat%cb-|$YG595ng^3IRF ziBfWT_bG^e!)o&G;rPOvJ$U!bRhVNPcPm_er6Z6Ez^5PHSj2O7e88G+MC+FFL1X?w zQN80s{O=Jzu!;}akL5hZgAc3O81)|~8$R5%1c^yM_=xC^sQH~PVwFXF)E>CX&bEB? z8l+}*&vBpXaqwvQ+-EW>+iQk!-vkD~5y>Z3I!JWw6rb3pkVZbO<_@Cdcs{K+8ocfU zpH4Hu;(Ypm(Zny=@#%#PTRRK1c0>01kIxFJ28VEr&l`a#x3n~$7gmn=p<3L!u}}|i zZatffT3!&hzKkZ}`jgKuyNIN(jd{p)Pei}VeBm)Dpl;jwqOsM9+Q;+o#lA%EY3TDsaC|#TGky8t3T70iGx?EBXu$Xge*A?KvC!_^dgh21@yKj`sqGWu&)xYI9qRix z8>p0PzTsE@D^-LG1n|B&qQHBuD6NbpMst(>CCeW zKiFXoe_91T-eELsGa%?aaQC!(S5xenk(P@|v7+Pz zTgdipqU3AzFyM?RQ)>){x{@fr?Go`{$)ZAoeo!}?M1^Gt=cB(0+f9g?R`&;@a)Z$% zOtnNckN!j>yhXK*7qRSqiRvyLNPLVG_I_S)v1U=D@g0&re-<_7b|Se<1ySR20X*Vc z;V{CCLi8e0+qWAwF1Cu=LEDI5DJ$yqL@byzN!0mP3``UCo~4pVND&RkM-y8!PqgWu ziuzxxKEhYHR>pFy?e=H_miYCe}qrR2!v}};S>9n*s7XhYll3H)OPA(i+bmdf@+PtE>^WpW$c$$oXl!v8I|HBr+i|gL3F7zT7_loBj%VpC zvAZc;?Z(9_Skhl;&lU@ON`#r`kY4_xwG#6)Bh?=1^! zOvFj?#?=EJiW~ zg7Bcdw}G~}KL}RFeHv(o`#i8Z?*CeGVNbk|Bj^AQ7BQO}pyoSKCGUF%Y>4|EAfjYg z7T6ebX%R68`Vr#|L~P73Vx_-`11r9e^t+dc^F-pZDMTEaJd$X5cahlsF43=ZD#fj{ zBJr#{$x1(QwCgUE{jJ}`(Tn-SY}<4EuM=@Ta%%l_lTv8#f`J)NyyE_t(NDJ|3Ao3FSyqvaVK&r@r(1s-Jx#8((8!3!#ok~+(qVmR6>t< zt7OJ1A~P}sHgH_r$L2F19Rxxjj7}C0=RGIsWijz65e9#NNUY5}jX&?_J?&sy7zD2aF>T;wSzd zLM@0@5CsE6iM4z!ld&Wu+B%u~;ZAarln~$gzlilUEF;Fm3 zujF=e2I}@na=X5eUUL@6?M`hV);~gS_rZmvyVK}o(AvaO2g+S8IFaa4SMC=3AMrCaWowW0cEsLKmU}$G2PrHvJ~M z_JO8Loh|p8D-m0AULKH&p1LoV2S%c2flKAVo`J;XSC>6{z_*9w${sP;3%asa9yX#e zQBEy+MCVxS8BLH!xVSvniY!M9| z%E}X*z*_g^2`do)7mSi8K&r9Om$KiI^KjMHgYwknhl$E{k^KjMg^bRSXVrvme-bax zN{zs2ieK{VYZHkIOe)2lOnFYF0jL4(k>?h^{?8=O8;z-Z)=gd%iB)s=yu7%_Fp^sD zkQXPo;JG(d%5{6lVe12l$Jdp^>-QkmCPNNyI)a3C>0vp%-9jAu_#}sSxkOYVOr=!r zOA(Lzs$|YpRLXT1%Hf53yCu?8O642K;p5>CT0c@LmgdUgDbS1q_Z9JBdzE}?n7sU8 zA7bBk%FFMTgV0HqBeibO|F_4I^daQrnRfQKMSJ29vycQ5$waS|o#}hy6C~xk72iLZjxAcUZ zzEVlv>VnnqSW(IM&yaT(Zns6wlXu;1fs*T0dGBRAVkfrB`{!N2GAl3d55s!5^OpBt zJwsB^CzT8~S9s6Yb(LdQTTyB`TThPDuP46#h8)-FFtl1Z`SAKH#EP5bBRTfa>-$uS zt2+5;)qf<#w3d&4#_Rt)P5QROGFTRIWPiQA!!UmyKp}0z3aZwS^8Rg5Ll8Jx) zCtt5yf%v~qa!O$dbzc)X)dSJ+vW=Wp-ht?Jx_s*jbiZpQ`HogY;)I)=-XE)Lk3~+; zgkD&%T+VFnhNC(=Rmzor%VRQI!gCiSthRnGYVAH&>-NGf2+WASJuKPtHq3H1yafKQDUxnSs##Yrbg>QdN zQk(k<-}e=@uB?8Fd=X!yJ)&q(aOF|nist1K)F+lJx=d^dJ^iAXD#6xES`^dn`9x>d zD8*8oam=KlQlfk)WQ9p7SyBggbyy`U+fgai=_xV0GfFA1OeE*s6q^m$u(5lqRNjfT zGNhtnwo!-x6>25 zzDQ}{5kb7wWTjcSwH3CCdn&DsE3nuuD6I$CLYux<+6+aEn!QPJUcVioqNUQY=PH~} zl9Z0;O2V{eDP2~tB5q1lTqb%Em3~`9hm9)PAe=g^@Oswd;y8%3}tV1FlUXj-ysqep;OBK z3oCJm>#ef?r-aNYuUpl(WTPtUV7XXNw;pIzCUiu-TdD z;(X=OrBoc;nyFki1wwYLRW2_@c_L}5a&-zi60=OX5t&bPtge#M!5Lb&RJf9oiOsM& zF-mHo$i6XNN&Ns%-ZM?Vm>xrqD^M%Tr5J=9ci~G57gg6rWTWR>c zt+1s|8hN^PG)`)+*C;D6=Qn~ix~KwFaMo#z?E|6U+%-mMU*_(iF*Oe)F|m@y?2K~5 zh+-P^VKYe!k7z7QwImkx)D(OF7)kgzO$p{noUPZC8;>FXdPq}o4G!>`daIOc{LoZf z3m5*Zp{C+psQr)Gno3sZU&LBn(NqndPtv33nnKadE;dprSH7ZgDE6GF{2-0PgL9|` zyj3aJ8?JF&=tOd(G)=v9ZzAI^l~Sppnx=XT{eQDG&ANFaohYwqz7ahh^Ig-b-cY#Y zKAP4+0mKv1G;Kr=5?&!1Yn$1hh(EZe>9AoitlUP^k-^uOnWE|CaTa;ZSC#zdF->19 z60QYxH2ue;fEsaC(?1|tmB)%ZNUMq(dn#<_B02fQ^?P(l`EG@9u#=xN6=&79!QI7WI+Gw)<$qCHnN zftJ^VEq~1dr#r-7Ow=s+Vvnle9L=H>9kKSL39DF{q`lUmny{&jiLZU32|Mcyd9X?o z_RWdJ=kJ>E5s;uR&YJKmtx5d+tO-wB2PGF$#JY1d%RGMIw4b6`mX}Oo^$X4N87+u) zYo=NL9aB)!PqXUWPvTo|YF6jgCjOXd3KgP6hc)Y~L-~DtqFKN4BG!LcCC&O+^u%+q zCMp|7r<~SouH6kOX0B$d(@0{7#@mjfL67EXww;S3s(4Pbb96H5p&vE7((uLeXKD7t z=aXn~UbAmj4oPb+YGQ|4!G@YR3I*qA;^+K>(OuCL3ODxRuIA{euc)JLS7{YZyK9m{ zAPrj{)tr2U^}i=tb2=2Rartk}8NX@7mJZaMz1fJEE=hCoQU+1+gDU0P*ELtxM8gIW zG}o5q6ZZtiLyMS1yE}E|cKVv7UrsmrVC_>M= zn(r&%F?Vy#kH2{CgdokY64t|rVz)HE;ua!|9?%p@CrO&E`BxvQ;&`j(-ykpI-#2P$ z5{B}Dn^rmjt8e;A%ZCdbx_e*5vbTy@ZjV+zu!CslJ*}xFY$>#));x7Ev9?FGHlBS+ znqN$7vo?;zlv>&{Q2XM;b8T5`<^__b%-2?^GJ=>-X>FCgFCntGYpWb|gV8P0R{8jz z#EYw1``tT9xc%1Fr~}8-|CF{yUHJG4Y1$fZ;DS3|*4A`}Eo>Q}tu?(oNw(42I`;xe z>Uu_7xA`GhKhxHIjs)#ikk;up8t~UW}cHdEWYeE~AE0ooSJ(4)gC+7|2j6E8hd+Y;yBc+LWCD>j6rJf>~s1VuD2U+c_m z;95Uw+t)md6CGz&3gxM`qa8r=5Y7PhYF`*LV_}y;3_ubMxTiZ@Osb|AA2t4bv_Na>Cx1MH^Ij_^#d1BK~}>4T^(f zvidk^gEw^`YGTlaD)uBjY^@EA#`=`jX+x7*LcjHd!DLk9dTA-$LOczrz3Gg_PUtS0`WiF%dHuuyxW)OFb0p(1t~23oI^~EHs#tSXvO;4ly`~P`#xU83xl;cc_Put zbd@65L3=as649ya+B;4ch`Nu_-l-oB+ep)9STh4j&`s^VtpV5q9-+-Chi!sY!?jQ9 z*g|AB*FG%{pFZ!9Ha{_+M0bDf`_j22eJij1Lg;CqMcOYPkQ?8>p#Am}(#p6}`+M+e z5_Ps{|M)tuG+`Hux67=xki$%dJsnBek)z|RoXn zqF;Ai{b@Lml~z{QFdMeiYKN}bNYu_AT6N8BQAhpcu4`UdNBndfU5hC@h&8nq)3rE^ z^!fP%U3+Lg{^EhIW8i0m%NaVCh$Nh6>aXiQ9aC}OmrCJ(NY_2v8%4SDx}IYS(4%oG zrG=$+J?}Y@80M+#RUFIi+-+U&0bV5hrs?`Lfj_BtSvTlX4)Kp$b%Rra`sS!jM9d)DLV8bLJQ>BvKI{!gtH1NI7|Bf@N{q=MKACSea zo~E0fcOSYxLubXhm)0KCEm&(Herk?N;dMqAoMI+1$Xyqljw)Y(qzjpfaK5g5Arb%U zIqDWYfpC~!L$~x;cVcP9bzwbG(K#KbQmiLkxIacH?tv~s_C-U?x`+r9NhxD>E4Ke6 zYP(w(<$z=}#YeZPj3T zru0>}^@mj^G5ectTOfS*xX~&_0|(utg8Dp_P3-Now%;djDy7hgtT zTe6t$a^+7hA3Y^vVg?n{OGbny*OGd6vI)_HyLxsC_uW18;`-G7rBxN_z8|yTNfKv1(M^9o~*Xb=U3yA%2*H7x^(^<{mHd*g_gd8Dt|9>F=QoZfLDCM2P)zOG9kq-rU>)A0h5O{euv zH{DQFysWR+700)X6ZG}stY+-hAJo^M;7j7Hq;Gs}G|}Ca`X=tHu$A^!rI-+{Z>qgR zQdGRYsn>1%q9s-DocERZl)CzMH(-*jx~k;Q6Z9Qcqb@R|s=i}sOvUK{eJ9;?oMsBr zyR1h>_q3P3t7t(KzeeA+!F1HT2J3rRrChAeczut9*b>`jqwhI74*RsJdbdD?g0YSC zz3aiY-;C4`X_G^&YKng73G7Pr->x4%37OgLkNOeF=%gNN^j`0iiOHArqXxM_j=a#1 zZVkazI;MyY!&FMlw}_$|2>G$ZsJD72RfJI;)2kFy^<%3-tA@Ji$IhHU!q-_p_CIj) zBK_DO-%+Ewt&+#t>3tu5L}hxNe!^{zBlczWlWOM^-|M5FkuV4ze64=Q1?<<(`K}L0 zI)e-@Q$IWIJIVMSt3HYN>WcdLbD{V){ApftpPeAfqU!`#+0>w{ALVbxZB&?C5m z-X8jp$*5`d)#^hw!fJ1q(JwaTLkafKhb4T5qI1+QTYrRDZ7V6_^xlGkIs~F#=k%x{jHG4^jkLTh_zdx z-`YN!ctIuo*8HiUkA53{BUSDj19Z%Qq8-I=H&Qg6$MSpCUPSVG;c}g^Ww?4KFme<$f`uL}_NG_eNPe{E> z?0F6S!6EaBeeA72n9v`7p}amZ-3~ePG5z6qTjCWj>5n&UkDt*s#f;oR-C|H{mAr3+ zO1Va;{$y9^9saP0+V4ed(Oji$*IJ+K0ps=Ftxvu=4ZD*c^k?rvuefZ}pX*&{8-4T_ z8g(Sv9izXn29DKZxc*{uM377${nd4sh{ZnDUt8~l^=~^ypYk&peqgRX4aIRWC03u- z_6&BeP5N7%mSE08^|uXMh+78f@61Lhc@v<|uumlsRa&316!&je>hFGlP0U!U&$(!e zx<_aIldP(UUHkM;*FnRE9@M}17f1ZlRsHL;2Z>*6t$*VhN1~ON{^LWd7dDO(^A*lu>m~|PD`DM^=)HllwE?v!s3SJ;w15tL59|vY}CR=8k`43 z;0Mxs4eg#elX&^ZVC|4O3dbLs84AgMZ8UWG5=g=*3|$vN09AQy=r>gSNqCmV*Xo`X}) zRSd&_!2>=HHH;`X06)99VerDvxwu=&Y8bTvK6!nhVbu9XIJ56z7`?U>u}^;uV``?7 zSUc1(zOFNgL$eLz(-N_tlW3S^--l@KbHk(>n5ucl3{!$UN$hN7nDQbOC8tV;84m-A z@Afy$WPMS9aW%|rkKpudxFNXpFA~9<4IySD(v7Z$&;w3z{niqO(4(P{5lJdVXtrU| zW>|CioFY0kSIO?ZF)VgOUE^IbLs-Kn#D7;egm*y@c{oEQ-`c_uz8S`+?`v4*3V+b9 zmSM%z)ez_7469DHL)9SNu(~+Thp;%q+M0+R0b2~~r^De{wJwJBueYJ@&=cGaE;B?m zMp7--88-C{A@XdelDl6tY%4byKLi*X zyLUZ9Iia#j*|CBl_5vFCXRIM^102z^$%gnNI7Tg(=wyh`f}$H1YB*T?1$^>3!=VuD z+;qq`94qNSRIIs5sZ1%uiQpl`y;>Pg{fA|lz0Pp@&`(t9CK{5}_d6TTG)4|wd$r-r z-Hs&v$Tpn!&m!qXcf*CT60tMy4VS~T$QbJxuIMq6ABGsNd|3nGak;ADdQ1+nM-L1s zCq5&GO;^cceGF+M{YYH1HQcF=UopQm88TgSkxIrHG9SPuJhBZBqEeAwWE!#^5IwJ5 zF=Ve=N&NbALv}1&?Dc_$$NGE{D{mVf7nZ0~ml&R3&cF}K0t{~+2NB&GVt6~)>O|!5 z!0`UVbmC3M89pSGBFQzt@bOn8;v2pjK3&6d`Zmw-Q|e1%{1wB`0Z>N4bqzmbG4w$P zjcjXY{EG-fjU00+9lUAeGcl)Kn9*Q@=NlSpG%e3TkeO{PW-TDL=%cY%STa#PJ7bAg zC`&qPjb*G$VAZ#rj1`Y}gOzSFR&MNz4dYa!UFDr5tzKfRdIrTZ#m!jt+&YrJyBO_v z6-Sl-hOt(_7m}VgFgh{>mv8?W9j_OVXy;{g{A(uBzKOB!Yj`~OpGKz}<%rG~H#+4( zni>}w8~hR^ZHO{9sSYW+?zz$0^!;sA-QA7N3SU^8u2PI^X>483jYQ8(W7|p@a4ffs z9Uw~SX=jz<^aNwa0vi%@n;SdZq~g$*$=KN+Ms*?2*rlQav4u%Smm%($`z1z~RbPmz z>{2NmIjoZTzc6<9fX*1{V>Nc)*a_#hOh(rWw~0qDG4`~<+@5ShPoXt%)dad>(@g&&j z^#y#KU>vnM8&$q(MsM2!67CsB@7~EITC6gT2{}X}D9JeX2`W4TbByB_z%RT$W}IRN z?bmI#(ZBR5gxxX5>9w3-OI3|C`bCp?-`O~m!4|CB`Wk22?jnjPX`DF$HLBxr#+j&h z(r$xsX69X@?eB~Mr?C}$?}IVm`3n@!w8lBTVZ|Z6jlnlC^ygxYi(~V#8*rhBj-`!D zA9x}hFHkA=?=yxCibLLX${4W-9ho}KxcXHTb`y&k*I53dw3PhBxON9VP~f3bq?b2F zN$83BnK9~75)KQ=#*N90+t2T~A z`6PV^EO_{bs|x1qVXbwQI&C0DGV!B%Jw~s zS4O@;PD{p=E?;4MSBy8a7T}-VXllH(Jc7i-P~)9Q7_n1^F}?aVWcRVgyC3 zGaDeYX;IU7ZyqGqhAiX#N`WxCJmaJDoLGVm#0MS?Fh2hG6)9q-@yTNZn+AuBc|$Rm zmv0!KFLxtea;x!mSu;s#dyTK{v(S)R#{YVLA$}>r_)$THWomhqqUlTHM^C)}?>6H{ z>-K!a=_$rf_u%V2bjDxx(Gbh>B35{4{C5-^s)O5^SOnB>>If6tKalv$#wOv1FIutH zq_bc|0$-SPKc^GRdSlY>MiPGHk4gU{gyiZ!Os4!;k|vHb6^r+S$7H7B!+l9=A7-*q zyij0WYO>mV$RW|m$5gr`3MswonaXT|r`j^hRG~liA%Yi~DsF)&y;;Fj@m_Bz9XnH{ zp|I*NF{Vm!bxEXLHdUVEMxu2KQ3Rs~!zP((^~9N;hdPzq zYqP2L&_wJGmNq%XLpwH%w3-@e@PO4NOijZ}q53x1)NJ+Z!sE@RW^wRbgQHB%t=>c% zo0wXl^d!32m|8aOLgJr2_!S%n7J%{KKjOVdnmT#F zhW>p41NWZ9a2duQOPu+ z3!>rtV1e8H&e6Y+R25Cuoo0mFK-2un zh})TqO(A)1m=cpp5$s`FIG{L!Qf<@1W1ERLK5Sajy9}|MlBQ*Tcd$y_Ov_FUCjR8N zX=S?{B5hBVa+Qsyb=C3QWi?IftvLVC?W}1-Vayq7Hbu?D(GscVchlaC4%lzBGwqv= zIU5pUigmChQDTZI_RdmBt<9#m`HrYn8%+mS{v&DMc2m+;tnVnZ>BRVG5@? zIvQv?b7&kO4YjGNrl-3d zkSBC7~g||P-kG`f?|1P3pVljR0gHFMRm_`CZlv;FW<#7ed`*PKy_$Zwt5 zp?3+Qz~R+TA?iO(@Zh#pXFr zQ;EObZC)TH6EB`^4myvXH@a^QwxWkw-_0QbOGx~8#T?pP5F5VO9NHTrR=TN5DU_L) z>`uf_YNnf)d}@vD%4z1XHOVBp?lFgbL_#CCGe_P_CGph5ygmuf&rCN*MI6KWuk+3v zm4}ka&rjyf_=lwU@4@EnM@ACAF~hvW#g~}>B=gSgD8cl1H1GV;A4lo7n)jB(R79*a z$L_Wz{=T?5Arguw<)ZmuQw;63k>+Ff{fPCfZBCLAd^XsbPc{xDw!N(R^w~J#)d!iA z^N=}3{bxS&wF&Bf%~qPvS~|jdEh>foNb}VNWsqupHeXv%oyd@AzKJQ4revG%lt;YJ zsBKO+=E9ifnKPYWv<`mehlS@jrwem-NgN*vxq1on z6KuBeXZOrc?j!$aJyOljUb~T)m}JgPN2N9)-kkdyWwasF%+EJtL^?e%KR^Buhh*-V zKd(YEd9Q`}i>EzNvx(+k*%(U3&A$sUbx-=3|L%N>ipY4CqD5tM!AbahF~|I`0w}LC z|2qNWzL;(PcUeZoHQz!ltsRMN^RcidB}vMiVPOgIU~T7G5g+s%ez># zSIor9^|t7bBCel}v>13p;$v1@40?!EpOqE^%5KugSr%hnD9NpCEv8e>MAJ6F5qu;% zIoM(;yr0rrrD(d;Qfy)zV$OX_acdp;^bN%<#fKuHXj{WlYAHiu@wBB(Ck)YvdzNw) zvvA^LkEO!v0uq%TTkK{=5YJ7v*n3QY%MP&AI04S2m~1(l0Ibc0qE@NVU{=Xn{;>yrn@frtVK0i?!i#H{yTJTbkfsu^{)CmZr5( zU_7_Q(xRp6TUtBjCCR7jgW~B2Fr6X?-46 zzOS35Z6uZ_wY7AZf0&r{l%>a0c+7~$7I)N+srfw1@GJOyOtRH7x^+3?rhyjk^KFU! z8*1^5?~gBdtWvHp&oVA17<2kkrCcl2GVZ-6Vnm*0eB)`*^>&s?GL~h2kY!ReSL_n( zwoLhe2b*hI{G-+opWVU|@I&B?%r48E!+yj+^tUWfF!Wn;Eg>GCP))OzvMg+aLP6V+ zmayRll3TX4go{8D%Wqg#hP@^>t+ZurcPEU*Rm%pOB%+>mEt}`Xkx1@iiN1`UBz3iH z2_)2tye!+s&caAtx9s@bpQPVwEIUI7;5fo!%dXT082U+;Jx8%D(|TCq9I>rfA=?u7 z5udkS@Uz6HVoqE~S`w0zaUkNLCE>0!iC%Lphn^;qw10{v5g8Aw>TNmF5@q<|PL>nR z&?Do2mQ&x#K#KLUB(K&Xxtwe{;{=bk>V)M?mN(HaSIe1ic<#$^%f$tl%IkkEm&du0 zC|kpFtwIE}qOD4+_%d9*5MPU45MSq8ZVc}Y5h*MwB~ppE)LZTh!;gmQ4z%1Eg`RKv z&vJLDC$aQ&%iY)gaYoJGa<6djdv8_C{gPNU=G!VIn-t4~s#u;?8(SW>8%%Qfc9!f4 z67iT_mPfCmamMYACFlELc)HFmmM0_7^DfzzCzG2HTj6iXO@tNqd1}dPh@U@3$6DT; zc}t?NpCx|{6w#4gmT$WUKu+IODVjC1{1}dSKdP$b&-i?(<0wnP7%vhZ+xucIK3}(K zzT}iRtN;7@iK(l*IMnS#1Ie4F(gYfb|BRt3sXqE|NMWpwVU7nt*!rWk5$|HKRyg?{a=k-du&rx7{8Bm*4Z%_ zTi0%kZD$PjVC@_Vm;e*D(ZS5h#yUU+C8fPxyLP>`kFlu?oM0ddOdC7~Wk8e=9gmSk zj*nyp0t*QwJQM{c&fxLNJPJT*-9M?nkMbNx99ur_xpX{@7McJ58V&Id+Pg_ z2y-WMRU^o>+$R&LE$3=EOO(!(s$mu_DvKmi+m)4F{O}wRxhq|tHZroj)gt+h<~k#>lv(S|b&(_QXRxDY{9Ko^b3KN3gch1IQGN zE(j;EQbFo~Fw#dd|oM=^b)5E*IwI#EYc*NBx&Y7=iy zXTSG|jfJfJvS{MjtO4AhHFF98tL$7l;*@pVp>7H%N-;^kK0FrE;;N~ z$Rc6C1H|C~b&xRpb`6=WqMjVO8{-ri#M+393_R>%B>cxn=pX5-$3#9lBdH}p;I8s)bj1HEeIC(|c1NKgN& zz*vo(`=TX6XV#H8hZ}Te+R4qiAe9*C9R<6i! z79f7FtyNKYC}6XDf&}ERECR2ArxRlL%5-ouP?Ea<&(QJv=-Ov-5nXXoh=*Ml++2v3 zWg>$~(X8?WcE^q{WHbAEj1jBegc~*N zZU{jqp?`@cchowifFE diff --git a/res/translations/mixxx_nl_BE.ts b/res/translations/mixxx_nl_BE.ts index 483b13da4b2..49b506779f0 100644 --- a/res/translations/mixxx_nl_BE.ts +++ b/res/translations/mixxx_nl_BE.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Kratten - + Remove Crate as Track Source Verwijder krat als Track bron - + Auto DJ Auto DJ - + Add Crate as Track Source Voeg krat toe als Track bron @@ -43,25 +43,25 @@ BansheeFeature - + Banshee Banshee - - + + Error loading Banshee database Fout bij het laden van de Banshee database - + Banshee database file not found at Banshee database bestand niet gevonden op - + There was an error loading your Banshee database at Er is een fout opgetreden bij het laden van uw Banshee database op @@ -71,32 +71,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Voeg toe aan de Auto DJ wachtrij (onderaan) - + Add to Auto DJ Queue (top) Voeg toe aan de auto DJ wachtrij (bovenaan) - + Add to Auto DJ Queue (replace) Voeg toe aan de Auto DJ wachtrij (vervang) - + Import Playlist Importeer Afspeellijst - + Playlist Creation Failed Aanmaak van afspeellijst mislukt - + An unknown error occurred while creating playlist: Er is een onbekende fout opgetreden tijdens het maken van de afspeellijst: @@ -104,144 +104,144 @@ BasePlaylistFeature - + New Playlist Nieuwe Afspeellijst - + Add to Auto DJ Queue (bottom) Voeg toe aan de Auto DJ wachtrij (onderaan) - - + + Create New Playlist Nieuwe Afspeellijst aanmaken - + Add to Auto DJ Queue (top) Voeg toe aan de auto DJ wachtrij (bovenaan) - + Remove Verwijderen - + Rename Hernoemen - + Lock Vergrendelen - + Duplicate Dupliceren - - + + Import Playlist Importeer Afspeellijst - + Export Track Files Exporteer Tracks - + Analyze entire Playlist Analyseer volledige Afspeellijst - + Enter new name for playlist: Voer nieuwe naam in voor Afspeellijst - + Duplicate Playlist Dupliceer Afspeellijst - - + + Enter name for new playlist: Voer naam in voor nieuwe afspeellijst: - - + + Export Playlist Exporteer Afspeellijst - + Add to Auto DJ Queue (replace) Voeg toe aan de Auto DJ wachtrij (vervang) - + Rename Playlist Hernoem Afspeellijst - - + + Renaming Playlist Failed Afspeellijst hernoemen mislukt - - - + + + A playlist by that name already exists. Een afspeellijst met deze naam bestaan reeds. - - - + + + A playlist cannot have a blank name. Een Afspeellijst kan geen blanco naam bevatten. - + _copy //: Appendix to default name when duplicating a playlist _kopiëren - - - - - - + + + + + + Playlist Creation Failed Aanmaak van afspeellijst mislukt - - + + An unknown error occurred while creating playlist: Er is een onbekende fout opgetreden tijdens het maken van de afspeellijst: - + M3U Playlist (*.m3u) M3U speellijst(*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U Speellijst (*.m3u);;M3U8 Speellijst (*.m3u8);;PLS Speellijst (*.pls);;Tekst CSV (*.csv);;Leesbare Tekst (*.txt) @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Kan het nummer niet laden. @@ -514,7 +514,7 @@ - + Computer Computer @@ -534,7 +534,7 @@ Scan - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. De optie "Computer" laat u toe om in mappen te navigeren, nummers te bekijken en te laden van op uw harde schijf en externe apparaten. @@ -647,12 +647,12 @@ Bestand Aangemaakt - + Mixxx Library Mixxx Bibliotheek - + Could not load the following file because it is in use by Mixxx or another application. Kon het volgende bestand niet laden omdat het in gebruik is door Mixxx of een andere applicatie. @@ -683,6 +683,89 @@ Het bestand '%1' is leeg en kon niet worden geladen. + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + Start Mixxx in volledig scherm + + + + Use a custom locale for loading translations. (e.g 'fr') + Gebruik een aangepaste landinstelling voor het laden van vertalingen. (bijv. 'fr') + + + + Top-level directory where Mixxx should look for settings. Default is: + Map op het hoogste niveau waar Mixxx naar instellingen moet zoeken. Standaard is: + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + Map op het hoogste niveau waar Mixxx moet zoeken naar zijn bronbestanden zoals MIDI-mappings, die de standaardinstallatielocatie overschrijft. + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + Zorgt ervoor dat Mixxx alle ontvangen controllergegevens en scriptfuncties die het laadt weergeeft/logt + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + Schakelt de ontwikkelaarsmodus in. Bevat extra loginformatie, prestatiestatistieken en een menu voor ontwikkelaarstools. + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + Schakelt veilige modus in. Schakelt OpenGL-golfvormen en draaiende vinylwidgets uit. Probeer deze optie als Mixxx crasht bij het opstarten. + + + + [auto|always|never] Use colors on the console output. + [auto|altijd|nooit] Gebruik kleuren op de console-uitvoer. + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + Stelt de verbositeit van de opdrachtregelregistratie in. +kritiek - kritiek/Enkel fataal +waarschuwing - Boven + Waarschuwingen +info - Boven + Informatieve berichten +debug - Boven + Debug/Ontwikkelaarsberichten +traceren - Boven + Profileringsberichten + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + Breekt (SIGINT) Mixxx, als een DEBUG_ASSERT evalueert naar false. Onder een debugger kunt u daarna verdergaan. + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + Laad het/de opgegeven muziekbestand(en) bij het opstarten. Elk bestand dat u opgeeft, wordt in het volgende virtuele deck geladen. + + ColorPaletteEditor @@ -865,13 +948,13 @@ - + Set to full volume Zet naar maximale volume - + Set to zero volume Zet naar nul volume @@ -896,13 +979,13 @@ Reverse roll (Censor) knop - + Headphone listen button Luisterknop hoofdtelefoon - + Mute button Stilteknop @@ -918,25 +1001,25 @@ - + Mix orientation (e.g. left, right, center) Orientatie van de mix (b.v. links, rechts, midden) - + Set mix orientation to left Orientatie mix links - + Set mix orientation to center Orientatie mix midden - + Set mix orientation to right Orientatie mix rechts @@ -980,36 +1063,6 @@ Toggle quantize mode Quantize modus aan/uit - - - Increase internal master BPM by 1 - Verhoog interne master BPM met 1 - - - - Decrease internal master BPM by 1 - Verlaag interne master BPM met 1 - - - - Increase internal master BPM by 0.1 - Verhoog interne master BPM met 0.1 - - - - Decrease internal master BPM by 0.1 - Verlaag interne master BPM met 0.1 - - - - Toggle sync master - Sync master aan/uit - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - 3-standenschakelaar voor synchronisatiemodus (UIT, VOLG, MASTER) - One-time beat sync (tempo only) @@ -1021,7 +1074,7 @@ Eenmalige beat-synchronisatie (alleen fase) - + Toggle keylock mode Key-lock mode aan/uit @@ -1031,199 +1084,199 @@ Equalizers - + Vinyl Control Vinyl Control - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) Wisselknop cueing mode met vinylbedeining (UIT / EEN / HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) Wisselknop vinylbediening modus (ABS/REL/CONST) - + Pass through external audio into the internal mixer Via externe audio naar de interne mixer doorgeven - + Cues Cues - + Cue button Cue knop - + Set cue point Stel het cue-punt in - + Go to cue point Ga naar het cue-punt - + Go to cue point and play Ga naar het cue-punt en speel - + Go to cue point and stop Ga naar het cue-punt en stop - + Preview from cue point Voorbeluisteren vanaf het cue-punt - + Cue button (CDJ mode) Cue-knop (CDJ modus) - + Stutter cue Stutter cue - + Hotcues Hotcues - + Set, preview from or jump to hotcue %1 Stel in, voorbeluisteren van of spring naar hotcue% 1 - + Clear hotcue %1 Wis hotcue %1 - + Set hotcue %1 Stel hotcue %1 in. - + Jump to hotcue %1 Spring naar hotcue %1 - + Jump to hotcue %1 and stop Spring naar hotcue %1 en stop - + Jump to hotcue %1 and play Spring naar hotcue %1 en speel - + Preview from hotcue %1 Voorbeluisteren vanaf hotcue %1 - - + + Hotcue %1 Hotcue %1 - + Looping Looping - + Loop In button Loop In knop - + Loop Out button Loop Out knop - + Loop Exit button Loop Exit knop - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 32 - + 64 64 - + Move loop forward by %1 beats Verplaats loop voorwaarts met %1 beats - + Move loop backward by %1 beats Verplaats loop achteruit met %1 beats - + Create %1-beat loop Maak %1-beat loop - + Create temporary %1-beat loop roll Maak een tijdelijke % 1-beat loop roll - + Library Bibliotheek @@ -1334,20 +1387,20 @@ - - + + Volume Fader Volume Regelaar - + Full Volume Volledig Volume - + Zero Volume Geen Volume @@ -1363,7 +1416,7 @@ - + Mute Dempen @@ -1374,7 +1427,7 @@ - + Headphone Listen Hoofdtelefoon Luisteren @@ -1395,25 +1448,25 @@ - + Orientation Positionering - + Orient Left Positioneer Links - + Orient Center Positioneer Midden - + Orient Right Positioneer Rechts @@ -1512,52 +1565,6 @@ Sync Sync - - - Sync Mode - Sync Modus - - - - Internal Sync Master - Interne Sync Master - - - - Toggle Internal Sync Master - Interne Sync Master aan/uit - - - - - Internal Master BPM - Interne Master BPM - - - - Internal Master BPM +1 - Interne Master BPM +1 - - - - Internal Master BPM -1 - Interne Master BPM -1 - - - - Internal Master BPM +0.1 - Interne Master BPM +0.1 - - - - Internal Master BPM -0.1 - Interne Master BPM -0.1 - - - - Sync Master - Sync Master - Beat Sync One-Shot @@ -1574,37 +1581,37 @@ Synchroniseer fase eenmalig - + Pitch control (does not affect tempo), center is original pitch Pitch controle (geen invloed op tempo), midden is de originele pitch - + Pitch Adjust Aanpassen Pitch - + Adjust pitch from speed slider pitch Pas pitch aan met de pitch schuifregelaar - + Match musical key Muziekale key overeenstemmen - + Match Key Key overeenstemmen - + Reset Key Key resetten - + Resets key to original Key resetten naar origineel @@ -1645,466 +1652,466 @@ Lage EQ - + Toggle Vinyl Control Wissel Vinylbediening - + Toggle Vinyl Control (ON/OFF) Wissel VinylBediening (AAN/UIT) - + Vinyl Control Mode Vinylbediening Modus - + Vinyl Control Cueing Mode Vinylbediening Cueing Modus - + Vinyl Control Passthrough Vinylbediening doorvoeren - + Vinyl Control Next Deck Vinylbediening Volgende deck - + Single deck mode - Switch vinyl control to next deck Enkelvoudige deck modus - Wissel vinylbediening naar volgende deck - + Cue Cue - + Set Cue Cue instellen - + Go-To Cue Ga Naar cue - + Go-To Cue And Play Ga Naar Cue en Speel - + Go-To Cue And Stop Ga Naar verwijzing en Stop - + Preview Cue Cue voorbeluisteren - + Cue (CDJ Mode) Cue (CDJ Modus) - + Stutter Cue Stutter Cue - + Go to cue point and play after release Ga Naar het Cue punt en speel na het loslaten - + Clear Hotcue %1 Wis Hotcue %1 - + Set Hotcue %1 Stel Hotcue %1 in - + Jump To Hotcue %1 Spring naar Hotcue %1 - + Jump To Hotcue %1 And Stop Spring naar Hotcue %1 en Stop - + Jump To Hotcue %1 And Play Spring naar Hotcue %1 en Speel - + Preview Hotcue %1 Hotcue %1 voorbeluisteren - + Loop In Loop In - + Loop Out Loop Out - + Loop Exit Verlaat Loop - + Reloop/Exit Loop Reloop/Verlaat Loop - + Loop Halve Halve Loop - + Loop Double Dubbele Loop - + 1/32 1/32 - + 1/16 1/16 - + 1/8 1/8 - + 1/4 1/4 - + Move Loop +%1 Beats Verplaats Loop +%1 Beats - + Move Loop -%1 Beats Verplaats Loop -%1 Beats - + Loop %1 Beats Loop %1 Beats - + Loop Roll %1 Beats Loop lus %1 Beats - + Add to Auto DJ Queue (bottom) Voeg toe aan de Auto DJ wachtrij (onderaan) - + Append the selected track to the Auto DJ Queue Voeg de geselecteerde track toe aan de Auto DJ wachtrij - + Add to Auto DJ Queue (top) Voeg toe aan de auto DJ wachtrij (bovenaan) - + Prepend selected track to the Auto DJ Queue Voeg de geselecteerde track vooraan toe in de AutoDJ wachtrij - + Load Track Track Laden - + Load selected track Geselecteerde tracks laden - + Load selected track and play Laad geselecteerde track en speel - - + + Record Mix Opname Mix - + Toggle mix recording Wissel Opname Mix - + Effects Effecten - + Quick Effects Snelle Effecten - + Deck %1 Quick Effect Super Knob Superknop snelle effecten deck %1 - + Quick Effect Super Knob (control linked effect parameters) Superknop Snelle Effecten (bedien gekoppelde effectparameters) - - + + Quick Effect Snel Effect - + Clear effect rack Wis effecten rack - + Clear Effect Rack Wis Effecten Rack - + Clear Unit Wis Eenheid - + Clear effect unit Wis effecten eenheid - + Toggle Unit Wissel Eenheid - + Dry/Wet Droog/Nat - + Adjust the balance between the original (dry) and processed (wet) signal. Pas de balans tussen het originele (droge) en verwerkte (natte) signaal aan. - + Super Knob Super knop - + Next Chain Volgende Schakel - + Assign Toewijzen - + Clear Wissen - + Clear the current effect Wis het huidige effect - + Toggle Omschakelen - + Toggle the current effect Huidig effect omschakelen - + Next Volgende - + Switch to next effect Schakel naar volgend effect - + Previous Vorige - + Switch to the previous effect Schakel naar vorig effect - + Next or Previous Volgende of Vorige - + Switch to either next or previous effect Schakel ofwel naar volgende of vorig effect - - + + Parameter Value Parameter Waarde - - + + Microphone Ducking Strength Onderdrukkingssterkte Microfoon - + Microphone Ducking Mode Onderdrukkingsmodus Microfoon - + Gain Versterken - + Gain knob Knop Versterken - + Shuffle the content of the Auto DJ queue Schud de inhoud van de Auto DJ-wachtrij - + Skip the next track in the Auto DJ queue Het volgende nummer overslaan in de Auto DJ-wachtrij - + Auto DJ Toggle Auto DJ omschakelen - + Toggle Auto DJ On/Off Schakel Auto DJ Aan/Uit - + Microphone & Auxiliary Show/Hide Toon/Verberg Microfoon & Aux - + Show/hide the microphone & auxiliary section Toon/Verberg de microfoon & AUX sectie - + 4 Effect Units Show/Hide Toon/Verberg 4 Effect Units - + Switches between showing 2 and 4 effect units Schakelen tussen 2 en 4 effect units tonen. - + Mixer Show/Hide Toon/Verberg Mixer - + Show or hide the mixer. Toon of verberg de mixer. - + Cover Art Show/Hide (Library) Toon/Verberg Cover Art (Bibliotheek) - + Show/hide cover art in the library Toon/Verberg cover art in de bibliotheek - + Library Maximize/Restore Bibliotheek Maximaliseren/Herstellen - + Maximize the track library to take up all the available screen space. Maximaliseer de trackbibliotheek in de beschikbare schermruimte. - + Effect Rack Show/Hide Effeceten rack Tonen/Verbergen - + Show/hide the effect rack Toon/Verberg het effecten rack - + Waveform Zoom Out Waveform Uitzoomen @@ -2129,93 +2136,93 @@ Eenmalig beat-synchronisatietempo (en fase met quantize ingeschakeld) - + Playback Speed Afspeelsnelheid - + Playback speed control (Vinyl "Pitch" slider) Bediening afspeelsnelheid (Vinyl "Pitch" regelaar) - + Pitch (Musical key) Pitch (Toonhoogte) - + Increase Speed Snelheid verhogen - + Adjust speed faster (coarse) Snelheid hoger bijstellen (grof) - - + + Increase Speed (Fine) Verhoog snelheid (fijn) - + Adjust speed faster (fine) Snelheid hoger bijstellen (fijn) - + Decrease Speed Snelheid verlagen - + Adjust speed slower (coarse) Snelheid lager bijstellen (grof) - + Adjust speed slower (fine) Snelheid lager bijstellen (fijn) - + Temporarily Increase Speed Snelheid tijdelijk verhogen - + Temporarily increase speed (coarse) Snelheid tijdelijk verhogen (grof) - + Temporarily Increase Speed (Fine) Snelheid Tijdelijk Verhogen (Fijn) - + Temporarily increase speed (fine) Snelheid tijdelijk verhogen (fijn) - + Temporarily Decrease Speed Snelheid Tijdelijk Verlagen - + Temporarily decrease speed (coarse) Snelheid tijdelijk verlagen (grof) - + Temporarily Decrease Speed (Fine) Snelheid Tijdelijk Verlagen (Fijn) - + Temporarily decrease speed (fine) Snelheid tijdelijk verlagen (fijn) @@ -2272,806 +2279,872 @@ Sync / Sync Lock - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed Snelheid - + Pitch (Musical Key) Toonhoogte (muzikale sleutel) - + Increase Pitch Verhoof toonhoogte - + Increases the pitch by one semitone Verhoogt de toonhoogte met een halve toon - + Increase Pitch (Fine) Verhoog Toonhoogte (Fijn) - + Increases the pitch by 10 cents Verhoogt de toonhoogte met 10 cent. - + Decrease Pitch Verlaagt Toonhoogte - + Decreases the pitch by one semitone Verlaagt de toonhoogte met een halve toon. - + Decrease Pitch (Fine) Verlaagt Toonhoogte (Fijn) - + Decreases the pitch by 10 cents Verlaagt de toonhoogte met 10 cent. - + Keylock Keylock - + CUP (Cue + Play) CUP (Cue + Afspelen) - + Shift cue points earlier Verschuift cue points naar voren - + Shift cue points 10 milliseconds earlier Verschuift cue points 10 milliseconden naar voren - + Shift cue points earlier (fine) Verschuift cue points naar voren (Fijn) - + Shift cue points 1 millisecond earlier Verschuift cue points 1 milliseconde naar voren - + Shift cue points later Verschuift cue points vooruit - + Shift cue points 10 milliseconds later Verschuift cue points 10 milliseconden vooruit - + Shift cue points later (fine) Verschuift cue points achteruit (fijn) - + Shift cue points 1 millisecond later Verschuift cue points 1 milliseconde vooruit - + Hotcues %1-%2 Hotcues %1-%2 - + Intro / Outro Markers Intro / Outro Markeerpunten - + Intro Start Marker Intro Start Markeerpunt - + Intro End Marker Intro Einde Markering - + Outro Start Marker Outro Start Markering - + Outro End Marker Outro Einde Markering - + intro start marker Intro Start Markeerpunt - + intro end marker Intro Einde Markering - + outro start marker Outro Start Markering - + outro end marker Outro Einde Markering - + Activate %1 [intro/outro marker Activeer %1 - + Jump to or set the %1 [intro/outro marker Spring naar of stel de %1 in - + Set %1 [intro/outro marker Stel de %1 in - + Set or jump to the %1 [intro/outro marker Instellennvan of springen naar %1 - + Clear %1 [intro/outro marker Wis %1 - + Clear the %1 [intro/outro marker Wis de %1 - + Loop Selected Beats Loop Geselecteerde Beats - + Create a beat loop of selected beat size Maak een beat loop van de geselecteerde beatgrootte - + Loop Roll Selected Beats Loop Roll van geselecteerde beats - + Create a rolling beat loop of selected beat size Maak een rollende beat loop van de geselecteerde beatgrootte - + Loop Beats Loop Beats - + Loop Roll Beats Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position Schakel het loopen aan/uit en spring naar het Loop-In punt als de loop zich achter de afspeelpositie bevindt - + Reloop And Stop Reloop En Stop - + Enable loop, jump to Loop In point, and stop Schakel het loopen in, spring naar Loop-In punt en stop - + Halve the loop length Halveer de Loop lengte - + Double the loop length Verdubbel de Loop lengte - + Beat Jump / Loop Move Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats Spring / verplaats Loop vooruit% 1 Beats - + Jump / Move Loop Backward %1 Beats Spring / verplaats Loop achteruit% 1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats Spring vooruit met %1 beats, of als een loop is ingeschakeld, verplaats de loop naar voren met %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats Spring achteruit met %1 beats, of als een loop is ingeschakeld, verplaats de loop achteruit %1 beats - + Beat Jump / Loop Move Forward Selected Beats Beat Jump / Loop Move Geselecteerde Beats Vooruit - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats Spring vooruit met het aantal geselecteerde beats, of als een loop is ingeschakeld, verplaats de loop naar voren met het aantal geselecteerde beats - + Beat Jump / Loop Move Backward Selected Beats Beat Jump / Loop Move Geselecteerde Beats Achteruit - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats Spring achteruit met het aantal geselecteerde beats, of als een loop is ingeschakeld, verplaats de loop achteruit met het aantal geselecteerde beats - + Beat Jump / Loop Move Forward Beat Jump / Loop Move Voorwaarts - + Beat Jump / Loop Move Backward Beat Jump / Loop Move Achterwaarts - + Loop Move Forward Loop Move Voorwaarts - + Loop Move Backward Loop Move Achterwaarts - + Navigation Navigatie - + Move up Omhoog - + Equivalent to pressing the UP key on the keyboard Vergelijkbaar met het indrukken van de Up-toets op het toetsenbord - + Move down Omlaag - + Equivalent to pressing the DOWN key on the keyboard Vergelijkbaar met het indrukken van de Down-toets op het toetsenbord - + Move up/down Omhoog/Omlaag - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys Beweeg verticaal in beide richtingen met een knop, alsof u de toetsen OMHOOG / OMLAAG indrukt - + Scroll Up Naar Boven Scrollen - + Equivalent to pressing the PAGE UP key on the keyboard Vergelijkbaar met het indrukken van de PAGE UP-toets op het toetsenbord - + Scroll Down Naar Beneden Scrollen - + Equivalent to pressing the PAGE DOWN key on the keyboard Vergelijkbaar met het indrukken van de PAGE DOWN-toets op het toetsenbord - + Scroll up/down Scroll omhoog/omlaag - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys Beweeg verticaal in beide richtingen met een knop, alsof u de toetsen PGUP / PGDOWN indrukt - + Move left Naar links - + Equivalent to pressing the LEFT key on the keyboard Vergelijkbaar met het indrukken van de LINKS-toets op het toetsenbord - + Move right Naar rechts - + Equivalent to pressing the RIGHT key on the keyboard Vergelijkbaar met het indrukken van de RECHTS-toets op het toetsenbord - + Move left/right Ga naar links/rechts - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys Beweeg horizontaal in beide richtingen met een knop, alsof u de toetsen LINKS / RECHTS indrukt - + Move focus to right pane Verplaats de focus naar het rechter deelvenster - + Equivalent to pressing the TAB key on the keyboard Vergelijkbaar met het indrukken van de TAB-toets op het toetsenbord. - + Move focus to left pane Verplaats de focus naar het linker deelvenster. - + Equivalent to pressing the SHIFT+TAB key on the keyboard Vergelijkbaar met het indrukken van de SHIFT+TAB toetsen op het toetsenbord - + Move focus to right/left pane Verplaats de focus naar het rechter / linker deelvenster - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys Verplaats de focus één deelvenster naar rechts of links met een knop, alsof u op de TAB / SHIFT + TAB-toetsen drukt - + Go to the currently selected item Ga naar het huidig geselecteerde item. - + Choose the currently selected item and advance forward one pane if appropriate Kies het momenteel geselecteerde item en ga indien nodig één venstergedeelte vooruit - + Load Track and Play Track Laden en Afspelen - + Add to Auto DJ Queue (replace) Voeg toe aan de Auto DJ wachtrij (vervang) - + Replace Auto DJ Queue with selected tracks Vervang de Auto DJ wachtrij met de geselecteerde tracks - + Select next search history Selecteer de volgende zoekgeschiedenis - + Selects the next search history entry Selecteert het volgende item in de zoekgeschiedenis - + Select previous search history Selecteer vorige zoekgeschiedenis - + Selects the previous search history entry Selecteert het vorige item in de zoekgeschiedenis - + Move selected search entry Verplaats het geselecteerde zoekitem - + Moves the selected search history item into given direction and steps Verplaatst het geselecteerde zoekhistorie-item in de opgegeven richting en stappen - + Deck %1 Quick Effect Enable Button Deck %1 Snel Effect Inschakelknop - + Quick Effect Enable Button Snel Effect Inschakelknop - + Enable or disable effect processing Effectverwerking in- of uitschakelen - + Super Knob (control effects' Meta Knobs) Super Knop (heeft controle over de Meta Knoppen effecten) - + Mix Mode Toggle Mix Modus Schakelen - + Toggle effect unit between D/W and D+W modes Wissel effecteenheid tussen de modi D/W en D+W - + Next chain preset Volgende vooringestelde keten - + Previous Chain Vorige keten - + Previous chain preset Vorige vooringestelde keten - + Next/Previous Chain Volgende/Vorige Keten - + Next or previous chain preset Volgende of vorige vooringestelde keten - - + + Show Effect Parameters Toon Effect Parameters - + Effect Unit Assignment Toewijzing Effect Eenheid - + Meta Knob Meta Knop - + Effect Meta Knob (control linked effect parameters) Effect Meta Knop (controleert gelinkte effect parameters) - + Meta Knob Mode Meta Knop Modus - + Set how linked effect parameters change when turning the Meta Knob. Stel in hoe gekoppelde effectparameters veranderen bij het draaien van de Meta Knop. - + Meta Knob Mode Invert Meta Knop Modus Omkering - + Invert how linked effect parameters change when turning the Meta Knob. Keer om hoe gekoppelde effectparameters veranderen wanneer u aan de Meta-knop draait. - - + + Button Parameter Value Knop Parameterwaarde - + Microphone / Auxiliary Microfoon / Aux - + Microphone On/Off Microfoon Aan/Uit - + Microphone on/off Microfoon aan/uit - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) Wisselen van onderdrukkingsmodus (UIT, AUTO, MANUEEL) - + Auxiliary On/Off AUX Aan/Uit - + Auxiliary on/off AUX aan/uit - + Auto DJ Auto DJ - + Auto DJ Shuffle Auto DJ Schudden - + Auto DJ Skip Next Auto DJ Volgende Overslaan - + Auto DJ Add Random Track Auto DJ Willekeurig nummer toevoegen - + Add a random track to the Auto DJ queue Voeg een willekeurige track toe aan de Auto DJ wachtrij - + Auto DJ Fade To Next Auto DJ Naar Volgende Faden - + Trigger the transition to the next track Activeer de overgang naar het volgende nummer - + User Interface Gebruikersomgeving - + Samplers Show/Hide Samplers Toon/Verberg - + Show/hide the sampler section Toon/Verberg Sampler sectie - + Start/Stop Live Broadcasting Start/Stop Live Uitzenden - + Stream your mix over the Internet. Stream je mix over het Internet. - + Start/stop recording your mix. Start/stop uw mix opnemen. - - + + Samplers Samplers - + Vinyl Control Show/Hide Vinyl Controle Toon/Verberg - + Show/hide the vinyl control section Toon/Verberg de vinyl controle sectie - + Preview Deck Show/Hide Deck Voorbeluisteren Toon/Verberg - + Show/hide the preview deck Toon/Verberg de Voorbeluister-deck - + Toggle 4 Decks Schakel naar 4 Decks - + Switches between showing 2 decks and 4 decks. Schakelt tussen weergave van 2 decks en 4 decks. - + Cover Art Show/Hide (Decks) Cover Art toon/Verberg (Decks) - + Show/hide cover art in the main decks Toon/verberg cover art in de hoofddecks - + Vinyl Spinner Show/Hide Vinyl Spinner Toon/Verberg - + Show/hide spinning vinyl widget Toon/Verberg de spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) Toon/Verberg Vinyl Spinners (Alle Decks) - + Show/Hide all spinnies Toon/Verberg alle spinnies - + Toggle Waveforms Wissel Waveforms - + Show/hide the scrolling waveforms. Toon/verberg de scrollende Waveforms - + Waveform zoom Waveform zoom - + Waveform Zoom Waveform Zoom - + Zoom waveform in Waveform inzoomen - + Waveform Zoom In Waveform Inzoomen - + Zoom waveform out Waveform uitzoomen - + Star Rating Up Sterwaardering Verhogen - + Increase the track rating by one star Verhoog de trackwaardering met één ster - + Star Rating Down Sterwaardering Verlagen - + Decrease the track rating by one star Verlaag de nummerwaardering met één ster @@ -3160,32 +3233,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. De functionaliteit van deze controller-verbinding wordt uitgeschakeld totdat het probleem is opgelost. - + You can ignore this error for this session but you may experience erratic behavior. U kunt deze fout voor deze sessie negeren, maar u kunt onregelmatig gedrag ervaren. - + Try to recover by resetting your controller. Probeer te herstellen door uw controller te resetten. - + Controller Mapping Error Controller Mapping Fout - + The mapping for your controller "%1" is not working properly. De mapping voor uw controller "%1" werkt niet goed. - + The script code needs to be fixed. De script code moet hersteld worden. @@ -3221,133 +3294,133 @@ CrateFeature - + Remove Verwijderen - - + + Create New Crate Maak nieuwe krat - + Rename Hernoemen - - + + Lock Vergrendelen - + Export Crate as Playlist Krat exporteren als afspeellijst - + Export Track Files Exporteer Tracks - + Duplicate Dupliceren - + Analyze entire Crate Analyseer volledige krat - + Auto DJ Track Source Auto DJ Track Bron - + Enter new name for crate: Geef nieuwe naam voor krat: - - + + Crates Kratten - - + + Import Crate Importeer krat - + Export Crate Exporteer krat - + Unlock Ontgrendel - + An unknown error occurred while creating crate: Een onbekende fout opgetreden bij het maken krat: - + Rename Crate Hernoem krat - - + + Export to Engine Prime Exporteren naar Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. Maak een krat voor je volgende optreden, voor je favoriete electrohouse tracks, of voor je meest gevraagde tracks. - - + + Renaming Crate Failed Hernoemen krat mislukt - + Crate Creation Failed Aanmaken krat mislukt - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U Speellijst (*.m3u);;M3U8 Speellijst (*.m3u8);;PLS Speellijst (*.pls);;Tekst CSV (*.csv);;Leesbare Tekst (*.txt) - + Crates are a great way to help organize the music you want to DJ with. Kratten zijn een geweldige manier om de muziek te organiseren waarmee je wilt DJ'en. - + Crates let you organize your music however you'd like! Kratten laten je toe om je muziek te organiseren zoals jij dat wil! - + A crate cannot have a blank name. Een krat kan geen lege naam hebben. - + A crate by that name already exists. Een krat met deze naam bestaat al. @@ -3417,37 +3490,37 @@ DlgAbout - + Mixxx %1.%2 Development Team Mixxx %1.%2 Development Team - + With contributions from: Met bijdragen van: - + And special thanks to: En speciale dank aan: - + Past Developers Eerdere Ontwikkelaars - + Past Contributors Eerdere Medewerkers - + Official Website Officiële Website - + Donate Donaties @@ -4917,32 +4990,32 @@ Instellingen toepassen en doorgaan? DlgPrefControlsDlg - + Skin Skin - + Tool tips Tooltips - + Select from different color schemes of a skin if available. Kies uit verschillende kleurenschema's van een skin indien beschikbaar. - + Color scheme Kleurenschema - + Locales determine country and language specific settings. Regionale instellingen bepalen land- en taalspecifieke instellingen. - + Locale Regio @@ -4952,52 +5025,42 @@ Instellingen toepassen en doorgaan? Omgevingsvoorkeuren - + HiDPI / Retina scaling HiDPI / Retina schaling - - Change the size of text, buttons, and other items. - Wijzig de tekstgrootte, knoppen en andere items. - - - - Adopt scale factor from the operating system - Neem schaalfactor over van het besturingssysteem - - - - Auto Scaling - Automatisch Schalen + + Change the size of text, buttons, and other items. + Wijzig de tekstgrootte, knoppen en andere items. - + Screen saver Screensaver - + Start in full-screen mode Start in volledig-scherm modus - + Full-screen mode Volledig-scherm modus - + Off Uit - + Library only Enkel bibliotheek - + Library and Skin Bibliotheek en Skin @@ -5470,7 +5533,7 @@ U kunt de tracks ten allen tijde op het scherm slepen en neerzetten om een deck Main EQ - + Hoofd EQ @@ -5631,39 +5694,39 @@ U kunt de tracks ten allen tijde op het scherm slepen en neerzetten om een deck DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. De minimale grootte van de geselecteerde skin is groter dan uw schermresolutie. - + Allow screensaver to run Toestaan om screensaver te laten uitvoeren - + Prevent screensaver from running Voorkom dat screensaver wordt uitgevoerd - + Prevent screensaver while playing Voorkom screensaver tijdens afspelen - + This skin does not support color schemes Deze skin ondersteunt geen kleurenschema's - + Information Informatie - - Mixxx must be restarted before the new locale setting will take effect. - Mixxx moet opnieuw worden gestart voordat de nieuwe locale-instelling van kracht wordt. + + Mixxx must be restarted before the new locale or scaling settings will take effect. + @@ -5882,62 +5945,62 @@ en stelt u in staat om de toonhoogte aan te passen voor harmonische mixen. DlgPrefLibrary - + Music Directory Added Muziekmap toegevoegd - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? U hebt een of meer muziekmappen toegevoegd. De tracks in deze mappen zijn pas beschikbaar als u uw bibliotheek opnieuw scant. Wilt u nu opnieuw scannen? - + Scan Scan - + Choose a music directory Kies een map voor muziek - + Confirm Directory Removal Bevestig Verwijdering Map - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. Mixxx zal deze map niet langer in de gaten houden voor nieuwe tracks. Wat zou je willen doen met de tracks uit deze map en submappen?<ul><li>Verberg alle tracks uit deze directory en submappen. </li><li>Verwijder permanent alle metadata van deze tracks uit Mixxx.</li><li>Laat de tracks ongemoeid in je bibliotheek.</li></ul>Tracks verbergen zal wel de metadata blijven bewaren mocht je ze in de toekomst opnieuw willen toevoegen. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. Metadata betekent alle trackdetails (artiest, titel, playcount, etc.) evenals beatgrids, hotcues en loops. Deze keuze heeft alleen betrekking op de Mixxx-bibliotheek. Er worden geen bestanden op schijf gewijzigd of verwijderd. - + Hide Tracks Verberg Tracks - + Delete Track Metadata Verwijder Metadata - + Leave Tracks Unchanged Laat tracks ongewijzigd - + Relink music directory to new location Koppel de muziekmap opnieuw aan een nieuwe locatie - + Select Library Font Selecteer bibliotheeklettertype @@ -6668,12 +6731,12 @@ Het doelvolume is bij benadering en gaat ervan uit dat track pregain en master o Main output only - + Alleen hoofduitgang Main and booth outputs - + Hoofd en booth uitgangen @@ -6721,12 +6784,12 @@ Het doelvolume is bij benadering en gaat ervan uit dat track pregain en master o Main Mix - + Hoofdmix Main Output Mode - + Hoofduitgangsmodus @@ -6800,12 +6863,12 @@ Het doelvolume is bij benadering en gaat ervan uit dat track pregain en master o Headphone Output Delay - + Vertraging hoofdtelefoonuitgang Booth Output Delay - + Vertraging booth-uitgang @@ -6943,32 +7006,32 @@ Het doelvolume is bij benadering en gaat ervan uit dat track pregain en master o DlgPrefWaveform - + Filtered Gefilterd - + HSV HSV - + RGB RGB - + OpenGL not available OpenGL niet beschikbaar - + dropped frames verloren frames - + Cached waveforms occupy %1 MiB on disk. Waveforms in cache gebruiken %1 Mb op schijf @@ -7184,74 +7247,74 @@ Kies uit verschillende soorten weergaven voor de waveform, die voornamelijk vers Bibliotheek - + Interface Omgeving - + Waveforms Waveforms - + Auto DJ Auto DJ - + Equalizers Equalizers - + Decks Decks - + Colors Kleuren - + Crossfader Crossfader - + Effects Effecten - + LV2 Plugins LV2 Plugins - + Recording Opname - + Beat Detection Beat detectie - + Key Detection Key detectie - + Normalization Normalisatie - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> - + <font color='#BB0000'><b>Sommige voorkeurenpagina's bevatten fouten. Los eerst de problemen op om de wijzigingen toe te passen.</b></font> @@ -7259,12 +7322,12 @@ Kies uit verschillende soorten weergaven voor de waveform, die voornamelijk vers Vinyl Control - + Live Broadcasting Live uitzenden - + Modplug Decoder Modplug Decoder @@ -7285,7 +7348,7 @@ Kies uit verschillende soorten weergaven voor de waveform, die voornamelijk vers TextLabel - + TekstLabel @@ -7405,123 +7468,123 @@ Kies uit verschillende soorten weergaven voor de waveform, die voornamelijk vers Selecteer best mogelijke overeenkomst - - + + Track Track - - + + Year Jaar - + Title Titel - - + + Artist Artiest - - + + Album Album - + Album Artist Album Artiest - + Fetching track data from the MusicBrainz database Trackgegevens ophalen uit de MusicBrainz-database - + Mixxx could not find this track in the MusicBrainz database. Mixxx kon dit nummer niet terugvinden in de MusicBrainz-database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. haal API-key op - + Submit Submits audio fingerprints to the MusicBrainz database. Indienen - + New Column Nieuwe kolom - + New Item Nieuw Item - + &Previous Vo&rige - + &Next Vo&lgende - + &Apply &Pas toe - + &Close &Sluit - + Status: %1 Status: %1 - + HTTP Status: %1 HTTP Status: %1 - + Code: %1 Code: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx kan om onbekende reden geen verbinding maken met %1. - + Mixxx can't connect to %1. Mixxx kan geen verbinding maken met %1. - + Original tags Originele tags - + Suggested tags Voorgestelde tags @@ -7915,17 +7978,17 @@ Dit resulteert vaak in beat-rasters van hogere kwaliteit, maar zal het niet goed EngineBuffer - + Soundtouch (faster) Soundtouch (sneller) - + Rubberband (better) Rubberband (beter) - + Unknown (bad value) Onbekend (slechte waarde) @@ -7979,7 +8042,7 @@ Dit resulteert vaak in beat-rasters van hogere kwaliteit, maar zal het niet goed RGB Stacked - + RGB gestapeld @@ -8026,38 +8089,38 @@ Dit resulteert vaak in beat-rasters van hogere kwaliteit, maar zal het niet goed ITunesFeature - + iTunes iTunes - - + + Select your iTunes library Selecteer je iTunes-bibliotheek - + (loading) iTunes iTunes (aan het laden) - + Use Default Library Gebruik de standaardbibliotheek - + Choose Library... Kies bibliotheek... - + Error Loading iTunes Library Fout bij het laden van iTunes-bibliotheek - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. Er is een fout opgetreden bij het laden van je iTunes-bibliotheek. Sommige van uw iTunes-nummers of afspeellijsten zijn mogelijk niet geladen. @@ -8065,13 +8128,13 @@ Dit resulteert vaak in beat-rasters van hogere kwaliteit, maar zal het niet goed LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. Veilige modus ingeschakeld - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8080,57 +8143,57 @@ support. ondersteuning. - + activate Activeer - + toggle Omwisselen - + right rechts - + left links - + right small rechts klein - + left small links klein - + up omhoog - + down omlaag - + up small omhoog klein - + down small omlaag klein - + Shortcut Snelkoppeling @@ -8151,22 +8214,22 @@ ondersteuning. LibraryFeature - + Import Playlist Importeer Afspeellijst - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Afspeellijstbestanden (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? Bestand Overschrijven? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8180,27 +8243,27 @@ Wil je het echt overschrijven? LibraryScannerDlg - + Library Scanner Bibliotheekscanner - + It's taking Mixxx a minute to scan your music library, please wait... Mixxx heeft ongeveer een minuut nodig om je muziekbibliotheek te scannen, even geduld... - + Cancel Annuleren - + Scanning: Scannen: - + Scanning cover art (safe to cancel) Hoezen aan het scannen (veilig om te annuleren) @@ -8268,7 +8331,7 @@ Wil je het echt overschrijven? For help with database issues consult: - + Voor hulp bij database problemen raadpleeg: @@ -8317,185 +8380,185 @@ Wil je het echt overschrijven? MixxxMainWindow - + Sound Device Busy Geluisapparaat bezig - + <b>Retry</b> after closing the other application or reconnecting a sound device <b>Probeer opnieuw</b> na het afsluiten van de andere applicatie of het opnieuw aansluiten van een geluidsapparaat - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. <b>Configureer</b> opnieuw de Mixxx instellingen van het geluidsapparaat. - - + + Get <b>Help</b> from the Mixxx Wiki. <b>Hulp</b>zoeken in de Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. <b>Verlaat</b> Mixxx. - + Retry Opnieuw Proberen - + skin - + skin - - + + Reconfigure Opnieuw configureren - + Help Help - - + + Exit Afsluiten - - + + Mixxx was unable to open all the configured sound devices. Mixxx kon niet alle geconfigureerde geluidsapparaten openen. - + Sound Device Error Fout met geluidsapparaat - + <b>Retry</b> after fixing an issue <b>Probeer opnieuw</b> na het oplossen van een probleem - + No Output Devices Geen uitvoerapparaten - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. Mixxx is ingesteld zonder uitvoerapparaten voor geluid. Geluidsverwerking wordt uitgeschakeld zonder een geconfigureerd uitvoerapparaat. - + <b>Continue</b> without any outputs. <b>Ga door</b> zonder uitvoer. - + Continue Verdergaan - + Load track to Deck %1 Laad track in deck %1 - + Deck %1 is currently playing a track. Deck %1 speelt momenteel een track af. - + Are you sure you want to load a new track? Bent u zeker dat u een nieuwe track wil laden? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. Er is geen invoerapparaat geselecteerd voor deze vinylbesturing. Selecteer eerst een invoerapparaat in de voorkeuren voor geluidshardware. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. Er is geen invoerapparaat geselecteerd voor dit doorvoerapparaat. Selecteer eerst een invoerapparaat in de voorkeuren voor geluidsapparatuur. - + There is no input device selected for this microphone. Do you want to select an input device? Er is geen invoerapparaat geselecteerd voor deze microfoon. Wilt u een invoerapparaat selecteren? - + There is no input device selected for this auxiliary. Do you want to select an input device? Er is geen invoerapparaat geselecteerd voor deze auxiliary. Wilt u een invoerapparaat selecteren? - + Error in skin file Fout in themabestand - + The selected skin cannot be loaded. Het geselecteerde thema kan niet worden geladen. - + OpenGL Direct Rendering OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. Directe weergave is niet ingeschakeld op uw computer.<br><br> Dit betekent dat de weergave van de golfvormen erg<br><b> traag zal zijn en uw CPU zwaar kan belasten</b>. Werk uw <br> configuratie bij om directe weergave mogelijk te maken of schakel<br>de waveform weergaven uit in de Mixxx-voorkeuren door "Leeg" te selecteren<br> als de waveform weergave in het gedeelte "Interface". - - - + + + Confirm Exit Afsluiten bevestigen - + A deck is currently playing. Exit Mixxx? Er is momenteel een deck actief. Mixxx afsluiten? - + A sampler is currently playing. Exit Mixxx? Er is momenteel een sampler actief. Mixxx afsluiten? - + The preferences window is still open. Het scherm "Voorkeuren" staat nog open. - + Discard any changes and exit Mixxx? Wijzigingen negeren en Mixxx afsluiten? @@ -8568,43 +8631,43 @@ Wilt u een invoerapparaat selecteren? PlaylistFeature - + Lock Vergrendelen - + Playlists Speellijsten - + Unlock Ontgrendel - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + Playlists zijn geordende lijsten met tracks waarmee u uw DJ-sets kunt plannen. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Het kan nodig zijn om enkele nummers van uw voorbereide afspeellijst over te slaan of enkele andere nummers toe te voegen om de energie van uw publiek op peil te houden. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. Sommige DJ's maken afspeellijsten voordat ze live optreden, maar anderen bouwen ze liever on-the-fly tijdens hun optreden. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. Wanneer u een afspeellijst gebruikt tijdens een live DJ-set, vergeet dan niet om goed op te letten hoe uw publiek reageert op de muziek die u hebt gekozen om te spelen. - + Create New Playlist Nieuwe Afspeellijst aanmaken @@ -8612,59 +8675,59 @@ Wilt u een invoerapparaat selecteren? QMessageBox - + Upgrading Mixxx Mixxx Upgraden - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? Mixxx ondersteunt nu het weergeven van albumhoezen. Wilt u nu uw bibliotheek scannen op albumhoezen? - + Scan Scan - + Later Later - + Upgrading Mixxx from v1.9.x/1.10.x. Mixxx aan het upgraden van v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. Mixxx bevat een nieuwe en verbeterde beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. Wanneer je tracks laadt, kan Mixxx ze opnieuw analyseren en nieuwe, nauwkeurigere beat-rasters genereren. Dit maakt automatische beatsync en looping betrouwbaarder. - + This does not affect saved cues, hotcues, playlists, or crates. Dit heeft geen invloed op opgeslagen cues, hotcues, afspeellijsten of kratten. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. Als je niet wilt dat Mixxx je tracks opnieuw analyseert, kies dan "Huidige beat-rasters behouden". Je kunt deze instelling op elk moment wijzigen in het "Beat Detectie" gedeelte in de Voorkeuren. - + Keep Current Beatgrids Huidige beat-rasters behouden - + Generate New Beatgrids Nieuwe beat-rasters genereren @@ -8780,7 +8843,7 @@ Wilt u nu uw bibliotheek scannen op albumhoezen? Main - + Hoofd @@ -8848,7 +8911,7 @@ Wilt u nu uw bibliotheek scannen op albumhoezen? Opus gebruiken met andere samplerates dan 48 kHz wordt niet ondersteund door de Opus-encoder. Gebruik 48000 Hz in de voorkeuren voor geluidsapparaten of schakel over naar een andere codering. - + Encoder Encoder @@ -8864,7 +8927,11 @@ Wilt u nu uw bibliotheek scannen op albumhoezen? %1 After clicking OK, you will see a file picker. Please select '%2' to proceed or click Cancel if you don't want to grant Mixxx access and abort this action. - + Uw toestemming is vereist om toegang te krijgen tot de volgende locatie: + +%1 + +Nadat u op OK hebt geklikt, ziet u een bestandskiezer. Selecteer '%2' om door te gaan of klik op Annuleren als u Mixxx geen toegang wilt verlenen en deze actie afbreekt. @@ -9986,12 +10053,12 @@ Volledig rechts: einde van de effectperiode White Noise - + Witte ruis Mix white noise with the input signal - + Mix witte ruis met het ingangssignaal @@ -10001,15 +10068,15 @@ Volledig rechts: einde van de effectperiode Crossfade the noise with the dry signal - + Crossfade de ruis met het droge signaal - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. <html>Mixxx kan niet opnemen of streamen in AAC of HE-AAC zonder de FDK-AAC-encoder. Om op te nemen of te streamen in AAC of AAC+, moet u <b>libfdk-aac</b> downloaden en op uw systeem installeren. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. De geïnstalleerde AAC-coderingsbibliotheek ondersteunt HE-AAC niet, alleen gewone AAC. Configureer een ander coderingsformaat in de voorkeuren. @@ -10147,54 +10214,54 @@ Volledig rechts: einde van de effectperiode RekordboxFeature - - - + + + Rekordbox Rekordbox - + Playlists Speellijsten - + Folders Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: Leest databases die zijn geëxporteerd voor Pioneer CDJ / XDJ-spelers met behulp van de <br/>Rekordbox Exportmodus.Rekordbox kan alleen exporteren naar USB- of SD-apparaten met een FAT- of HFS-bestandssysteem. <br/>Mixxx kan een database lezen van elk apparaat dat de databasemappen bevat (<tt>PIONEER</tt> en <tt>Inhoud</tt>). <br/>Niet ondersteund worden Rekordbox-databases die zijn verplaatst naar een extern apparaat via <br/><i>Voorkeuren > Geavanceerd > Databasebeheer</i>.<br/><br/>De volgende gegevens worden gelezen: - + Hot cues Hot cues - + Loops (only the first loop is currently usable in Mixxx) Loops (alleen de eerste loop is momenteel bruikbaar in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) Controleer op aangesloten Rekordbox USB / SD-apparaten (vernieuwen) - + Beatgrids Beat-rasters - + Memory cues Memory cues - + (loading) Rekordbox (laden) Rekordbox @@ -10203,7 +10270,7 @@ Volledig rechts: einde van de effectperiode RhythmboxFeature - + Rhythmbox Rhythmbox @@ -10254,34 +10321,34 @@ Volledig rechts: einde van de effectperiode SeratoFeature - - - + + + Serato Serato - + Reads the following from the Serato Music directory and removable devices: Leest het volgende uit de Serato Music-directory en verwijderbare apparaten: - + Tracks Tracks - + Crates Kratten - + Check for Serato databases (refresh) Controleer op Serato-databases (vernieuwen) - + (loading) Serato (laden) Serato @@ -10291,12 +10358,12 @@ Volledig rechts: einde van de effectperiode Join with previous (below) - + Voeg bij de vorige (hieronder) Finish current and start new - + Huidige beëindigen en nieuw beginnen @@ -10304,12 +10371,12 @@ Volledig rechts: einde van de effectperiode Historiek - + Unlock Ontgrendel - + Lock Vergrendelen @@ -11268,6 +11335,31 @@ Volledig rechts: einde van de effectperiode Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. Stuurt de audio van het geselecteerde kanaal naar de hoofdtelefoonuitgang, geselecteerd in Voorkeuren -> Geluidshardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -11281,17 +11373,17 @@ Volledig rechts: einde van de effectperiode Displays the current range of the tempo slider. - + Geeft het huidige bereik van de temposchuifregelaar weer. Delete selected hotcue. - + Verwijder de geselecteerde hotcue. Opens separate artwork viewer. - + Opent een aparte viewer voor artwork. @@ -11316,47 +11408,47 @@ Volledig rechts: einde van de effectperiode Main Output Peak Indicator - + Piekindicator hoofduitgang Indicates when the signal on the main output is clipping, - + Geeft aan wanneer het signaal op de hoofduitgang aan het clippen is, Main Output L Peak Indicator - + Hoofduitgang L Piekindicator Indicates when the left signal on the main output is clipping, - + Geeft aan wanneer het linker signaal op de hoofduitgang aan het clippen is, Main Output R Peak Indicator - + Hoofduitgang R Piekindicator Indicates when the right signal on the main output is clipping, - + Geeft aan wanneer het rechtersignaal op de hoofduitgang aan het clippen is, Main Channel L Volume Meter - + Volumemeter hoofdkanaal L Shows the current volume for the left channel of the main output. - + Toont het huidige volume voor het linkerkanaal van de hoofduitgang. Shows the current volume for the right channel of the main output. - + Toont het huidige volume voor het rechterkanaal van de hoofduitgang. @@ -11368,27 +11460,27 @@ Volledig rechts: einde van de effectperiode Adjusts the main output gain. - + Past de versterking van de hoofduitgang aan. Determines the main output by fading between the left and right channels. - + Bepaalt de hoofduitgang door te faden tussen de linker- en rechterkanalen. Adjusts the left/right channel balance on the main output. - + Regelt de balans van het linker/rechterkanaal op de hoofduitgang. Crossfades the headphone output between the main mix and cueing (PFL or Pre-Fader Listening) signal. - + Crossfades van de hoofdtelefoonuitgang tussen de hoofdmix en het cueing-signaal (PFL of Pre-Fader Listening). If activated, the main mix signal plays in the right channel, while the cueing signal plays in the left channel. - + Indien geactiveerd, speelt het hoofdmixsignaal in het rechterkanaal, terwijl het cueing-signaal in het linkerkanaal speelt. @@ -11423,79 +11515,79 @@ Volledig rechts: einde van de effectperiode mix microphone input into the main output. - + meng de microfooningang met de hoofduitgang. Auto: Automatically reduce music volume when microphone volume rises above threshold. - + Auto: automatisch het muziekvolume verlagen wanneer het microfoonvolume boven de drempel komt. Adjust the amount the music volume is reduced with the Strength knob. - + Pas de hoeveelheid aan waarmee het muziekvolume wordt verlaagd met de Sterkte-knop. Auto: Sets how much to reduce the music volume when the volume of active microphones rises above threshold. - + Auto: Stelt in hoeveel het muziekvolume moet worden verlaagd wanneer het volume van de actieve microfoons boven de drempel komt. Manual: Sets how much to reduce the music volume, when talkover is activated regardless of volume of microphone inputs. - + Handmatig: Stelt in hoeveel het muziekvolume moet worden verlaagd, wanneer talkover wordt geactiveerd, ongeacht het volume van de microfooningangen. Shift cues earlier - + Verplaats cues naar eerder Shift cues imported from Serato or Rekordbox if they are slightly off time. - + Verschuif cues geïmporteerd uit Serato of Rekordbox als ze een beetje uit de maat staan. Left click: shift 10 milliseconds earlier - + Linker klik: 10 milliseconden eerder verschuiven Right click: shift 1 millisecond earlier - + Rechts klikken: shift 1 milliseconde eerder Shift cues later - + Verschuif cues later Left click: shift 10 milliseconds later - + Linker klik: 10 milliseconden later verschuiven Right click: shift 1 millisecond later - + Rechts klikken: 1 milliseconde later verschuiven Mutes the selected channel's audio in the main output. - + Dempt de audio van het geselecteerde kanaal in de hoofduitgang. Main mix enable - + Hoofdmix inschakelen Hold or short click for latching to mix this input into the main output. - + Houd ingedrukt of klik kort om te vergrendelen om deze invoer te mengen met de hoofduitvoer. @@ -11505,7 +11597,7 @@ Volledig rechts: einde van de effectperiode Auto DJ is active - + Auto DJ is actief @@ -11670,7 +11762,7 @@ Volledig rechts: einde van de effectperiode Hint: Change the time format in Preferences -> Decks. - + Hint: Wijzig het tijdformaat in Voorkeuren -> Decks. @@ -11768,7 +11860,7 @@ Gebruik deze optie om alleen het verwerkte (Wet) signaal met EQ en filtereffecte Route the main mix through this effect unit. - + Leid de hoofdmix door deze effecteenheid. @@ -12413,12 +12505,12 @@ Gebruik deze optie om alleen het verwerkte (Wet) signaal met EQ en filtereffecte Opens the track properties editor - + Opent de track eigenschappen editor Opens the track context menu. - + Opent het track contextmenu. @@ -12445,11 +12537,6 @@ Gebruik deze optie om alleen het verwerkte (Wet) signaal met EQ en filtereffecte Old Synchronize Oude synchronisatie - - - (This skin should be updated to use Master Sync!) - (Deze skin moet worden bijgewerkt om Master Sync te gebruiken!) - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12465,16 +12552,6 @@ Gebruik deze optie om alleen het verwerkte (Wet) signaal met EQ en filtereffecte Decks can't sync to samplers and samplers can only sync to decks. Spelers kunnen niet worden gesynchroniseerd met samplers en samplers kunnen alleen worden gesynchroniseerd met decks. - - - Enable Master Sync - Schakel Master Sync in - - - - Tap to sync the tempo to other playing tracks or the master clock. - Tik om het tempo te synchroniseren met andere tracks die worden afgespeeld of met de hoofdklok. - Hold for at least a second to enable sync lock for this deck. @@ -12490,16 +12567,6 @@ Gebruik deze optie om alleen het verwerkte (Wet) signaal met EQ en filtereffecte Resets the key to the original track key. Herstelt de toonaard naar de originele track-toonaard. - - - Enable Sync Clock Master - Schakel Sync Clock Master in - - - - When enabled, this device will serve as the master clock for all other decks. - Indien ingeschakeld, zal dit apparaat dienen als de masterklok voor alle andere decks. - Speed Control @@ -13053,22 +13120,22 @@ Gebruik deze optie om alleen het verwerkte (Wet) signaal met EQ en filtereffecte TraktorFeature - + Traktor Traktor - + (loading) Traktor (laden) Tractor - + Error Loading Traktor Library Fout bij het laden van de Traktor-bibliotheek - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. Er is een fout opgetreden bij het laden van uw Traktor-bibliotheek. Sommige van uw Traktor-tracks of afspeellijsten zijn mogelijk niet geladen. @@ -13289,12 +13356,12 @@ Gebruik deze optie om alleen het verwerkte (Wet) signaal met EQ en filtereffecte E&xport Library to Engine Prime - + E&xporteer Bibliotheek naar Engine Prime Export the library to the Engine Prime format - + Exporteer de bibliotheek naar het Engine Prime formaat @@ -13607,19 +13674,19 @@ Gebruik deze optie om alleen het verwerkte (Wet) signaal met EQ en filtereffecte Show Keywheel menu title - + Toon Keywheel Show keywheel tooltip text - + Toon keywheel F12 Menubar|View|Show Keywheel - + F12 @@ -13680,23 +13747,23 @@ Gebruik deze optie om alleen het verwerkte (Wet) signaal met EQ en filtereffecte Passthrough - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - + Klaar om te spelen, analyseren... - - + + Loading track... Text on waveform overview when file is cached from source - + Track laden... - + Finalizing... Text on waveform overview during finalizing of waveform analysis - + Finaliseren... @@ -13776,13 +13843,13 @@ Gebruik deze optie om alleen het verwerkte (Wet) signaal met EQ en filtereffecte Ctrl+Space - + Ctrl+Spatie Toggle search history Shows/hides the search history entries - + Toggle zoekgeschiedenis @@ -13801,7 +13868,7 @@ Gebruik deze optie om alleen het verwerkte (Wet) signaal met EQ en filtereffecte Search related Tracks - + Zoek gerelateerde Tracks @@ -13811,7 +13878,7 @@ Gebruik deze optie om alleen het verwerkte (Wet) signaal met EQ en filtereffecte harmonic with %1 - + harmonisch met %1 @@ -13821,7 +13888,7 @@ Gebruik deze optie om alleen het verwerkte (Wet) signaal met EQ en filtereffecte between %1 and %2 - + tussen %1 en %2 @@ -13864,8 +13931,8 @@ Gebruik deze optie om alleen het verwerkte (Wet) signaal met EQ en filtereffecte Genre - - Folder + + Directory @@ -14108,163 +14175,168 @@ Gebruik deze optie om alleen het verwerkte (Wet) signaal met EQ en filtereffecte Herstel BPM - + + Update ReplayGain from Deck Gain + + + + Deck %1 Deck %1 - + Sampler %1 Sampler %1 - + Importing metadata of %n track(s) from file tags - + Importeren van metadata van %n track(s) uit bestandstagsImporteren van metadata van %n track(s) uit bestandstags - + Marking metadata of %n track(s) to be exported into file tags - + Markering van metadata van %n track(s) om te exporteren naar bestandstagsMarkering van metadata van %n track(s) om te exporteren naar bestandstags - - + + Create New Playlist Nieuwe Afspeellijst aanmaken - + Enter name for new playlist: Voer naam in voor nieuwe afspeellijst: - + New Playlist Nieuwe Afspeellijst - - - + + + Playlist Creation Failed Aanmaak van afspeellijst mislukt - + A playlist by that name already exists. Een afspeellijst met deze naam bestaan reeds. - + A playlist cannot have a blank name. Een Afspeellijst kan geen blanco naam bevatten. - + An unknown error occurred while creating playlist: Er is een onbekende fout opgetreden tijdens het maken van de afspeellijst: - + Add to New Crate Voeg toe aan nieuwe krat - + Scaling BPM of %n track(s) - + BPM van %n track(s) schalenBPM van %n track(s) schalen - + Locking BPM of %n track(s) - + BPM van %n track(s) vergrendelenBPM van %n track(s) vergrendelen - + Unlocking BPM of %n track(s) - + BPM van %n track(s) ontgrendelenBPM van %n track(s) ontgrendelen - + Setting color of %n track(s) - + Kleur instellen van %n track(s)Kleur instellen van %n track(s) - + Resetting play count of %n track(s) - + Afspeeltelling van %n track(s) resettenAfspeeltelling van %n track(s) resetten - + Resetting beats of %n track(s) - + Beats van %n track(s) resettenBeats van %n track(s) resetten - + Clearing rating of %n track(s) - + Beoordeling van %n track(s) wissenBeoordeling van %n track(s) wissen - + Removing main cue from %n track(s) - + Hoofdcue verwijderen uit %n track(s)Hoofdcue verwijderen uit %n track(s) - + Removing outro cue from %n track(s) - + Outro cue verwijderen van %n track(s)Outro cue verwijderen van %n track(s) - + Removing intro cue from %n track(s) - + Intro cue verwijderen van %n track(s)Intro cue verwijderen van %n track(s) - + Removing loop cues from %n track(s) - + Loop cues verwijderen uit %n track(s)Loop cues verwijderen uit %n track(s) - + Removing hot cues from %n track(s) - + Hot cues verwijderen uit %n track(s)Hot cues verwijderen uit %n track(s) - + Resetting keys of %n track(s) - + Keys van %n track(s) resettenKeys van %n track(s) resetten - + Resetting replay gain of %n track(s) - + Replay gain van %n track(s) resettenReplay gain van %n track(s) resetten - + Resetting waveform of %n track(s) - + Waveform van %n track(s) resettenWaveform van %n track(s) resetten - + Resetting all performance metadata of %n track(s) - + Alle prestatiemetadata van %n track(s) resettenAlle prestatiemetadata van %n track(s) resetten - + Setting cover art of %n track(s) - + Cover Art van %n track(s) instellenCover Art van %n track(s) instellen - + Reloading cover art of %n track(s) - + Cover Art van %n nummer(s) opnieuw ladenCover Art van %n nummer(s) opnieuw laden WTrackTableView - + ESC Focus ESC @@ -14301,128 +14373,55 @@ Gebruik deze optie om alleen het verwerkte (Wet) signaal met EQ en filtereffecte (GL ES) - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + lettertypen - + database - + database - + effects - + effecten - + audio interface - + audio interface - + decks - + decks - + library - + bibliotheek - + Choose music library directory Kies de map voor de muziekbibliotheek - + controllers - + controllers - + Cannot open database Kan database niet openen - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14438,32 +14437,32 @@ Klik op OK om af te sluiten. Entire music library - + Volledige muziekbibliotheek Selected crates - + Geselecteerde kratten Browse - + Bladeren Export directory - + Exporteer map Database version - + Database versie Export - + Exporteer @@ -14473,37 +14472,37 @@ Klik op OK om af te sluiten. Export Library to Engine Prime - + Exporteer Bibliotheek naar Engine Prime Export Library To - + Exporteer bibliotheek Naar No Export Directory Chosen - + Geen Export Map gekozen No export directory was chosen. Please choose a directory in order to export the music library. - + Er is geen exportmap gekozen. Kies een map om de muziekbibliotheek te exporteren. A database already exists in the chosen directory, but it is of an unsupported version. Export is not guaranteed to succeed in this situation. - + Er bestaat al een database in de gekozen directory, maar deze is van een niet-ondersteunde versie. Export zal in deze situatie niet gegarandeerd slagen. A database already exists in the chosen directory. Exported tracks will be added into this database. - + Er bestaat al een database in de gekozen directory. Geëxporteerde tracks worden aan deze database toegevoegd. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. - + Er bestaat al een database in de gekozen directory, maar er is een probleem opgetreden bij het laden ervan. Export zal in deze situatie niet gegarandeerd slagen. @@ -14524,27 +14523,27 @@ Klik op OK om af te sluiten. Export Completed - + Exporteren voltooid Exported %1 track(s) and %2 crate(s). - + %1 track(s) en %2 krat(ten) geëxporteerd. Export Failed - + Exporteren mislukt Export failed: %1 - + Export mislukt: %1 Exporting to Engine Prime... - + Exporteren naar Engine Prime... @@ -14558,64 +14557,64 @@ Klik op OK om af te sluiten. mixxx::hid::DeviceCategory - + HID Interface %1: - + HID Interface %1: - + Generic HID Pointer - + Generieke HID-pointer - + Generic HID Mouse Generieke HID Muis - + Generic HID Joystick Generieke HID Joystick - + Generic HID Game Pad - + Generieke HID-gamepad - + Generic HID Keyboard Generieke HID Toetsenbord - + Generic HID Keypad - + Generieke HID-keypad - + Generic HID Multi-axis Controller - + Generieke HID Multi-axis Controller - + Unknown HID Desktop Device: - + Onbekend HID Desktop Apparaat: - + Apple HID Infrared Control - + Apple HID Infrarood Bediening - + Unknown Apple HID Device: - + Onbekend Apple HID-apparaat: - + Unknown HID Device: - + Onbekend HID-apparaat: @@ -14631,7 +14630,7 @@ Klik op OK om af te sluiten. No effect loaded. - + Geen effect geladen. \ No newline at end of file diff --git a/res/translations/mixxx_nl_NL.qm b/res/translations/mixxx_nl_NL.qm index 135ddb9d5ada4fbaad6d988d774df445c5aaa49e..390f6c772f7d44ca220753207776131a9bf2fc60 100644 GIT binary patch delta 5434 zcmXY#c|c9+8^@n}&pCHrLJ?ybMhJsOvKA@|m93bRCaEF&*!P2^Rf8+irnJZ&g^Cs} zgk*$>Bq~|Pn9(q{Uw+>^@BH<-XM5h~efIa(hVglyxpAX%{LQbuiI2X~y>p>&a{eQG zBC}mY^c_*#m7oPtF`$`xKAj5dSLc#bb@n1Snqn>CQ^pBcGG<_b?83;Er7x#=T zg=O8ZK!Mjp9+!!d%!z`Q5``C&v<}vePB-LBx{Be`iT`aJQK~=jwOH#+2jbtrY-b!9 zbBVEZJ_)LPqVG46FeHvh`-tv7(W?mZDBlDPlEFhqOR*0`!8oKc=s!8D5T z#7xGL4J0JDV*dw8IOa?AGe<%uVq`&}ks?u97ZQpBh|HrH`;{=p_Fyc;0>F_sS_N5%(L@13jFlg$@9%?%ep^TV9h-)je{cwb){scU>{!){NYP5Z{T188Z^7 zw@07=-?`9_ox2kaHl-i0A0UcY%~-UZX3c|Q_oo;(@myYCAiAhwEbwD|R8L+3 zCy5*@$Xf>a8CB#RbQWpfp1gP5C0gT00bXT9+j~)f(KBsF(vnNIC^pAwSw=n4$fdM@ zA4kM12;DdDSTb|z1)eaPD;ejy@;lmOODSE zBwBPva(oFKvGAtkngzac^;k{2tn!;RY*g90U=2i+m+vRkSv z$wT=_mg@6Ok!2^OZPvEHC3aG?gKvpu>ZJZ(VUa8MqzgMh&WN?r;MO5Tn?z}-R}@i) zD#m^$jL(iqW35mMH{?rW#qkiZQj{LvS4wpAob*@?c04IvdgfsbkZYsTy zi*i@fNt)jc3(c{R7F0vAoy(+`vOg02GEREAD4J-?PU)@MzlprRN^ z03!d6+{8#MWzl$q{;s^OfYm809 zhhL@|K;#?1uYCK2Xm}XEvIQ;}E`H@#S9ubpE#lW_n4*>K{lt#T^VRX zRIT98ESp0#TI9=;;Nq-gzFZ1db{)ZAOIw2a_?W*t+XwmY=E7HRF%~cr#={5sYQuJ- zJsKza>*Rtceb1P8fU#^Q#Rb<`_)Y{t9E?k&H#xg#(|kQ+qcd zE;I%ezJ&2%N8xA$T-r5LI9gsv^y@3e^J$EwZ-jF#7D)T6LXkM5C(+nAp~%SVrb3yq zcWt$1EOB7G>@M7{Hb9W6P(93zNcM!W&O@jk1;tl73H9fYJ=P6EgB&rC7v+>v*f4L``_%}BQkg)(gyQ&_}TW_Dm0 z+WrGs&pl~GQc*TEawM9mtIWZ54+cIvzWd?TocmGN(#B?><4c$O>tF zG)lJGWh@F*l5B&FLzcY|Wg8TT?ps<}P)!EWPin@>2-(gN4yf@P88cmEF>R5*qhe$w z33jM}xw6aJ&4`f{S@|!x@6lU!-S7tl3$lvp6u8t@_FEE~8fPl2J6{U9@v`Tw6YyTE z?8QXvJlj|Hx)avzVQ|!R5Yu|dJ4eqVQXgh~`c`iF;1a6E6UJvReQzY8fK+YybS_u^2 z&nb?yj={-jhT^E$(1>wOp*WFeP1L7Fku&H87HCvldykzZL@^!~6xU5Lbb{n2Xy zyRloL?3}41>Yt|UxeXs4TBiJ=7K;7QUO99QOqsGlIjrkmj7g2kiM0X9O)sVEyjEC3 z$+*W$=~=k~=RLjBC+s#+NGGM=MPH=MGUeP?Sg`awW5o#N{02LsBMu__Q8-({nJ{%|nldRr5etPVlQ+YKW9k^Ml_|5^Kg9%XS*XnOM>2+vSLXd(f|F?v#+?1i z(rcI=ejKa3wKNI>(+z@2FR|W4`P>~HZ`E|h)oYY5Yg2GQ+^_r`<%yH1T>1HYCK#st zpGOPP;W5guHRucRpH=)n8=&WOm0~VD-o1eF_#4%L92oFkqiUcta^dhRm5m=-e!ykb znCsBjs*v$=oyyh!BykjPZ8%}lRa_OP@*jneU0tMFbc@5V^sOr9HugQroiR6o@oK8- zKrxT1?aOGgfU&Vcb)aSms{bFV#A*Tk%U+f2UxrX!tUB}w!&6*@>X_{loV2^Cj@u3) zS{A0ttwL3@UHmUaDwVPuPYYBRoY$e)wJ<9BFbK9rFT$cUFP0TvS_iyz6$%EMpi;2dh(RAt%J0G2$P_NL%&!cA_N)fb%F)873w+!~m=q(am7IqISH5KZSCD3EHd>E10B)gWIp z;Ce@tsZScKPjFRiy~gGZLSVuNjs4Xh;F>VTn}an@d;Z4A@~6g0H2z5ZiQPDtq?s7! z2;Ws`rpwg>LSJ`FEmvK?4-Yi=6;vWMBN5z{*vY3AU}xlx{v1VJ(%9kSMzC*9j3mK zj9cGp&18N^(uvwG-m4IV-L!qZv(Pv#M6ILeTg;ooK`eN8Gx!cH(N36Lie4GPSnR?0 zbcWVd1I;(J(Yl3Tr%p$-o~^0q9BZ|Ho;@)AIcfvPk3a!$(k`^DM2p&|UArGy>6NJ6 z;n4;z^3m=dQ%5A<##lG?wf2C~M|SDj+$1a<=cX;NNBVdH&ihv+=sR!CNqUb!JpL zFh1#~tG_=0owQunl=Bc1%rjl<1vsvJqwecBQp^J7kM-J?ztBil=-c#9L@dtGxAFEw zS@qI)>|BHLa$i3%4Q0Ujlin%_3#A>^5AndYom@Yn&vG1nR_I3??xIoI>H|-?6BVW~ zKHQ;Sa17b*?914&LZ4P?h3h!|*%2*7XM5=LhVsKP1&!6;eSr_X-Sqd{mEd2ou8fIm!eYyuir-||U(Lkc-O2d|v{#kDAH``^^drVUs#{0!&jSlGYt>Ibl#Vr4j RJT5CbqK7ogEb7YY{{wPnjvoL3 delta 6761 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 Cy4$D# diff --git a/res/translations/mixxx_nl_NL.ts b/res/translations/mixxx_nl_NL.ts index fc0e41b12b7..2f1577e576e 100644 --- a/res/translations/mixxx_nl_NL.ts +++ b/res/translations/mixxx_nl_NL.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Kratten - + Remove Crate as Track Source Verwijder Krat als bron voor Tracks - + Auto DJ Auto DJ - + Add Crate as Track Source Voeg Krat toe als bron voor Tracks @@ -43,25 +43,25 @@ BansheeFeature - + Banshee Banshee - - + + Error loading Banshee database Fout bij het laden van de Banshee database - + Banshee database file not found at Banshee database bestand niet gevonden op - + There was an error loading your Banshee database at Er was een fout opgetreden bij het laden van je Banshee database op @@ -71,32 +71,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Voeg toe aan Auto DJ Wachtrij (onder) - + Add to Auto DJ Queue (top) Voeg toe aan Auto DJ Wachtrij (boven) - + Add to Auto DJ Queue (replace) - + Import Playlist Importeer Afspeellijst - + Playlist Creation Failed Aanmaken Afspeellijst Mislukt - + An unknown error occurred while creating playlist: Een onbekende fout trad op bij het creëren van afspeellijst: @@ -104,144 +104,144 @@ BasePlaylistFeature - + New Playlist Nieuwe Afspeellijst - + Add to Auto DJ Queue (bottom) Voeg toe aan Auto DJ Wachtrij (onder) - - + + Create New Playlist Creëer nieuwe afspeellijst - + Add to Auto DJ Queue (top) Voeg toe aan Auto DJ Wachtrij (boven) - + Remove Verwijder - + Rename Hernoem - + Lock Zet vast - + Duplicate Dupliceren - - + + Import Playlist Importeer Afspeellijst - + Export Track Files Exporteer Track Bestanden - + Analyze entire Playlist Analyseer hele afspeellijst - + Enter new name for playlist: Geef nieuwe naam voor afspeellijst: - + Duplicate Playlist Dupliceer afspeellijst - - + + Enter name for new playlist: Geef naam voor nieuwe afspeellijst: - - + + Export Playlist Exporteer afspeellijst - + Add to Auto DJ Queue (replace) - + Rename Playlist Hernoem afspeellijst - - + + Renaming Playlist Failed Hernoemen Afspeellijst Mislukt - - - + + + A playlist by that name already exists. Een afspeellijst met die naam bestaat al. - - - + + + A playlist cannot have a blank name. Een afspeellijst kan geen blanco naam hebben. - + _copy //: Appendix to default name when duplicating a playlist _kopie - - - - - - + + + + + + Playlist Creation Failed Aanmaken Afspeellijst Mislukt - - + + An unknown error occurred while creating playlist: Een onbekende fout trad op bij het creëren van afspeellijst: - + M3U Playlist (*.m3u) M3U Afspeellijst (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U Afspeellijst (*.m3u);;M3U8 Afspellijst (*.m3u8);;PLS Playlist (*.pls);;Tekst CSV (*.csv);;Leesbare Tekst (*.txt) @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Kan track niet laden. @@ -514,7 +514,7 @@ - + Computer Computer @@ -534,7 +534,7 @@ Scan - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. "Computer" laat je tracks bekijken en laden vanuit mappen op je harde schijf en externe apparaten. @@ -647,12 +647,12 @@ Bestand Aangemaakt - + Mixxx Library Mixxx Bibliotheek - + Could not load the following file because it is in use by Mixxx or another application. Kan het volgende bestand niet laden, omdat het in gebruik is door Mixxx of een andere applicatie. @@ -683,6 +683,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -865,13 +943,13 @@ - + Set to full volume Zet tot maximaal volume - + Set to zero volume Zet volume op nul @@ -896,13 +974,13 @@ Omgekeerde roll (Censor) knop - + Headphone listen button Hoofdtelefoon luister knop - + Mute button Demp knop @@ -918,25 +996,25 @@ - + Mix orientation (e.g. left, right, center) Mix richting (bijv. links, rechts, midden) - + Set mix orientation to left Zet mix richting naar links - + Set mix orientation to center Zet mix richting naar midden - + Set mix orientation to right Zet mix richting naar rechts @@ -980,36 +1058,6 @@ Toggle quantize mode Schakel kwantiseer modus - - - Increase internal master BPM by 1 - Verhoog interne master BPM met 1 - - - - Decrease internal master BPM by 1 - Verlaag interne master BPM met 1 - - - - Increase internal master BPM by 0.1 - Verhoog interne master BPM met 0,1 - - - - Decrease internal master BPM by 0.1 - Verlaag interne master BPM met 0,1 - - - - Toggle sync master - Schakel sync master - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - Sync modus 3-staats schakelaar (OFF, FOLLOWER, MASTER) - One-time beat sync (tempo only) @@ -1021,7 +1069,7 @@ Eenmalige beat sync (alleen fase) - + Toggle keylock mode Schakel toonvergrendeling modus @@ -1031,199 +1079,199 @@ Equalizers - + Vinyl Control Vinyl Besturing - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) Schakel vinylbestuuring cue modus (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) Schakel vinylbesturing cue modus (ABS/REL/CONST) - + Pass through external audio into the internal mixer Laat externe audio door naar de interne mixer - + Cues Cues - + Cue button Cue knop - + Set cue point Zet cuepoint - + Go to cue point Ga naar cuepoint - + Go to cue point and play Ga naar cuepoint en speel af - + Go to cue point and stop Ga naar cuepoint en stop - + Preview from cue point Voorvertoning vanaf cuepoint - + Cue button (CDJ mode) Cue knop (CDJ modus) - + Stutter cue Stotter cue - + Hotcues Hotcues - + Set, preview from or jump to hotcue %1 Zet, voorvertoon vanaf of spring naar hotcue %1 - + Clear hotcue %1 Wis hotcue %1 - + Set hotcue %1 Zet hotcue %1 - + Jump to hotcue %1 Spring naar hotcue %1 - + Jump to hotcue %1 and stop Spring naar hotcue %1 en stop - + Jump to hotcue %1 and play Spring naar hotcue %1 en speel af - + Preview from hotcue %1 Voorvertoon vanaf hotcue %1 - - + + Hotcue %1 Hotcue %1 - + Looping Loop'en - + Loop In button Loop In knop - + Loop Out button Loop Out knop - + Loop Exit button Loop Exit knop - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 32 - + 64 64 - + Move loop forward by %1 beats Verplaats loop %1 beats vooruit - + Move loop backward by %1 beats Verplaats loop %1 beats achteruit - + Create %1-beat loop Maak %1-beat loop - + Create temporary %1-beat loop roll Maak tijdelijke %1-beat loop roll - + Library Bibliotheek @@ -1334,20 +1382,20 @@ - - + + Volume Fader Volume Fader - + Full Volume Maximaal Volume - + Zero Volume Nul Volume @@ -1363,7 +1411,7 @@ - + Mute Dempen @@ -1374,7 +1422,7 @@ - + Headphone Listen Hoofdtelefoon Luisteren @@ -1395,25 +1443,25 @@ - + Orientation Orientatie - + Orient Left Richting Links - + Orient Center Richting Midden - + Orient Right Richting Rechts @@ -1512,52 +1560,6 @@ Sync Synchroniseer - - - Sync Mode - Sync Modus - - - - Internal Sync Master - Interne Sync Master - - - - Toggle Internal Sync Master - Schakel Interne Sync Master - - - - - Internal Master BPM - Interne Master BPM - - - - Internal Master BPM +1 - Interne Master BPM +1 - - - - Internal Master BPM -1 - Interne Master BPM -1 - - - - Internal Master BPM +0.1 - Interne Master BPM +0,1 - - - - Internal Master BPM -0.1 - Interne Master BPM -0,1 - - - - Sync Master - Sync Master - Beat Sync One-Shot @@ -1574,37 +1576,37 @@ Sync Fase One-Shot - + Pitch control (does not affect tempo), center is original pitch Toonhoogte besturing (heeft geen invloed op tempo), midden is de originele toonhoogte - + Pitch Adjust Toonhoogte Bijstellen - + Adjust pitch from speed slider pitch Stel toonhoogte bij van snelheidsslider toonhoogte - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1645,466 +1647,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 1/32 - + 1/16 1/16 - + 1/8 1/8 - + 1/4 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) Voeg toe aan Auto DJ Wachtrij (onder) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) Voeg toe aan Auto DJ Wachtrij (boven) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix Neem mix op - + Toggle mix recording - + Effects Effecten - + Quick Effects Snelle Effecten - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect Snel Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet Droog/Nat - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob Super Knop - + Next Chain - + Assign Toewijzen - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next Volgende - + Switch to next effect Schakel naar het volgende effect - + Previous Vorige - + Switch to the previous effect Schakel naar het vorige effect - + Next or Previous Volgende of Vorige - + Switch to either next or previous effect Schakel naar het volgende of vorige effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2129,93 +2131,93 @@ - + Playback Speed Afspeelsnelheid - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed Versnellen - + Adjust speed faster (coarse) Aanpassen versnellen (grof) - - + + Increase Speed (Fine) Versnellen (Fijn) - + Adjust speed faster (fine) Aanpassen versnellen (fijn) - + Decrease Speed Vertragen - + Adjust speed slower (coarse) Aanpassen vertragen (grof) - + Adjust speed slower (fine) Aanpassen vertragen (fijn) - + Temporarily Increase Speed Tijdelijk Versnellen - + Temporarily increase speed (coarse) Tijdelijk Versnellen (grof) - + Temporarily Increase Speed (Fine) Tijdelijk Versnellen (Fijn) - + Temporarily increase speed (fine) Tijdelijk versnellen (fijn) - + Temporarily Decrease Speed Tijdelijk Vertragen - + Temporarily decrease speed (coarse) Tijdelijk vertragen (grof) - + Temporarily Decrease Speed (Fine) Tijdelijk Vertragen (Fijn) - + Temporarily decrease speed (fine) Tijdelijk vertragen (fijn) @@ -2272,806 +2274,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up Omhoog - + Equivalent to pressing the UP key on the keyboard - + Move down Omlaag - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down Beweeg omhoog/omlaag - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up Scroll Omhoog - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down Scroll Omlaag - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down Scroll omhoog/omlaag - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left Naar links - + Equivalent to pressing the LEFT key on the keyboard - + Move right Naar rechts - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right Beweeg links/rechts - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item Ga naar het huidig geselecteerde item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off Microfoon Aan/Uit - + Microphone on/off Microfoon aan/uit - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ Auto DJ - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface Gebruikers interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3160,32 +3228,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3221,133 +3289,133 @@ CrateFeature - + Remove Verwijder - - + + Create New Crate Maak nieuwe krat - + Rename Hernoem - - + + Lock Zet vast - + Export Crate as Playlist - + Export Track Files Exporteer Track Bestanden - + Duplicate Dupliceren - + Analyze entire Crate Analyseer gehele krat - + Auto DJ Track Source - + Enter new name for crate: Geef nieuwe naam voor krat - - + + Crates Kratten - - + + Import Crate Importeer krat - + Export Crate Exporteer krat - + Unlock Onsluit - + An unknown error occurred while creating crate: Een onbekende fout heeft plaatsgevonden bij het aanmaken van de krat: - + Rename Crate Hernoem krat - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed Hernoemen krat mislukt - + Crate Creation Failed Aanmaken krat mislukt - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U Afspeellijst (*.m3u);;M3U8 Afspellijst (*.m3u8);;PLS Playlist (*.pls);;Tekst CSV (*.csv);;Leesbare Tekst (*.txt) - + Crates are a great way to help organize the music you want to DJ with. Kratten zijn een geweldige hulpmiddel om de muziek waarmee je wilt dj'en te helpen organiseren. - + Crates let you organize your music however you'd like! Met kratten kun je je muziek organiseren zoals je wilt! - + A crate cannot have a blank name. Een krat kan geen blanco naam hebben. - + A crate by that name already exists. Een krat met die naam bestaat al. @@ -3417,37 +3485,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4877,32 +4945,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin Huid - + Tool tips - + Select from different color schemes of a skin if available. - + Color scheme Kleuren schema - + Locales determine country and language specific settings. - + Locale @@ -4912,52 +4980,42 @@ Apply settings and continue? Interface Instellingen - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver Scherm beveiliging - + Start in full-screen mode - + Full-screen mode - + Off Uit - + Library only - + Library and Skin @@ -5568,38 +5626,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information Informatie - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5818,62 +5876,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added Muziek Folder Toegevoegd - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? Je hebt één of meerdere muziekmappen toegevoegd. De tracks in deze mappen zullen niet beschikbaar zijn totdat je de bibliotheek opnieuw scant. Wil je de bibliotheek nu scannen? - + Scan Scan - + Choose a music directory Kies een muziek folder - + Confirm Directory Removal Bevestig Folder Verwijdering - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6877,32 +6935,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7116,72 +7174,72 @@ Select from different types of displays for the waveform, which differ primarily Bibliotheek - + Interface - + Waveforms - + Auto DJ Auto DJ - + Equalizers Equalizers - + Decks - + Colors - + Crossfader Crossfader - + Effects Effecten - + LV2 Plugins - + Recording - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7191,12 +7249,12 @@ Select from different types of displays for the waveform, which differ primarily Vinyl Besturing - + Live Broadcasting - + Modplug Decoder @@ -7337,123 +7395,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Jaar - + Title Titel - - + + Artist Artiest - - + + Album Album - + Album Artist Album Artiest - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. Verkrijg API-Key - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7845,17 +7903,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7956,38 +8014,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7995,13 +8053,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8009,57 +8067,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut Snelkoppeling @@ -8080,22 +8138,22 @@ support. LibraryFeature - + Import Playlist Importeer Afspeellijst - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8106,27 +8164,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel Annuleer - + Scanning: - + Scanning cover art (safe to cancel) @@ -8242,181 +8300,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry Probeer opnieuw - + skin - - + + Reconfigure - + Help - - + + Exit - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8487,43 +8545,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Zet vast - + Playlists Afspeellijsten - + Unlock Onsluit - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist Creëer nieuwe afspeellijst @@ -8531,58 +8589,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8766,7 +8824,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9892,12 +9950,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10035,54 +10093,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists Afspeellijsten - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10091,7 +10149,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10142,34 +10200,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates Kratten - + Check for Serato databases (refresh) - + (loading) Serato @@ -10192,12 +10250,12 @@ Fully right: end of the effect period - + Unlock Onsluit - + Lock Zet vast @@ -11156,6 +11214,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12331,11 +12414,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12351,16 +12429,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12376,16 +12444,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12939,22 +12997,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13566,20 +13624,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13750,8 +13808,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Genre - - Folder + + Directory @@ -13994,155 +14052,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 Deck %1 - + Sampler %1 Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Creëer nieuwe afspeellijst - + Enter name for new playlist: Geef naam voor nieuwe afspeellijst: - + New Playlist Nieuwe Afspeellijst - - - + + + Playlist Creation Failed Aanmaken Afspeellijst Mislukt - + A playlist by that name already exists. Een afspeellijst met die naam bestaat al. - + A playlist cannot have a blank name. Een afspeellijst kan geen blanco naam hebben. - + An unknown error occurred while creating playlist: Een onbekende fout trad op bij het creëren van afspeellijst: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14150,7 +14213,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus ESC @@ -14187,128 +14250,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14384,7 +14374,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14441,62 +14431,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard Generiek HID Toetsenbord - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_nn.ts b/res/translations/mixxx_nn.ts index bcddd0c5c9d..65d224bc1a2 100644 --- a/res/translations/mixxx_nn.ts +++ b/res/translations/mixxx_nn.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Kassar - + Remove Crate as Track Source - + Auto DJ Automatisk DJ - + Add Crate as Track Source @@ -43,24 +43,24 @@ BansheeFeature - + Banshee - - + + Error loading Banshee database - + Banshee database file not found at - + There was an error loading your Banshee database at @@ -69,32 +69,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) - + Add to Auto DJ Queue (top) - + Add to Auto DJ Queue (replace) - + Import Playlist Importer Speleliste - + Playlist Creation Failed - + An unknown error occurred while creating playlist: @@ -102,144 +102,144 @@ BasePlaylistFeature - + New Playlist - + Add to Auto DJ Queue (bottom) - - + + Create New Playlist - + Add to Auto DJ Queue (top) - + Remove Fjern - + Rename Endra namn - + Lock Lås - + Duplicate - - + + Import Playlist Importer Speleliste - + Export Track Files - + Analyze entire Playlist - + Enter new name for playlist: - + Duplicate Playlist - - + + Enter name for new playlist: - - + + Export Playlist - + Add to Auto DJ Queue (replace) - + Rename Playlist - - + + Renaming Playlist Failed - - - + + + A playlist by that name already exists. - - - + + + A playlist cannot have a blank name. - + _copy //: Appendix to default name when duplicating a playlist - - - - - - + + + + + + Playlist Creation Failed - - + + An unknown error occurred while creating playlist: - + M3U Playlist (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Kunne ikkje åpna sangen @@ -512,7 +512,7 @@ - + Computer @@ -532,7 +532,7 @@ - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -645,12 +645,12 @@ - + Mixxx Library Mixxx Bibliotek - + Could not load the following file because it is in use by Mixxx or another application. Kunne ikkje opna fila fordi at den er i bruk av Mixxx eller ein annan applikasjon. @@ -681,6 +681,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -863,13 +941,13 @@ - + Set to full volume - + Set to zero volume @@ -894,13 +972,13 @@ - + Headphone listen button - + Mute button @@ -916,25 +994,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -978,36 +1056,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1019,7 +1067,7 @@ - + Toggle keylock mode @@ -1029,199 +1077,199 @@ - + Vinyl Control - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 - + 1 - + 2 - + 4 - + 8 - + 16 - + 32 - + 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library @@ -1332,20 +1380,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1361,7 +1409,7 @@ - + Mute @@ -1372,7 +1420,7 @@ - + Headphone Listen @@ -1393,25 +1441,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1510,52 +1558,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1572,37 +1574,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1643,466 +1645,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix - + Toggle mix recording - + Effects - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next Neste - + Switch to next effect - + Previous Førre - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2127,93 +2129,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2270,806 +2272,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ Automatisk DJ - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3158,32 +3226,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3219,133 +3287,133 @@ CrateFeature - + Remove Fjern - - + + Create New Crate - + Rename Endra namn - - + + Lock Lås - + Export Crate as Playlist - + Export Track Files - + Duplicate - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates Kassar - - + + Import Crate - + Export Crate - + Unlock Lås opp - + An unknown error occurred while creating crate: Ein ukjend feil hende under laginga av kasse: - + Rename Crate Endra namn på Kasse - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed Endringa av kasse namnet feila - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) - + Crates are a great way to help organize the music you want to DJ with. - + Crates let you organize your music however you'd like! - + A crate cannot have a blank name. Ein kasse kan ikkje ha eit blankt namn. - + A crate by that name already exists. Ein kasse med det namnet finnst allereie @@ -3415,37 +3483,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4875,32 +4943,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin - + Tool tips - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4910,52 +4978,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off - + Library only - + Library and Skin @@ -5566,38 +5624,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5816,62 +5874,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6875,32 +6933,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7114,72 +7172,72 @@ Select from different types of displays for the waveform, which differ primarily - + Interface - + Waveforms - + Auto DJ Automatisk DJ - + Equalizers - + Decks - + Colors - + Crossfader - + Effects - + LV2 Plugins - + Recording - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7189,12 +7247,12 @@ Select from different types of displays for the waveform, which differ primarily - + Live Broadcasting - + Modplug Decoder @@ -7335,123 +7393,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year År - + Title Tittel - - + + Artist Artist - - + + Album Album - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7843,17 +7901,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7954,38 +8012,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7993,13 +8051,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8007,57 +8065,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8078,22 +8136,22 @@ support. LibraryFeature - + Import Playlist Importer Speleliste - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8104,27 +8162,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8240,181 +8298,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry - + skin - - + + Reconfigure - + Help - - + + Exit - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8485,43 +8543,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Lås - + Playlists - + Unlock Lås opp - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist @@ -8529,58 +8587,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8764,7 +8822,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9890,12 +9948,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10033,54 +10091,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10089,7 +10147,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10140,34 +10198,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates Kassar - + Check for Serato databases (refresh) - + (loading) Serato @@ -10190,12 +10248,12 @@ Fully right: end of the effect period - + Unlock Lås opp - + Lock Lås @@ -11154,6 +11212,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12329,11 +12412,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12349,16 +12427,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12374,16 +12442,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12937,22 +12995,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13564,20 +13622,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13748,8 +13806,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Sjanger - - Folder + + Directory @@ -13992,155 +14050,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 - + Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist - + Enter name for new playlist: - + New Playlist - - - + + + Playlist Creation Failed - + A playlist by that name already exists. - + A playlist cannot have a blank name. - + An unknown error occurred while creating playlist: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14148,7 +14211,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14185,128 +14248,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14382,7 +14372,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14439,62 +14429,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_oc.ts b/res/translations/mixxx_oc.ts index 2cd15383e98..67cca6b7416 100644 --- a/res/translations/mixxx_oc.ts +++ b/res/translations/mixxx_oc.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Contenidors - + Remove Crate as Track Source - + Auto DJ Auto DJ - + Add Crate as Track Source @@ -43,24 +43,24 @@ BansheeFeature - + Banshee - - + + Error loading Banshee database - + Banshee database file not found at - + There was an error loading your Banshee database at @@ -69,32 +69,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) - + Add to Auto DJ Queue (top) - + Add to Auto DJ Queue (replace) - + Import Playlist Importar una lista de lectura - + Playlist Creation Failed - + An unknown error occurred while creating playlist: @@ -102,144 +102,144 @@ BasePlaylistFeature - + New Playlist - + Add to Auto DJ Queue (bottom) - - + + Create New Playlist - + Add to Auto DJ Queue (top) - + Remove Suprimir - + Rename Tornar nomenar - + Lock Varrolhar - + Duplicate - - + + Import Playlist Importar una lista de lectura - + Export Track Files - + Analyze entire Playlist - + Enter new name for playlist: - + Duplicate Playlist - - + + Enter name for new playlist: - - + + Export Playlist - + Add to Auto DJ Queue (replace) - + Rename Playlist - - + + Renaming Playlist Failed - - - + + + A playlist by that name already exists. - - - + + + A playlist cannot have a blank name. - + _copy //: Appendix to default name when duplicating a playlist - - - - - - + + + + + + Playlist Creation Failed - - + + An unknown error occurred while creating playlist: - + M3U Playlist (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Impossible de cargar la pista. @@ -512,7 +512,7 @@ - + Computer @@ -532,7 +532,7 @@ - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -645,12 +645,12 @@ - + Mixxx Library Bibliotèca Mixxx - + Could not load the following file because it is in use by Mixxx or another application. Impossible de cargar lo fichièr seguent perque es utilizat per Mixxx o una autra aplicacion. @@ -681,6 +681,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -863,13 +941,13 @@ - + Set to full volume - + Set to zero volume @@ -894,13 +972,13 @@ - + Headphone listen button - + Mute button @@ -916,25 +994,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -978,36 +1056,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1019,7 +1067,7 @@ - + Toggle keylock mode @@ -1029,199 +1077,199 @@ - + Vinyl Control - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 - + 1 - + 2 - + 4 - + 8 - + 16 - + 32 - + 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library Bibliotèca @@ -1332,20 +1380,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1361,7 +1409,7 @@ - + Mute @@ -1372,7 +1420,7 @@ - + Headphone Listen @@ -1393,25 +1441,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1510,52 +1558,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1572,37 +1574,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1643,466 +1645,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix - + Toggle mix recording - + Effects - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next Seguent - + Switch to next effect - + Previous Precedenta - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2127,93 +2129,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2270,806 +2272,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ Auto DJ - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3158,32 +3226,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3219,133 +3287,133 @@ CrateFeature - + Remove Suprimir - - + + Create New Crate - + Rename Tornar nomenar - - + + Lock Varrolhar - + Export Crate as Playlist - + Export Track Files - + Duplicate - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates Contenidors - - + + Import Crate Importar un contenidor - + Export Crate Exportar un contenidor - + Unlock Desvarrolhar - + An unknown error occurred while creating crate: Una error desconeguda s'es producha al moment de la creacion del contenidor : - + Rename Crate Tornar nomenar lo contenidor - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed Fracàs al moment del cambiament de nom del contenidor - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) - + Crates are a great way to help organize the music you want to DJ with. - + Crates let you organize your music however you'd like! - + A crate cannot have a blank name. Un contenidor deu aver un nom. - + A crate by that name already exists. Un nauc amb aqueste nom existís ja. @@ -3415,37 +3483,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4875,32 +4943,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin Tèma - + Tool tips Infobullas - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4910,52 +4978,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off Atudat - + Library only - + Library and Skin @@ -5566,38 +5624,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information Informacions - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5816,62 +5874,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6875,32 +6933,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7114,72 +7172,72 @@ Select from different types of displays for the waveform, which differ primarily Bibliotèca - + Interface - + Waveforms - + Auto DJ Auto DJ - + Equalizers - + Decks - + Colors - + Crossfader - + Effects - + LV2 Plugins - + Recording - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7189,12 +7247,12 @@ Select from different types of displays for the waveform, which differ primarily - + Live Broadcasting - + Modplug Decoder @@ -7335,123 +7393,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Annada - + Title Títol - - + + Artist Artista - - + + Album Album - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7843,17 +7901,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7954,38 +8012,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7993,13 +8051,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8007,57 +8065,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8078,22 +8136,22 @@ support. LibraryFeature - + Import Playlist Importar una lista de lectura - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8104,27 +8162,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel Anullar - + Scanning: - + Scanning cover art (safe to cancel) @@ -8240,181 +8298,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. <b>Quitar</b> Mixxx. - + Retry - + skin - - + + Reconfigure - + Help - - + + Exit Quitar - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8485,43 +8543,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Varrolhar - + Playlists - + Unlock Desvarrolhar - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist @@ -8529,58 +8587,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8764,7 +8822,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9890,12 +9948,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10033,54 +10091,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10089,7 +10147,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10140,34 +10198,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates Contenidors - + Check for Serato databases (refresh) - + (loading) Serato @@ -10190,12 +10248,12 @@ Fully right: end of the effect period - + Unlock Desvarrolhar - + Lock Varrolhar @@ -11154,6 +11212,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12329,11 +12412,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12349,16 +12427,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12374,16 +12442,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12937,22 +12995,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13564,20 +13622,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13748,8 +13806,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Genre - - Folder + + Directory @@ -13992,155 +14050,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 - + Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist - + Enter name for new playlist: - + New Playlist - - - + + + Playlist Creation Failed - + A playlist by that name already exists. - + A playlist cannot have a blank name. - + An unknown error occurred while creating playlist: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14148,7 +14211,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14185,128 +14248,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface interfàcia àudio - + decks - + library - + Choose music library directory - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14382,7 +14372,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14439,62 +14429,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_pl.qm b/res/translations/mixxx_pl.qm index 5fb27558a70c05722106bce6082e452b75b4c500..908ecc3c68fcb0532dd58950aa7a3a6c79012a5b 100644 GIT binary patch delta 13696 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 Vsdq3pfPs0fi+P~q{{iIuVy^%I delta 15431 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 AutoDJFeature - + Crates Skrzynki - + Remove Crate as Track Source Usuń Skrzynkę jako źródło utworów - + Auto DJ Auto DJ - + Add Crate as Track Source Dodaj Skrzynkę jako źródło utworów @@ -43,25 +43,25 @@ BansheeFeature - + Banshee Banshee - - + + Error loading Banshee database Błąd ładowania bazy danych Banshee - + Banshee database file not found at Nie znaleziono pliku bazy danych Banshee w - + There was an error loading your Banshee database at Błąd ładowania bazy danych Banshee @@ -71,32 +71,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Dodaj do kolejki Auto DJ (dół) - + Add to Auto DJ Queue (top) Dodaj do kolejki Auto DJ (góra) - + Add to Auto DJ Queue (replace) Dodaj do kolejki Auto DJ (zamień) - + Import Playlist Importuj listę odtwarzania - + Playlist Creation Failed Tworzenie listy odtwarzania nie powiodło się - + An unknown error occurred while creating playlist: Wystąpił nieznany błąd podczas tworzenia listy odtwarzania: @@ -104,144 +104,144 @@ BasePlaylistFeature - + New Playlist Nowa lista odtwarzania - + Add to Auto DJ Queue (bottom) Dodaj do kolejki Auto DJ (dół) - - + + Create New Playlist Utwórz nową listę odtwarzania - + Add to Auto DJ Queue (top) Dodaj do kolejki Auto DJ (góra) - + Remove Usuń - + Rename Zmień nazwę - + Lock Zablokuj - + Duplicate Duplikuj - - + + Import Playlist Importuj listę odtwarzania - + Export Track Files Eksportuj pliki utworu - + Analyze entire Playlist Analizuj całą listę odtwarzania - + Enter new name for playlist: Podaj nową nazwę listy odtwarzania: - + Duplicate Playlist Duplikuj listę odtwarzania - - + + Enter name for new playlist: Podaj nazwę dla nowej listy odtwarzania: - - + + Export Playlist Eksportuj listę odtwarzania - + Add to Auto DJ Queue (replace) Dodaj do kolejki Auto DJ (zamień) - + Rename Playlist Zmień nazwę listy odtwarzania - - + + Renaming Playlist Failed Zmiana nazwy listy odtwarzania nie powiodła się - - - + + + A playlist by that name already exists. Lista odtwarzania o tej nazwie już istnieje. - - - + + + A playlist cannot have a blank name. Lista odtwarzania nie może mieć pustej nazwy. - + _copy //: Appendix to default name when duplicating a playlist _kopia - - - - - - + + + + + + Playlist Creation Failed Tworzenie listy odtwarzania nie powiodło się - - + + An unknown error occurred while creating playlist: Wystąpił nieznany błąd podczas tworzenia listy odtwarzania: - + M3U Playlist (*.m3u) Lista odtwarzania M3U (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Lista odtwarzania M3U (*.m3u);;Lista odtwarzania M3U8 (*.m3u8);;Lista odtwarzania PLS (*.pls);;Tekst CSV (*.csv);;Odczytywalny Tekst (*.txt) @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Nie mogę załadować ścieżki. @@ -514,7 +514,7 @@ - + Computer Komputer @@ -534,7 +534,7 @@ Skanuj - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. "Komputer" pozwala Ci nawigować, przeglądać i ładować ścieżki z folderów na dysku twardym komputera oraz na urządzeniach zewnętrznych. @@ -647,12 +647,12 @@ Plik utworzony - + Mixxx Library Biblioteka Mixxx - + Could not load the following file because it is in use by Mixxx or another application. Nie mogę załadować podanego pliku, ponieważ jest używany przez Mixxx lub inną aplikację. @@ -683,6 +683,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -865,13 +943,13 @@ - + Set to full volume Ustaw głośność na maksimum - + Set to zero volume Ustaw głośność na zero @@ -896,13 +974,13 @@ Przycisk reverse roll (cenzuruj) - + Headphone listen button Przycisk odsłuchu słuchawkowego - + Mute button Przycisk wyciszenia @@ -918,25 +996,25 @@ - + Mix orientation (e.g. left, right, center) Orientacja miksu (np. lewo, prawo, środek) - + Set mix orientation to left Ustaw kierunek miksowania na lewo - + Set mix orientation to center Ustaw kierunek miksowania na środek - + Set mix orientation to right Ustaw kierunek miksowania na prawo @@ -980,36 +1058,6 @@ Toggle quantize mode Przełącz tryb kwantyzacji - - - Increase internal master BPM by 1 - Zwiększ wewnętrzny główny BPM o 1 - - - - Decrease internal master BPM by 1 - Zmniejsz wewnętrzny główny BPM o 1 - - - - Increase internal master BPM by 0.1 - Zwiększ wewnętrzny główny BPM o 0.1 - - - - Decrease internal master BPM by 0.1 - Zmniejsz wewnętrzny główny BPM o 0.1 - - - - Toggle sync master - Przełącz główną synchronizację - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - Przełącznik 3-stanowy trybu sync (WYŁĄCZONY, REPLIKA, GŁÓWNY) - One-time beat sync (tempo only) @@ -1021,7 +1069,7 @@ Jednorazowa synchronizacja rytmu (tylko faza) - + Toggle keylock mode Przełącz tryb blokowania @@ -1031,199 +1079,199 @@ Equalizery - + Vinyl Control Kontrola vinylem - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) Przełącz kontrolę vinylem w trybie CUE (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) Przełącz kontrolę vinylem (ABS/REL/CONST) - + Pass through external audio into the internal mixer Przepuść zewnętrzne audio do wewnętrznego miksera - + Cues Znaczniki Cue - + Cue button Przycisk Cue - + Set cue point Ustaw punkt Cue - + Go to cue point Idź do Cue - + Go to cue point and play Idź do Cue i odtwarzaj - + Go to cue point and stop Idź do Cue i zatrzymaj - + Preview from cue point Podejrzyj od Cue - + Cue button (CDJ mode) Przycisk Cue (tryb CDJ) - + Stutter cue Stutter cue - + Hotcues Znaczniki hotcue - + Set, preview from or jump to hotcue %1 Ustaw, przejrzyj od lub przejdź do hotcue %1 - + Clear hotcue %1 Wyczyść hotcue %1 - + Set hotcue %1 Ustaw hotcue %1 - + Jump to hotcue %1 Przeskocz do hotcue %1 - + Jump to hotcue %1 and stop Przeskocz do hotcue %1 i zatrzymaj - + Jump to hotcue %1 and play Skocz do hotcue %1 i odtwarzaj - + Preview from hotcue %1 Przejrzyj od hotcue %1 - - + + Hotcue %1 Skrót %1 - + Looping Zapętlanie - + Loop In button Przycisk początku pętli - + Loop Out button Przycisk końca pętli - + Loop Exit button Przycisk wyjścia z pętli - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 32 - + 64 64 - + Move loop forward by %1 beats Przesuń pętlę naprzód o %1 beat'ów - + Move loop backward by %1 beats Przesuń pętlę wstecz o %1 beat'ów - + Create %1-beat loop Stwórz %1-beatową pętlę - + Create temporary %1-beat loop roll Utwórz tymczasową pętlę %1-beatową - + Library Biblioteka @@ -1334,20 +1382,20 @@ - - + + Volume Fader Regulacja głośności - + Full Volume Maksymalna głóśność - + Zero Volume Głośność zero @@ -1363,7 +1411,7 @@ - + Mute Wycisz @@ -1374,7 +1422,7 @@ - + Headphone Listen Odsłuch na słuchawkach @@ -1395,25 +1443,25 @@ - + Orientation Kierunek - + Orient Left Kierunek w lewo - + Orient Center Kierunek środek - + Orient Right Kierunek w prawo @@ -1512,52 +1560,6 @@ Sync Synchronizuj - - - Sync Mode - Tryb synchronizacji - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - Wewnętrzny główny BPM - - - - Internal Master BPM +1 - Wewnętrzny główny BPM +1 - - - - Internal Master BPM -1 - Wewnętrzny główny BPM -1 - - - - Internal Master BPM +0.1 - Wewnętrzny główny BPM +0.1 - - - - Internal Master BPM -0.1 - Wewnętrzny główny BPM -0.1 - - - - Sync Master - Główna synchronizacja - Beat Sync One-Shot @@ -1574,37 +1576,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust Dostosowanie Tonu - + Adjust pitch from speed slider pitch - + Match musical key Dopasuj klucz muzyczny - + Match Key Dopasuj Klucz - + Reset Key Przywróć Klucz - + Resets key to original Przywróć klucz do oryginalnego @@ -1645,466 +1647,466 @@ Basy - + Toggle Vinyl Control Przełącza kontrolę winylem - + Toggle Vinyl Control (ON/OFF) Przełącz kontrolę winylem (Włącz/Wyłącz) - + Vinyl Control Mode Tryb kontroli vinylem - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck Kontrola Vinyla Następny Deck - + Single deck mode - Switch vinyl control to next deck Tryb pojedynczego odtwarzacza - Przełącz kontrole winylem do następnego odtwarzacza - + Cue Wskaźnik (Cue) - + Set Cue Ustaw wskaźnik (Cue) - + Go-To Cue Idź do Cue - + Go-To Cue And Play Idź do Cue i odtwarzaj - + Go-To Cue And Stop Idź do Cue i zatrzymaj - + Preview Cue Podgląd Cue - + Cue (CDJ Mode) Cue (Tryb CDJ) - + Stutter Cue - + Go to cue point and play after release Idź do punktu CUE i odtwarzaj po puszczeniu - + Clear Hotcue %1 Wyczysć HotCue %1 - + Set Hotcue %1 Ustaw HotCue %1 - + Jump To Hotcue %1 Skocz do HotCue %1 - + Jump To Hotcue %1 And Stop Skocz do HotCue %1 i zatrzymaj - + Jump To Hotcue %1 And Play Skocz do HotCue %1 i odtwarzaj - + Preview Hotcue %1 Pokaż HotCue %1 - + Loop In Początek pętli - + Loop Out Koniec pętli - + Loop Exit Wyjście z pętli - + Reloop/Exit Loop Powtórz/Wyjdź z pętli - + Loop Halve Połowa pętli - + Loop Double Podwojenie pętli - + 1/32 1/32 - + 1/16 1/16 - + 1/8 1/8 - + 1/4 1/4 - + Move Loop +%1 Beats Przesuń pętlę +%1 beat'ów - + Move Loop -%1 Beats Przesuń pętlę -%1 beat'ów - + Loop %1 Beats Pętla %1 beat'ów - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) Dodaj do kolejki Auto DJ (dół) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) Dodaj do kolejki Auto DJ (góra) - + Prepend selected track to the Auto DJ Queue - + Load Track Załaduj utwór - + Load selected track Załaduj zaznaczoną scieżkę - + Load selected track and play Załaduj zaznaczoną ścieżkę i odtwórz - - + + Record Mix Zarejestruj mix - + Toggle mix recording Przełącz rejestrację mix'u - + Effects Efekty - + Quick Effects Szybkie efekty - + Deck %1 Quick Effect Super Knob Super Gałka Szybkiego Efektu dla odtwarzacza %1 - + Quick Effect Super Knob (control linked effect parameters) Szybka Super Gałka (kontroluje połączone parametry efektów) - - + + Quick Effect Szybki Efekt - + Clear effect rack Wyczyść panel efektu - + Clear Effect Rack Wyczyść panel Efektu - + Clear Unit Wyczyść Jednostkę - + Clear effect unit Wyczyść moduł efektu - + Toggle Unit Przełącz moduł - + Dry/Wet Suchy/Mokry - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob Super Gałka - + Next Chain Następny łańcuch - + Assign Przypisz - + Clear Wyczyść - + Clear the current effect Wyczyść bieżący efekt - + Toggle Przełącz - + Toggle the current effect Przełącz bieżący efekt - + Next Następny - + Switch to next effect Przełącz do następnego efektu - + Previous Wstecz - + Switch to the previous effect Przełącz do poprzedniego efektu - + Next or Previous Następny lub Poprzedni - + Switch to either next or previous effect Przełącz do następnego lub poprzedniego efektu - - + + Parameter Value Wartość parametru - - + + Microphone Ducking Strength Moc wyciszania mikrofonu - + Microphone Ducking Mode Tryb wyciszania mikrofonu - + Gain Wzmocnienie - + Gain knob Pokrętło wzmocnienia - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle Przełącznik trybu Auto DJ - + Toggle Auto DJ On/Off Włącz/Wyłącz tryb Auto DJ - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. Pokazuje lub ukrywa Mikser - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore Maksymalizuj/Przywróć Bibliotekę - + Maximize the track library to take up all the available screen space. Maksymalizuj bibliotekę utworów, aby wykorzystać całe dostępne miejsce na ekranie. - + Effect Rack Show/Hide Moduł Efektów Pokaż/Ukryj - + Show/hide the effect rack Pokaż/ukryj Moduł Efektów - + Waveform Zoom Out Zmniejsz wykres dźwięku @@ -2129,93 +2131,93 @@ - + Playback Speed Prędkość odtwarzania - + Playback speed control (Vinyl "Pitch" slider) Kontrola prędkości odtwarzania (suwak Vinyl "Pitch") - + Pitch (Musical key) Wysokość tonu (klucz muzyczny) - + Increase Speed Zwiększ prędkość - + Adjust speed faster (coarse) Regulacja prędkości szybciej (zgrubna) - - + + Increase Speed (Fine) Zwiększ prędkość (dokładne) - + Adjust speed faster (fine) Regulacja prędkości szybciej (dokładna) - + Decrease Speed Zmniejsz prędkość - + Adjust speed slower (coarse) Regulacja prędkości wolniej (zgrubna) - + Adjust speed slower (fine) Regulacja prędkości wolniej (dokładna) - + Temporarily Increase Speed Tymczasowo Zwiększ prędkość - + Temporarily increase speed (coarse) Tymczasowo zwiększ prędkość (zgrubnie) - + Temporarily Increase Speed (Fine) Tymczasowo Zwiększ prędkość (Dokładnie) - + Temporarily increase speed (fine) Tymczasowo zwiększ prędkość (Dokładnie) - + Temporarily Decrease Speed Tymczasowo Zmniejsz prędkość - + Temporarily decrease speed (coarse) Tymczasowo zmniejsz prędkość (zgrubnie) - + Temporarily Decrease Speed (Fine) Tymczasowo Zmniejsz prędkość(dokładnie) - + Temporarily decrease speed (fine) Tymczasowo zmniejsz prędkość (dokładnie) @@ -2272,806 +2274,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed Prędkość - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up Przesuń w górę - + Equivalent to pressing the UP key on the keyboard Równoznaczne z wciśnięciem klawisza W GÓRĘ na klawiaturze - + Move down Przesuń w dół - + Equivalent to pressing the DOWN key on the keyboard Równoznaczne z wciśnięciem klawisza W DÓŁ na klawiaturze - + Move up/down Przesuń w górę/w dół - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys Przesuń pionowo w dowolnym kierunku używając gałki lub wciskając klawisze W GÓRĘ/W DÓŁ - + Scroll Up Przewiń w górę - + Equivalent to pressing the PAGE UP key on the keyboard Równoznaczne z wciśnięciem klawisza PG UP na klawiaturze - + Scroll Down Przewiń w dół - + Equivalent to pressing the PAGE DOWN key on the keyboard Równoznaczne z wciśnięciem klawisza PG DN na klawiaturze - + Scroll up/down Przewiń w górę/w dół - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys Przewiń pionowo w dowolnym kierunku używając gałki lub wciskając klawisze PG UP/PG DN - + Move left Przesuń w lewo - + Equivalent to pressing the LEFT key on the keyboard Równoznaczne z wciśnięciem klawisza LEWO na klawiaturze - + Move right Przesuń w prawo - + Equivalent to pressing the RIGHT key on the keyboard Równoznaczne z wciśnięciem klawisza PRAWO na klawiaturze - + Move left/right Przesuń w lewo/prawo - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard Odpowiednik przytrzymywania klawisza TAB na klawiaturze - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) Dodaj do kolejki Auto DJ (zamień) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing Włącz lub wyłącz przetwarzanie efektu - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset Ustawienie następnego łańcucha - + Previous Chain Poprzedni Łańcuch - + Previous chain preset Ustawienie poprzedniego łańcucha - + Next/Previous Chain Następny/Poprzedni Łańcuch - + Next or previous chain preset Ustawienie następnego lub poprzedniego łańcucha. - - + + Show Effect Parameters Pokaż parametry efektu - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary Mikrofon / Zewnętrze - + Microphone On/Off Włącz/Wyłącz mikrofon - + Microphone on/off włącz/wyłącz mikrofon - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) Przełącz tryb wyciszania mikrofonu(Wyłącz, Auto, Ręcznie) - + Auxiliary On/Off Zewnętrzny Włącz/Wyłącz - + Auxiliary on/off Zewnętrzny włącz/wyłącz - + Auto DJ Auto DJ - + Auto DJ Shuffle Wymieszaj Auto DJ - + Auto DJ Skip Next Auto DJ Skok do następnego - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next Auto DJ Wycisz do następnego - + Trigger the transition to the next track Przełącz przejście do następnego utworu - + User Interface Interfejs Użytkownika - + Samplers Show/Hide Samplery Pokaż/Ukryj - + Show/hide the sampler section Pokaż/Ukryj sekcje samplera - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. Transmituj swój mix przez Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide Kontrola winylem Pokaż/Ukryj - + Show/hide the vinyl control section Pokaż/Ukryj sekcje kontroli winylem - + Preview Deck Show/Hide Pokaż/Schowaj Deck podglądowy - + Show/hide the preview deck Pokaż/ukryj podgląd decka - + Toggle 4 Decks Przełącz 4 odtwarzacze. - + Switches between showing 2 decks and 4 decks. Przełącza między wyświetlaniem 2 i 4 odtwarzaczy. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide Pokaż/Ukryj tarczę winyla - + Show/hide spinning vinyl widget Pokaż/Ukryj wirującą płytę vinylową - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom Skalowanie wykresu dźwięku - + Waveform Zoom Skalowanie wykresu dźwięku - + Zoom waveform in Powiększ wykres dźwięku - + Waveform Zoom In Powiększ wykres dźwięku - + Zoom waveform out Zmniejsz wykres dźwięku - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3160,32 +3228,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. Spróbuj przwrócić resetując swój kontroler - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. Kod skryptu musi zostać naprawiony. @@ -3221,133 +3289,133 @@ CrateFeature - + Remove Usuń - - + + Create New Crate Utwórz nową skrzynkę - + Rename Zmień nazwę - - + + Lock Zablokuj - + Export Crate as Playlist - + Export Track Files Eksportuj pliki utworu - + Duplicate Duplikuj - + Analyze entire Crate Analizuj całą Skrzynkę - + Auto DJ Track Source Źródło utworów Auto DJ'a - + Enter new name for crate: Podaj nową nazwę skrzynki: - - + + Crates Skrzynki - - + + Import Crate Importuj skrzynkę - + Export Crate Eksportuj Skrzynkę - + Unlock Odblokuj - + An unknown error occurred while creating crate: Podczas tworzenia skrzynki pojawił się nieznany błąd: - + Rename Crate Zmień nazwę skrzynki - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed Zmiana nazwy skrzynki nie powiodła się - + Crate Creation Failed Tworzenie skrzynki nie powiodło się - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Lista odtwarzania M3U (*.m3u);;Lista odtwarzania M3U8 (*.m3u8);;Lista odtwarzania PLS (*.pls);;Tekst CSV (*.csv);;Odczytywalny Tekst (*.txt) - + Crates are a great way to help organize the music you want to DJ with. Skrzynki to świetny sposób na organizację muzyki, którą chcesz mixować. - + Crates let you organize your music however you'd like! Skrzynki pozwalają Ci organizować muzyke jak chcesz! - + A crate cannot have a blank name. Musisz nazwać skrzynkę. - + A crate by that name already exists. Skrzynka o tej nazwie już istnieje. @@ -3417,37 +3485,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: Przy udziale: - + And special thanks to: Specjalne Podziękowania dla: - + Past Developers Byli twórcy - + Past Contributors Byli współpracownicy - + Official Website - + Donate @@ -4878,32 +4946,32 @@ Zastosować ustawienie i kontynuować? DlgPrefControlsDlg - + Skin Skórka - + Tool tips Podpowiedzi - + Select from different color schemes of a skin if available. Wybierz spośród różnorodnych motywów kolorystycznych lub skórek jeśli dostępne. - + Color scheme Schemat kolorystyczny - + Locales determine country and language specific settings. - + Locale Ustawienia lokalne @@ -4913,52 +4981,42 @@ Zastosować ustawienie i kontynuować? Ustawienia interfejsu - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver Wygaszacz ekranu - + Start in full-screen mode Rozpocznij w trybie pełnoekranowym - + Full-screen mode Pełny ekran - + Off Wyłączony - + Library only Tylko Biblioteka - + Library and Skin Biblioteka i Skórka @@ -5569,38 +5627,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. Minimalny rozmiar wybranej skórki jest większy niż dostępna rozdzielczość ekranu. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes Ta skórka nie obsługuje schematów kolorów. - + Information Informacja - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5819,62 +5877,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added Dodano katalog z muzyką - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? Dodałeś jeden lub więcej katalogów z muzyką. Utwory z tych katalogów nie będą dostępne dopóki ponownie nie przeskanujesz biblioteki. Czy chcesz zrobić to teraz? - + Scan Skanuj - + Choose a music directory Wybierz katalog z muzyką - + Confirm Directory Removal Potwierdź usunięcie katalogu - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. Mixxx nie będzie dłużej obserwował tego katalogu w poszukiwaniu nowych utworów. Co chcesz zrobić z utworami z tego katalogu i podkatalogów?<ul><li>Ukryj wszystkie utwory z katalogu i podkatalogów.</li><li>Trwale usuń z Mixxx'a wszystkie metadane tych utworów.</li><li>Pozostaw utwory w Twojej bibliotece niezmienione.</li><li>Ukrycie utworów zachowuje ich metadane w przypadku ich ponownego dodania w przyszłości. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. Metadane są to wszystkie informacje o utworze (wykonawca, tytuł, ilość odtworzeń itp.) a także siatki tempa, punkty hotcue i pętle. Ten wybór ma wpływ tylko na bibliotekę Mixxx,a. żadne pliki na dysku nie zostaną zmienione czy usunięte. - + Hide Tracks Ukryj Utwory - + Delete Track Metadata Usuń metadane utworu - + Leave Tracks Unchanged Zostaw utwory niezmienione - + Relink music directory to new location Połącz katalog muzyki z nową lokalizacją - + Select Library Font Wybierz czcionkę Biblioteki @@ -6878,32 +6936,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered Przefiltrowane - + HSV HSV - + RGB RGB - + OpenGL not available OpenGL niedostępne - + dropped frames opuszczone ramki - + Cached waveforms occupy %1 MiB on disk. @@ -7117,72 +7175,72 @@ Select from different types of displays for the waveform, which differ primarily Biblioteka - + Interface Interfejs - + Waveforms Wykresy dźwięku - + Auto DJ Auto DJ - + Equalizers Equalizery - + Decks - + Colors - + Crossfader Crossfader - + Effects Efekty - + LV2 Plugins - + Recording Nagrywanie - + Beat Detection Detekcja rytmu (beat'u) - + Key Detection Detekcja Klucza - + Normalization Normalizacja - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7192,12 +7250,12 @@ Select from different types of displays for the waveform, which differ primarily Kontrola vinylem - + Live Broadcasting Nadawanie Live - + Modplug Decoder Dekoder Modplug @@ -7338,123 +7396,123 @@ Select from different types of displays for the waveform, which differ primarily Wybierz najlepsze możliwe dopasowanie - - + + Track Utwór - - + + Year Rok - + Title Tytuł - - + + Artist Wykonawca - - + + Album Album - + Album Artist Wykonawca albumu - + Fetching track data from the MusicBrainz database Pobieranie danych utworu z bazy danych MusicBrainz - + Mixxx could not find this track in the MusicBrainz database. Mixxx nie mógł znaleźć utworu bazie danych MusicBrainz. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. Pobierz klucz API - + Submit Submits audio fingerprints to the MusicBrainz database. Zatwierdź - + New Column Nowa Kolumna - + New Item Nowa Pozycja - + &Previous &Poprzedni - + &Next &Następny - + &Apply Z&astosuj - + &Close &Zamknij - + Status: %1 Status: %1 - + HTTP Status: %1 Status HTTP: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx nie może połączyć się z %1 z nieznanego powodu. - + Mixxx can't connect to %1. Mixxx nie może połączyć się z %1. - + Original tags Tagi oryginalne - + Suggested tags Tagi sugerowane @@ -7846,17 +7904,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) Soundtouch (szybszy) - + Rubberband (better) Rubberband (lepszy) - + Unknown (bad value) Nieznany (zła wartość) @@ -7957,38 +8015,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes iTunes - - + + Select your iTunes library Wybierz twoją kolekcję iTunes - + (loading) iTunes (Ładowanie) iTunes - + Use Default Library Użyj Domyślnej Kolekcji - + Choose Library... Wybierz Kolekcję... - + Error Loading iTunes Library Błąd podczas wczytywania kolekcji iTunes - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. Wystąpił błąd podczas wczytywania twojej kolekcji iTunes. Niektóre z twoich utworów iTunes lub playlist mogły nie zostać wczytane. @@ -7996,13 +8054,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. Tryb Bezpieczny Włączony - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8010,57 +8068,57 @@ support. Brak wsparcia OpenGL. - + activate aktywny - + toggle przełącz - + right w prawo - + left w lewo - + right small odrobinę w prawo - + left small odrobinę w lewo - + up w górę - + down w dół - + up small odrobinę w górę - + down small odrobinę w dół - + Shortcut Skrót @@ -8081,22 +8139,22 @@ support. LibraryFeature - + Import Playlist Importuj listę odtwarzania - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Pliki list odtwarzania (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8107,27 +8165,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Skanowanie Biblioteki - + It's taking Mixxx a minute to scan your music library, please wait... Mixxx skanuje twoją kolekcję muzyki. Zajmie to kilka minut, więc poczekaj cierpliwie... - + Cancel Anuluj - + Scanning: Skanowanie: - + Scanning cover art (safe to cancel) Skanowanie okładek albumów (możesz bezpiecznie anulować) @@ -8244,182 +8302,182 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy Urządzenie dźwiękowe zajęte - + <b>Retry</b> after closing the other application or reconnecting a sound device <b>Ponów</b> po zamknięciu innej aplikacji lub podłącz ponownie urządzenie dźwiękowe - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. <b>Rekonfiguruj</b> ustawienia urządzeń dźwiękowych Mixxx'a. - - + + Get <b>Help</b> from the Mixxx Wiki. Otrzymaj <b>Pomoc</b> na Wiki Mixxx'a. - - - + + + <b>Exit</b> Mixxx. <b>Wyjdź<b> z Mixxx'a. - + Retry Ponów - + skin - - + + Reconfigure Rekonfiguruj - + Help Pomoc - - + + Exit Wyjdź - - + + Mixxx was unable to open all the configured sound devices. W przypadku błędów bazy danych po pomoc skontaktuj się z: - + Sound Device Error Błąd urządzenia dźwiękowego - + <b>Retry</b> after fixing an issue - + No Output Devices Brak urządzeń wyjściowych. - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. Mixxx został skonfigurowany bez jakichkolwiek wyjściowych urządzeń dźwiękowych. Przetwarzanie dźwięku będzie wyłączone do czasu skonfigurowania urządzenia wyjściowego. - + <b>Continue</b> without any outputs. <b>Kontynuuj</b> bez urządzeń wyjściowych. - + Continue Dalej - + Load track to Deck %1 Załaduj utwór do odtwarzacza %1 - + Deck %1 is currently playing a track. Odtwarzacz %1 aktualnie odtwarza utwór. - + Are you sure you want to load a new track? Czy na pewno chcesz załadować nowy utwór? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. Nie zostało wybrane urządzenie do tej kontroli winylem. Proszę najpierw wybrać urządzenie wejściowe w Urządzeniach Audio. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file Błąd w pliku skórki. - + The selected skin cannot be loaded. Wybrana skórka nie może być załadowana. - + OpenGL Direct Rendering Renderowanie bezpośrednie OpenGL - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Potwierdź zamknięcie - + A deck is currently playing. Exit Mixxx? Deck właśnie gra! Wyjść z Mixxx'a? - + A sampler is currently playing. Exit Mixxx? Sampler aktualnie odtwarza. Wyjśc z Mixxx? - + The preferences window is still open. Okno właściwości jest nadal otwarte. - + Discard any changes and exit Mixxx? Porzucić wszystkie zmiany i wyjść z Mixxx? @@ -8492,43 +8550,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Zablokuj - + Playlists Listy odtwarzania - + Unlock Odblokuj - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. Niektórzy didżeje tworzą playlisty przed ich występem na żywo, natomiast inni preferują tworzyć je w locie. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. Przy zastosowaniu list odtwarzania podczas występu na żywo, pamiętaj, aby zawsze zwracać baczną uwagę na to, jak publiczność reaguje na muzykę, którą wybrałeś do gry. - + Create New Playlist Utwórz nową listę odtwarzania @@ -8536,59 +8594,59 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx Aktualizuję Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? Mixxx umożliwia teraz wyświetlanie okładek albumów. Czy chcesz przeskanować Twoją bibliotekę plików teraz? - + Scan Skanuj - + Later Później - + Upgrading Mixxx from v1.9.x/1.10.x. Aktualizowanie Mixxx'a z v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. Mixxx ma nowy ulepszony detektor beat'ów. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. Kiedy wczytujesz ścieżki Mixxx może je ponownie zanalizować i wygenerować nowe, dokładniejsze siatki beat'u. Sprawi to, że automatyczna synchronizacja beatu i zapętlanie będą bardziej niezawodne. - + This does not affect saved cues, hotcues, playlists, or crates. To nie wpływa na zapisane wskaźniki cue, hotcue, listy odtwarzania czy skrzynki. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. Jeżeli nie chcesz ponownie analizować ścieżek wybierz "Zachowaj bierzące siatki beatu". Możesz zawsze zmienić te ustawienia w sekcji "Detekcja Beatu" w Ustawieniach - + Keep Current Beatgrids Zachowaj Aktualne Siatki Beatu - + Generate New Beatgrids Stwórz Nowe Siatki Beatu @@ -8772,7 +8830,7 @@ Czy chcesz przeskanować Twoją bibliotekę plików teraz? - + Encoder Program kodujący @@ -9898,12 +9956,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10041,54 +10099,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists Listy odtwarzania - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10097,7 +10155,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox Rhythmbox @@ -10148,34 +10206,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks Ścieżki - + Crates Skrzynki - + Check for Serato databases (refresh) - + (loading) Serato @@ -10198,12 +10256,12 @@ Fully right: end of the effect period Historia - + Unlock Odblokuj - + Lock Zablokuj @@ -11162,6 +11220,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12337,11 +12420,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - (Ta skórka powinna zostać zaktualizowana aby używać Główną Synchronizację) - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12357,16 +12435,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. Odtwarzaczy nie można synchronizować do samplerów, a samplery można synchronizować tylko do odtwarzaczy. - - - Enable Master Sync - Włącz Główną Synchronizację - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12382,16 +12450,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. Resetuj klucz do oryginalnego klucza utworu. - - - Enable Sync Clock Master - Włącz Główny Zegar Synchronizacji - - - - When enabled, this device will serve as the master clock for all other decks. - Kiedy jest włączone, to urządzenie wysyła główny zegar taktujący do wszystkich pozostałych odtwarzaczy. - Speed Control @@ -12945,22 +13003,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor Traktor - + (loading) Traktor (ładuję) Traktor - + Error Loading Traktor Library Błąd podczas wczytywania Kolekcji Traktor-a - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. Wystąpił błąd podczas wczytywania twojej kolekcji Traktor-a. Niektóre z twoich utworów lub playlist Traktor-a mogły nie zostać wczytane. @@ -13573,20 +13631,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Passthrough - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13758,8 +13816,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Gatunek - - Folder + + Directory @@ -14002,155 +14060,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 Deck %1 - + Sampler %1 Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Utwórz nową listę odtwarzania - + Enter name for new playlist: Podaj nazwę dla nowej listy odtwarzania: - + New Playlist Nowa lista odtwarzania - - - + + + Playlist Creation Failed Tworzenie listy odtwarzania nie powiodło się - + A playlist by that name already exists. Lista odtwarzania o tej nazwie już istnieje. - + A playlist cannot have a blank name. Lista odtwarzania nie może mieć pustej nazwy. - + An unknown error occurred while creating playlist: Wystąpił nieznany błąd podczas tworzenia listy odtwarzania: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14158,7 +14221,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus ESC @@ -14195,128 +14258,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory Wybierz katalog biblioteki utworów. - + controllers - + Cannot open database Nie mogę otworzyć bazy danych - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14395,7 +14385,7 @@ Kliknij OK aby wyjść. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14452,62 +14442,62 @@ Kliknij OK aby wyjść. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse Mysz rodzajowa interfejsu HID - + Generic HID Joystick Joystik rodzajowy interfejsu HID - + Generic HID Game Pad - + Generic HID Keyboard Klawiatura rodzajowa interfejsu HID - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_pt.qm b/res/translations/mixxx_pt.qm index 9227eb0a6a4d4ae3a2ffa88abee65fa1deea6f93..da83b87c28a5a0945d5d30066040b71d3fce89db 100644 GIT binary patch delta 6979 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 AutoDJFeature - + Crates Caixas - + Remove Crate as Track Source - + Auto DJ Auto DJ - + Add Crate as Track Source @@ -43,24 +43,24 @@ BansheeFeature - + Banshee Banshee - - + + Error loading Banshee database Erro ao carregar a biblioteca do Banshee - + Banshee database file not found at Base de dados Banshee não encontrada - + There was an error loading your Banshee database at Erro ao carregar a base de dados Banshee em @@ -69,32 +69,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Juntar à fila Auto DJ (em baixo) - + Add to Auto DJ Queue (top) Juntar à fila Auto DJ (em cima) - + Add to Auto DJ Queue (replace) - + Import Playlist Importar Playlist - + Playlist Creation Failed A criação da Lista de reprodução falhou - + An unknown error occurred while creating playlist: Ocorreu um erro desconhecido ao criar a Playlist @@ -102,144 +102,144 @@ BasePlaylistFeature - + New Playlist Nova lista de reprodução - + Add to Auto DJ Queue (bottom) Juntar à fila Auto DJ (em baixo) - - + + Create New Playlist Criar nova lista de reprodução - + Add to Auto DJ Queue (top) Juntar à fila Auto DJ (em cima) - + Remove Remove - + Rename Renomear - + Lock Bloquear - + Duplicate Duplicado - - + + Import Playlist Importar Playlist - + Export Track Files Exportar Pistas - + Analyze entire Playlist Analisar toda a Lista de reprodução - + Enter new name for playlist: Insira um novo nome para a lista de reprodução: - + Duplicate Playlist Duplicar Playlist - - + + Enter name for new playlist: Entre o nome da nova lista de reprodução - - + + Export Playlist Exportar Playlist - + Add to Auto DJ Queue (replace) - + Rename Playlist Renomear Playlist - - + + Renaming Playlist Failed A mudança de nome da Playlist falhou - - - + + + A playlist by that name already exists. Já existe uma Playlist com este nome - - - + + + A playlist cannot have a blank name. A Playlist não pode ter um nome vazio - + _copy //: Appendix to default name when duplicating a playlist _copiar - - - - - - + + + + + + Playlist Creation Failed A criação da Lista de reprodução falhou - - + + An unknown error occurred while creating playlist: Ocorreu um erro desconhecido ao criar a Playlist - + M3U Playlist (*.m3u) M3U Playlist (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Lista M3U (*.m3u);;Lista M3U8 (*.m3u8);;Lista PLS (*.pls);;Texto CSV (*.csv);;Texto (*.txt) @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. NAO FOI Possível carregar a Faixa @@ -512,7 +512,7 @@ - + Computer @@ -532,7 +532,7 @@ - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -645,12 +645,12 @@ Ficheiro Criado - + Mixxx Library Biblioteca Mixxx - + Could not load the following file because it is in use by Mixxx or another application. Não foi possível carregar o arquivo a seguir, porque está em uso por Mixxx ou outro aplicativo. @@ -681,6 +681,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -863,13 +941,13 @@ - + Set to full volume Volume Máximo - + Set to zero volume Volume Mínimo @@ -894,13 +972,13 @@ - + Headphone listen button Botão de audição dos fones - + Mute button @@ -916,25 +994,25 @@ - + Mix orientation (e.g. left, right, center) Orientação da Mistura (ex.: esquerda, direita, centro) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -978,36 +1056,6 @@ Toggle quantize mode Activar/desactivar o modo de quantificação - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1019,7 +1067,7 @@ - + Toggle keylock mode Activar/desactivar o modo de bloqueio @@ -1029,199 +1077,199 @@ Equalizadores - + Vinyl Control Controlo Vinilo - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) Activar/desactivar o modo de marcação do controlo vinilo (OFF/UM/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) Activar/desactivar o modo de controlo vinilo (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues Marcas - + Cue button Tecla de marca - + Set cue point Definir o ponto de marcação - + Go to cue point Ir para marca - + Go to cue point and play Ir para marca e tocar - + Go to cue point and stop Ir para o ponto de marcação e parar - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues Marcações - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 Apagar o marcador %1 - + Set hotcue %1 - + Jump to hotcue %1 Ir para o marcador %1 - + Jump to hotcue %1 and stop Ir para o marcador %1 e parar - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 Pistas Quentes %1 - + Looping Looping - + Loop In button Tecla de entrada em Loop - + Loop Out button Botão de saída de Loop - + Loop Exit button Botão de saída de ciclo - + 1/2 - + 1 1 - + 2 - + 4 - + 8 - + 16 16 - + 32 - + 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop Criar um loop com %1 tempos - + Create temporary %1-beat loop roll Criar temporariamente %1 -beat loop roll - + Library Biblioteca @@ -1332,20 +1380,20 @@ - - + + Volume Fader - + Full Volume Volume Total - + Zero Volume @@ -1361,7 +1409,7 @@ - + Mute Mutar @@ -1372,7 +1420,7 @@ - + Headphone Listen @@ -1393,25 +1441,25 @@ - + Orientation Orientação - + Orient Left Orientação à Esquerda - + Orient Center Orientação ao Centro - + Orient Right Orientação à Direita @@ -1510,52 +1558,6 @@ Sync Sincronizar - - - Sync Mode - Modo Sincronismo - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1572,37 +1574,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1643,466 +1645,466 @@ Equalizador dos Graves - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode Modo de Controlo Vinilo - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue Marca de início - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve Reduz o loop a metade - + Loop Double Duplicação do loop - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) Juntar à fila Auto DJ (em baixo) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) Juntar à fila Auto DJ (em cima) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track Carregar a faixa seleccionada - + Load selected track and play Carregar faixa selecionada e reproduzir - - + + Record Mix - + Toggle mix recording - + Effects Efeitos - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next Seguinte - + Switch to next effect - + Previous Anterior - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain Ganho - + Gain knob Controlo de Ganho - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2127,93 +2129,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2270,806 +2272,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off Microfone ligar/desligar - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ Auto DJ - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track Desencadear a transição para a próxima faixa - + User Interface Interface do Utilizador - + Samplers Show/Hide - + Show/hide the sampler section Mostrar/ocultar a secção sampler - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section Mostrar/ocultar a secção controlo vinilo - + Preview Deck Show/Hide - + Show/hide the preview deck Mostrar/esconder o leitor anterior - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget Mostrar/ocultar o "widget" vinilo em rotação - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3158,32 +3226,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3219,133 +3287,133 @@ CrateFeature - + Remove Remove - - + + Create New Crate Criar nova caixa - + Rename Renomear - - + + Lock Bloquear - + Export Crate as Playlist - + Export Track Files Exportar Pistas - + Duplicate Duplicado - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates Caixas - - + + Import Crate Importar caixa - + Export Crate Exportar caixa - + Unlock Desbloquear - + An unknown error occurred while creating crate: Ocorreu um erro desconhecido durante a criação da caixa: - + Rename Crate Renomear Caixa - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed Falha AO renomear a Caixa - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Lista M3U (*.m3u);;Lista M3U8 (*.m3u8);;Lista PLS (*.pls);;Texto CSV (*.csv);;Texto (*.txt) - + Crates are a great way to help organize the music you want to DJ with. Grades são uma ótima maneira para ajudar a organizar a música que você quer DJ com. - + Crates let you organize your music however you'd like! Caixas deixam você organizar a sua música, como você prefira! - + A crate cannot have a blank name. Uma caixa não pode ter um nome vazio - + A crate by that name already exists. Já existe uma caixa com este nome. @@ -3415,37 +3483,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: Com contribuições de: - + And special thanks to: E um agradecimento especial a: - + Past Developers Programadores antigos - + Past Contributors Colaboradores antigos - + Official Website - + Donate @@ -4876,32 +4944,32 @@ Aplicar os parâmetros e continuar? DlgPrefControlsDlg - + Skin Tema - + Tool tips Dicas - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale Localização @@ -4911,52 +4979,42 @@ Aplicar os parâmetros e continuar? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off Inactivo - + Library only - + Library and Skin @@ -5567,38 +5625,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information Informação - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5817,62 +5875,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added Directoria de Musica Adicionada - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? Adicionou uma ou mais diretorias de musicas. As musicas nestas diretorias não estarão disponíveis até atualizar a sua biblioteca. Deseja atualizar agora ? - + Scan - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6876,32 +6934,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered Filtrado - + HSV HSV - + RGB - + OpenGL not available OpenGL não disponível - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7115,72 +7173,72 @@ Select from different types of displays for the waveform, which differ primarily Biblioteca - + Interface Interface - + Waveforms - + Auto DJ Auto DJ - + Equalizers Equalizadores - + Decks - + Colors - + Crossfader Crossfader - + Effects Efeitos - + LV2 Plugins - + Recording Gravação - + Beat Detection Detecção do tempo - + Key Detection - + Normalization Normalização - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7190,12 +7248,12 @@ Select from different types of displays for the waveform, which differ primarily Controlo Vinilo - + Live Broadcasting Difusão em directo - + Modplug Decoder @@ -7336,123 +7394,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Ano - + Title Título - - + + Artist Artista - - + + Album Album - + Album Artist Álbum Artista - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous &Anterior - + &Next Segui&nte - + &Apply &Aplicar - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7844,17 +7902,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7955,38 +8013,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes iTunes - - + + Select your iTunes library Seleccione a sua biblioteca iTunes - + (loading) iTunes (a carregar) iTunes - + Use Default Library Utilizar a biblioteca padrão - + Choose Library... Escolha a biblioteca... - + Error Loading iTunes Library Erro ao carregar a biblioteca iTunes - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. Houve um erro no carregamento da sua biblioteca iTunes. Algumas das suas faixas ou listas de reprodução iTunes podem não ter sido carregadas. @@ -7994,13 +8052,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8009,57 +8067,57 @@ support. para OpenGL. - + activate activar - + toggle alternar - + right direita - + left esquerda - + right small direita (curto) - + left small esquerda (curto) - + up cima - + down baixo - + up small cima (curto) - + down small baixo (curto) - + Shortcut Atalho @@ -8080,22 +8138,22 @@ para OpenGL. LibraryFeature - + Import Playlist Importar Playlist - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Listas de reprodução (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8106,27 +8164,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Analisar a biblioteca - + It's taking Mixxx a minute to scan your music library, please wait... Queira aguardar alguns instantes para o Mixxx analisar a sua biblioteca musical... - + Cancel Cancelar - + Scanning: A pesquisar - + Scanning cover art (safe to cancel) @@ -8242,181 +8300,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy Dispositivo de som ocupado - + <b>Retry</b> after closing the other application or reconnecting a sound device <b>Tentar de novo</b> após ter fechado a outra aplicação ou ter religado o dispositivo de som. - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. <b>Reconfigurar</b> as opções áudio do Mixxx. - - + + Get <b>Help</b> from the Mixxx Wiki. Encontrar <b>Ajuda</b> no Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. <b>Sair</b> do Mixxx. - + Retry Tentar de novo - + skin - - + + Reconfigure Reconfigurar - + Help Ajuda - - + + Exit Sair - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices Nenhum dispositivo de saída - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. O Mixxx foi configurado sem nenhum dispositivo de saída audio. Sem dispositivo de saída configurado, o processamento do som será desactivado. - + <b>Continue</b> without any outputs. <b>Continuar</b> sem nenhuma saída. - + Continue Continuar - + Load track to Deck %1 Carregar a faixa no leitor %1 - + Deck %1 is currently playing a track. O leitor %1 está actualmente a ler uma faixa. - + Are you sure you want to load a new track? Tem a certeza de querer carregar uma nova faixa? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file Erro no ficheiro de tema - + The selected skin cannot be loaded. O tema seleccionado não pode ser carregado - + OpenGL Direct Rendering Processamento Direct OpenGL - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Confirmar saída - + A deck is currently playing. Exit Mixxx? Um leitor está actualmente a tocar. Sair do Mixxx? - + A sampler is currently playing. Exit Mixxx? Uma amostra está actualmente a tocar. Sair do Mixxx? - + The preferences window is still open. A janela de preferências ainda está aberta. - + Discard any changes and exit Mixxx? Rejeitar quaisquer alterações e sair do Mixxx? @@ -8489,43 +8547,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Bloquear - + Playlists Listas de reprodução - + Unlock Desbloquear - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. Alguns DJs preparam listas de reprodução antes das suas actuações, mas outros preferem construi-las na altura em que estão a actuar. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. Quando usa listas de reprodução durante uma actuação de DJ ao vivo, lembre-se de prestar uma atenção particular à forma como o seu público reage à música que escolheu para tocar. - + Create New Playlist Criar nova lista de reprodução @@ -8533,58 +8591,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8768,7 +8826,7 @@ Do you want to scan your library for cover files now? - + Encoder Codificador @@ -9894,12 +9952,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10037,54 +10095,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists Listas de reprodução - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10093,7 +10151,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox Aplicação Rhythmbox @@ -10144,34 +10202,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates Caixas - + Check for Serato databases (refresh) - + (loading) Serato @@ -10194,12 +10252,12 @@ Fully right: end of the effect period Histórico - + Unlock Desbloquear - + Lock Bloquear @@ -11158,6 +11216,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12333,11 +12416,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12353,16 +12431,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. os Deck não conseguem sincronizar com as amostras e as amostras só conseguem sincronizar com os Decks - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12378,16 +12446,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12941,22 +12999,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor Traktor - + (loading) Traktor (carregamento) Traktor - + Error Loading Traktor Library Erro ao carregar a biblioteca Traktor - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. Houve um erro de carregamento da sua biblioteca Traktor. Algumas das suas faixas ou listas de reprodução Traktor podem não ter sido carregadas. @@ -13568,20 +13626,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Passagem - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13752,8 +13810,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Gênero - - Folder + + Directory @@ -13996,155 +14054,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 Leitor %1 - + Sampler %1 Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Criar nova lista de reprodução - + Enter name for new playlist: Entre o nome da nova lista de reprodução - + New Playlist Nova lista de reprodução - - - + + + Playlist Creation Failed A criação da Lista de reprodução falhou - + A playlist by that name already exists. Já existe uma Playlist com este nome - + A playlist cannot have a blank name. A Playlist não pode ter um nome vazio - + An unknown error occurred while creating playlist: Ocorreu um erro desconhecido ao criar a Playlist - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14152,7 +14215,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14189,128 +14252,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory Escolha a pasta da biblioteca musical - + controllers - + Cannot open database Não é possível abrir a base de dados - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14389,7 +14379,7 @@ Clique em OK para sair. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14446,62 +14436,62 @@ Clique em OK para sair. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse DIH genérico - Rato - + Generic HID Joystick DIH genérico - Joystick - + Generic HID Game Pad - + Generic HID Keyboard DIH genérico - Teclado - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_pt_BR.qm b/res/translations/mixxx_pt_BR.qm index 0cf53a8bc539d01ea15da3760bb9f25fbe7c09ab..8b2efd7d1f6c9f39572498f737af31c8a351f84b 100644 GIT binary patch literal 378796 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 KI0Z`Qg8g5q>BRW} diff --git a/res/translations/mixxx_pt_BR.ts b/res/translations/mixxx_pt_BR.ts index 61f997ba976..a04fc0ca894 100644 --- a/res/translations/mixxx_pt_BR.ts +++ b/res/translations/mixxx_pt_BR.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Caixas - + Remove Crate as Track Source Remover Caixa como Fonte de Faixas - + Auto DJ Auto DJ - + Add Crate as Track Source Adicionar Caixa como Fonte de Faixas @@ -43,25 +43,25 @@ BansheeFeature - + Banshee Banshee - - + + Error loading Banshee database Erro ao carregar o banco de dados do Banshee - + Banshee database file not found at Arquivo de banco de dados do Banshee não encontrado em - + There was an error loading your Banshee database at Ocorreu um erro ao carregar o seu banco de dados do Banshee em @@ -71,32 +71,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Adicionar à fila do Auto DJ (embaixo) - + Add to Auto DJ Queue (top) Adicionar à Fila do Auto DJ (em cima) - + Add to Auto DJ Queue (replace) - + Add to Auto DJ Queue (replace) - + Import Playlist Importar Lista de Reprodução - + Playlist Creation Failed Falha ao Criar Lista de Reprodução - + An unknown error occurred while creating playlist: Ocorreu um erro desconhecido ao criar a lista de reprodução: @@ -104,144 +104,144 @@ BasePlaylistFeature - + New Playlist Nova Lista de Reprodução - + Add to Auto DJ Queue (bottom) Adicionar à fila do Auto DJ (embaixo) - - + + Create New Playlist Criar Nova Lista de Reprodução - + Add to Auto DJ Queue (top) Adicionar à Fila do Auto DJ (em cima) - + Remove Remover - + Rename Renomear - + Lock Travar - + Duplicate Duplicar - - + + Import Playlist Importar Lista de Reprodução - + Export Track Files Exportar Arquivos de Faixa - + Analyze entire Playlist Analisar Toda a Lista de Reprodução - + Enter new name for playlist: Digite o novo nome para a lista: - + Duplicate Playlist Duplicar a Lista de Reprodução - - + + Enter name for new playlist: Digite o nome para a nova lista de reprodução: - - + + Export Playlist Exportar Lista de Reprodução - + Add to Auto DJ Queue (replace) - + Add to Auto DJ Queue (replace) - + Rename Playlist Renomear Lista de Reprodução - - + + Renaming Playlist Failed Falha ao Renomear a Lista de Reprodução - - - + + + A playlist by that name already exists. Uma lista de reprodução com esse nome já existe. - - - + + + A playlist cannot have a blank name. Uma lista de reprodução não pode ter um nome em branco. - + _copy //: Appendix to default name when duplicating a playlist _copiar - - - - - - + + + + + + Playlist Creation Failed Falha ao Criar Lista de Reprodução - - + + An unknown error occurred while creating playlist: Ocorreu um erro desconhecido ao criar a lista de reprodução: - + M3U Playlist (*.m3u) Lista de Reprodução M3U (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Lista de Reprodução M3U (*.m3u);;Lista de Reprodução M3U8 (*.m3u8);;Lista de Reprodução PLS (*.pls);;Texto CSV (*.csv);;Texto (*.txt) @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Não foi possível carregar a faixa. @@ -302,7 +302,7 @@ Color - + Color @@ -327,7 +327,7 @@ Last Played - + Last Played @@ -377,7 +377,7 @@ Samplerate - + Samplerate @@ -514,7 +514,7 @@ - + Computer Computador @@ -534,7 +534,7 @@ Examinar - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. "Computador" permite que você navegue, veja e carregue faixas de pastas do seu disco rígido ou de dispositivos externos. @@ -647,12 +647,12 @@ Arquivo Criado - + Mixxx Library Biblioteca do Mixxx - + Could not load the following file because it is in use by Mixxx or another application. Não foi possível carregar o seguinte arquivo porque ele está em uso pelo Mixxx ou por outro programa. @@ -670,30 +670,113 @@ The file '%1' could not be found. - + The file '%1' could not be found. The file '%1' could not be loaded. - + The file '%1' could not be loaded. The file '%1' is empty and could not be loaded. + The file '%1' is empty and could not be loaded. + + + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + Começa o Mixxx em tela cheia + + + + Use a custom locale for loading translations. (e.g 'fr') + Use a custom locale for loading translations. (e.g 'fr') + + + + Top-level directory where Mixxx should look for settings. Default is: + Top-level directory where Mixxx should look for settings. Default is: + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + Diretório de nível alto onde o Mixxx deve procurar por seus arquivos de recursos como mapeamentos MIDI, sendo usado no lugar da localização da instalação. + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + [auto|always|never] Use colors on the console output. + [auto|always|never] Use colors on the console output. + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + ColorPaletteEditor Remove Color - + Remove Color Add Color - + Add Color @@ -704,27 +787,27 @@ Remove Palette - + Remove Palette Color - + Color Assign to Hotcue Number - + Assign to Hotcue Number Edited - + Edited Do you really want to remove the palette permanently? - + Do you really want to remove the palette permanently? @@ -737,7 +820,7 @@ %1 %2 - + %1 %2 @@ -865,13 +948,13 @@ - + Set to full volume Definir para volume total - + Set to zero volume Definir para volume zero @@ -896,13 +979,13 @@ Botão de rolagem reversa (Censurar) - + Headphone listen button Botão ouvir no fone - + Mute button Botão mudo @@ -918,25 +1001,25 @@ - + Mix orientation (e.g. left, right, center) Orientação da mixagem (ex.: esquerda, direita, centro) - + Set mix orientation to left Definir orientação da mixagem à esquerda - + Set mix orientation to center Definir orientação da mixagem para o centro - + Set mix orientation to right Definir orientação da mixagem à direita @@ -980,36 +1063,6 @@ Toggle quantize mode Ligar/Desligar modo de quantização - - - Increase internal master BPM by 1 - Aumentar 1 no BPM interno mestre - - - - Decrease internal master BPM by 1 - Diminuir 1 no BPM interno mestre - - - - Increase internal master BPM by 0.1 - Aumentar 0,1 no BPM interno mestre - - - - Decrease internal master BPM by 0.1 - Diminuir 0,1 no BPM interno mestre - - - - Toggle sync master - Ligar/Desligar sincronização mestre - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - Alternar entre 3 modos de sincronização (desligado, seguidor, mestre) - One-time beat sync (tempo only) @@ -1021,7 +1074,7 @@ Sincronizar a batida de uma vez só (apenas fase) - + Toggle keylock mode Travar/Destravar o tom @@ -1031,199 +1084,199 @@ Equalizadores - + Vinyl Control Controle por Vinil - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) Alternar modo de cue do controle por vinil (OFF/UM/QUENTE) - + Toggle vinyl-control mode (ABS/REL/CONST) Alternar modo de controle por vinil (CONST/ABS/REL) - + Pass through external audio into the internal mixer Atravessa o áudio externo no mixer interno - + Cues Cues - + Cue button Botão cue - + Set cue point Definir ponto cue - + Go to cue point Ir ao ponto cue - + Go to cue point and play Ir ao ponto cue e tocar - + Go to cue point and stop Ir ao ponto cue e parar - + Preview from cue point Escutar do ponto cue - + Cue button (CDJ mode) Botão Cue (modo CDJ) - + Stutter cue Stutter cue - + Hotcues Hotcues - + Set, preview from or jump to hotcue %1 Definir, escutar de ou pular ao hotcue %1 - + Clear hotcue %1 Apagar hotcue %1 - + Set hotcue %1 Definir hotcue %1 - + Jump to hotcue %1 Pular para hotcue %1 - + Jump to hotcue %1 and stop Pular para hotcue %1 e parar - + Jump to hotcue %1 and play Pular para hotcue %1 e jogar - + Preview from hotcue %1 Escutar do hotcue %1 - - + + Hotcue %1 Hotcue %1 - + Looping Looping - + Loop In button Botão Iniciar Loop - + Loop Out button Botão Terminar Loop - + Loop Exit button Botão Sair do Loop - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 32 - + 64 64 - + Move loop forward by %1 beats Mover o loop para frente %1 batidas - + Move loop backward by %1 beats Mover o loop para atrás %1 batidas - + Create %1-beat loop Criar loop de %1 batidas - + Create temporary %1-beat loop roll Criar loop temporário de %1 batidas - + Library Biblioteca @@ -1334,20 +1387,20 @@ - - + + Volume Fader Fader de Volume - + Full Volume Volume Máximo - + Zero Volume Volume Zero @@ -1363,7 +1416,7 @@ - + Mute Silenciar @@ -1374,7 +1427,7 @@ - + Headphone Listen Ouvir no Fone @@ -1395,25 +1448,25 @@ - + Orientation Orientação - + Orient Left Orientar à Esquerda - + Orient Center Orientar ao Centro - + Orient Right Orientar à Direita @@ -1512,52 +1565,6 @@ Sync Sincronizar - - - Sync Mode - Modo de Sincronização - - - - Internal Sync Master - Sincronizar o Mestre Interno - - - - Toggle Internal Sync Master - Ligar/Desligar Sincronização do Mestre Interno - - - - - Internal Master BPM - BPM Interno Mestre - - - - Internal Master BPM +1 - BPM Interno Mestre +1 - - - - Internal Master BPM -1 - BPM Interno Mestre -1 - - - - Internal Master BPM +0.1 - BPM Interno Mestre +0.1 - - - - Internal Master BPM -0.1 - BPM Interno Mestre -0.1 - - - - Sync Master - Mestre Sincronizador - Beat Sync One-Shot @@ -1574,37 +1581,37 @@ Sincronizar a Fase De Uma Vez - + Pitch control (does not affect tempo), center is original pitch Controle do pitch (não afeta o tempo), o centro é o pitch original - + Pitch Adjust Ajustar o Pitch - + Adjust pitch from speed slider pitch Ajusta o pitch do deslizante de velocidade pitch - + Match musical key Igualar tom musical - + Match Key Igualar Tom - + Reset Key Redefinir o Tom - + Resets key to original Redefine o tom para o original @@ -1622,22 +1629,22 @@ Main Output - + Main Output Main Output Balance - + Main Output Balance Main Output Delay - + Main Output Delay Main Output Gain - + Main Output Gain @@ -1645,466 +1652,466 @@ EQ de Graves - + Toggle Vinyl Control Ligar/Desligar o Controle por Vinil - + Toggle Vinyl Control (ON/OFF) Alternar o Controle por Vinil (Ligado/Desligado) - + Vinyl Control Mode Modo de Controle por Vinil - + Vinyl Control Cueing Mode Modo de Cue do Controle por Vinil - + Vinyl Control Passthrough Repasse do Controle por Vinil - + Vinyl Control Next Deck Próximo Deck do Controle por Vinil - + Single deck mode - Switch vinyl control to next deck Modo de deck único - Mudar o controle por vinil para o próximo deck - + Cue Cue - + Set Cue Definir Cue - + Go-To Cue Ir Para Cue - + Go-To Cue And Play Ir Para Cue e Tocar - + Go-To Cue And Stop Ir Para Cue e Parar - + Preview Cue Escutar Cue - + Cue (CDJ Mode) Cue (Modo CDJ) - + Stutter Cue Stutter Cue - + Go to cue point and play after release Avança até ao Cue Point e toca a faixa após largar o botão. - + Clear Hotcue %1 Limpar Hotcue %1 - + Set Hotcue %1 Definir Hotcue %1 - + Jump To Hotcue %1 Pular Para Hotcue %1 - + Jump To Hotcue %1 And Stop Pular Para Hotcue %1 e Parar - + Jump To Hotcue %1 And Play Pular Para Hotcue %1 e Tocar - + Preview Hotcue %1 Escutar Hotcue %1 - + Loop In Entrada do Loop - + Loop Out Saída do Loop - + Loop Exit Sair do Loop - + Reloop/Exit Loop Reloopar/Sair do Loop - + Loop Halve Divide o Loop pela Metade - + Loop Double Dobrar o Loop - + 1/32 1/32 - + 1/16 1/16 - + 1/8 1/8 - + 1/4 1/4 - + Move Loop +%1 Beats Mover o Loop +%1 Batidas - + Move Loop -%1 Beats Mover o Loop -%1 Batidas - + Loop %1 Beats Loopar %1 Batidas - + Loop Roll %1 Beats Loopar Temporariamente %1 Batidas - + Add to Auto DJ Queue (bottom) Adicionar à fila do Auto DJ (embaixo) - + Append the selected track to the Auto DJ Queue Adicionar a faixa selecionada no final da fila do Auto DJ - + Add to Auto DJ Queue (top) Adicionar à Fila do Auto DJ (em cima) - + Prepend selected track to the Auto DJ Queue Adicionar a faixa selecionada no começo da fila do Auto DJ - + Load Track Carregar Faixa - + Load selected track Carregar faixa selecionada - + Load selected track and play Carregar faixa selecionada e tocar - - + + Record Mix Gravar Mixagem - + Toggle mix recording Ligar/Desligar gravação da mixagem - + Effects Efeitos - + Quick Effects Efeitos Rápidos - + Deck %1 Quick Effect Super Knob Super Botão de Efeito Rápido do Deck %1 - + Quick Effect Super Knob (control linked effect parameters) Super Botão de Efeito Rápido (controla parâmetros de efeito ligados) - - + + Quick Effect Efeito Rápido - + Clear effect rack Limpar prateleira de efeitos - + Clear Effect Rack Limpar Prateleira de Efeitos - + Clear Unit Limpar Unidade - + Clear effect unit Limpar unidade de efeitos - + Toggle Unit Ligar/Desligar Unidade - + Dry/Wet Seco/Molhado - + Adjust the balance between the original (dry) and processed (wet) signal. Define o balançoentre o sinal original (seco) e o processado (molhado). - + Super Knob Super Botão - + Next Chain Próxima Corrente - + Assign Atribuir - + Clear Limpar - + Clear the current effect Limpar o efeito atual - + Toggle Ligar/Desligar - + Toggle the current effect Ligar/Desligar o efeito atual - + Next Próximo - + Switch to next effect Muda para o próximo efeito - + Previous Anterior - + Switch to the previous effect Trocar para o efeito anterior - + Next or Previous Próximo ou Anterior - + Switch to either next or previous effect Muda para o efeito seguinte ou anterior - - + + Parameter Value Valor do Parâmetro - - + + Microphone Ducking Strength Força da Redução de Música do Microfone - + Microphone Ducking Mode Modo de Redução de Música do Microfone - + Gain Ganho - + Gain knob Botão de ganho - + Shuffle the content of the Auto DJ queue Reproduzir aleatoriamente o conteúdo da fila Auto DJ - + Skip the next track in the Auto DJ queue Pular a próxima faixa na fila do Auto DJ - + Auto DJ Toggle Ligar/Desligar Auto DJ - + Toggle Auto DJ On/Off Ligar/Desligar Auto DJ - + Microphone & Auxiliary Show/Hide - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Mixer Show/Hide - + Show or hide the mixer. Mostra ou oculta o mixer. - + Cover Art Show/Hide (Library) - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Show/hide cover art in the library - + Library Maximize/Restore Maximizar/Restaurar Biblioteca - + Maximize the track library to take up all the available screen space. Maximiza a biblioteca de faixas para ocupar todo o espaço de tela disponível. - + Effect Rack Show/Hide Mostrar/Ocultar Prateleira de Efeitos - + Show/hide the effect rack Mostra/Oculta a prateleira de efeitos - + Waveform Zoom Out Afastar Ondas @@ -2129,93 +2136,93 @@ Tempo de sincronização de batida única (e fase com quantização ativada) - + Playback Speed Velocidade da Reprodução - + Playback speed control (Vinyl "Pitch" slider) Controle da velocidade da reprodução (Deslizante de "Pitch" do Vinil) - + Pitch (Musical key) Pitch (Tom musical) - + Increase Speed Aumentar a Velocidade - + Adjust speed faster (coarse) Aumentar a velocidade (grosso) - - + + Increase Speed (Fine) Aumentar a Velocidade (Fino) - + Adjust speed faster (fine) Aumentar a velocidade (fino) - + Decrease Speed Diminuir a Velocidade - + Adjust speed slower (coarse) Diminuir a velocidade (grosso) - + Adjust speed slower (fine) Diminuir a velocidade (fino) - + Temporarily Increase Speed Temporariamente Aumentar a Velocidade - + Temporarily increase speed (coarse) Temporariamente aumentar a velocidade (grosso) - + Temporarily Increase Speed (Fine) Temporariamente Aumentar a Velocidade (Fino) - + Temporarily increase speed (fine) Temporariamente aumentar a velocidade (fino) - + Temporarily Decrease Speed Temporariamente Diminuir a Velocidade - + Temporarily decrease speed (coarse) Temporariamente diminuir a velocidade (grosso) - + Temporarily Decrease Speed (Fine) Temporariamente Diminuir a Velocidade (Fino) - + Temporarily decrease speed (fine) Temporariamente diminuir a velocidade (fino) @@ -2228,27 +2235,27 @@ Effect Unit %1 - + Effect Unit %1 Crossfader / Orientation - + Crossfader / Orientation Main Output gain - + Main Output gain Main Output balance - + Main Output balance Main Output delay - + Main Output delay @@ -2264,816 +2271,882 @@ BPM / Beatgrid - + BPM / Beatgrid Sync / Sync Lock + Sync / Sync Lock + + + + Internal Sync Leader - - Speed + + Toggle Internal Sync Leader - - Pitch (Musical Key) + + + Internal Leader BPM - - Increase Pitch + + Internal Leader BPM +1 - - Increases the pitch by one semitone + + Increase internal Leader BPM by 1 - - Increase Pitch (Fine) + + Internal Leader BPM -1 - - Increases the pitch by 10 cents + + Decrease internal Leader BPM by 1 - - Decrease Pitch + + Internal Leader BPM +0.1 - - Decreases the pitch by one semitone + + Increase internal Leader BPM by 0.1 + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + + Speed + Speed + + Pitch (Musical Key) + Pitch (Musical Key) + + + + Increase Pitch + Increase Pitch + + + + Increases the pitch by one semitone + Increases the pitch by one semitone + + + + Increase Pitch (Fine) + Increase Pitch (Fine) + + + + Increases the pitch by 10 cents + Increases the pitch by 10 cents + + + + Decrease Pitch + Decrease Pitch + + + + Decreases the pitch by one semitone + Decreases the pitch by one semitone + + + Decrease Pitch (Fine) - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Decreases the pitch by 10 cents - + Keylock Trava de Tom - + CUP (Cue + Play) CUP (Cue + Play, ou seja Cue + Toca a faixa) - + Shift cue points earlier - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro / Outro Markers - + Intro Start Marker - + Intro Start Marker - + Intro End Marker - + Intro End Marker - + Outro Start Marker - + Outro Start Marker - + Outro End Marker - + Outro End Marker - + intro start marker - + intro start marker - + intro end marker - + intro end marker - + outro start marker - + outro start marker - + outro end marker - + outro end marker - + Activate %1 [intro/outro marker - + Activate %1 - + Jump to or set the %1 [intro/outro marker - + Jump to or set the %1 - + Set %1 [intro/outro marker - + Set %1 - + Set or jump to the %1 [intro/outro marker - + Set or jump to the %1 - + Clear %1 [intro/outro marker - + Clear %1 - + Clear the %1 [intro/outro marker - + Clear the %1 - + Loop Selected Beats Loop de Batidas Selecionadas - + Create a beat loop of selected beat size Criar um loop de batida do tamanho de batida selecionada - + Loop Roll Selected Beats Batidas Selecionadas da Lista de Loop - + Create a rolling beat loop of selected beat size Crie um loop de batida contínua do tamanho de batida selecionada - + Loop Beats - + Loop Beats - + Loop Roll Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position Ative/desative a alternância do loop e pule para o ponto Loop In se o loop estiver atrás da posição de reprodução - + Reloop And Stop Reloop e Pare - + Enable loop, jump to Loop In point, and stop Ative o loop, pule para o ponto Loop In e pare - + Halve the loop length Reduzir o loop pela metade - + Double the loop length Dobrar o tamanho do loop atual - + Beat Jump / Loop Move Pular batidas e mover loops - + Jump / Move Loop Forward %1 Beats Mover o loop para frente %1 batidas - + Jump / Move Loop Backward %1 Beats Mover o loop para atrás %1 batidas - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Forward - + Loop Move Backward - + Loop Move Backward - + Navigation Navegação - + Move up Mover acima - + Equivalent to pressing the UP key on the keyboard Equivalente a pressionar a SETA ACIMA no teclado - + Move down Mover abaixo - + Equivalent to pressing the DOWN key on the keyboard Equivalente a pressionar a SETA ABAIXO no teclado - + Move up/down Mover acima/abaixo - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys Move verticalmente em uma das direções usando um botão, como se pressionasse as teclas ACIMA/ABAIXO - + Scroll Up Rolar acima - + Equivalent to pressing the PAGE UP key on the keyboard Equivalente a pressionar a tecla PAGE UP no teclado - + Scroll Down Rolar abaixo - + Equivalent to pressing the PAGE DOWN key on the keyboard Equivalente a pressionar a tecla PAGE DOWN no teclado - + Scroll up/down Rolar acima/abaixo - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys Rolar verticalmente em uma das direções usando um botão, como se pressionasse as teclas PAGE UP/PAGE DOWN - + Move left Mover à esquerda - + Equivalent to pressing the LEFT key on the keyboard Equivalente a pressionar a SETA À ESQUERDA no teclado - + Move right Mover à direita - + Equivalent to pressing the RIGHT key on the keyboard Equivalente a pressionar a SETA À DIREITA no teclado - + Move left/right Mover à esquerda/direita - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys Mova horizontalmente em uma das direções usando um botão, como ao pressionar as teclas ESQUERDA/DIREITA - + Move focus to right pane Move o foco ao painel da direita - + Equivalent to pressing the TAB key on the keyboard Equivalente a pressionar a tecla TAB no teclado - + Move focus to left pane Move o foco ao painel da esquerda - + Equivalent to pressing the SHIFT+TAB key on the keyboard Equivalente a pressionar SHIFT+TAB no teclado - + Move focus to right/left pane Move o foco ao painel da direita/esquerda - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys Move o foco um painel à direita ou esquerda usando um botão, como se pressionasse TAB/SHIFT-TAB - + Go to the currently selected item - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Select next search history - + Selects the next search history entry - + Selects the next search history entry - + Select previous search history - + Select previous search history - + Selects the previous search history entry - + Selects the previous search history entry - + Move selected search entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing Ativar ou desativar processamento de efeitos - + Super Knob (control effects' Meta Knobs) - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Toggle effect unit between D/W and D+W modes - + Next chain preset Próxima prédefinição de corrente - + Previous Chain Corrente Anterior - + Previous chain preset Prédefinição de corrente anterior - + Next/Previous Chain Corrente Seguinte/Anterior - + Next or previous chain preset Prédefinição da corrente seguinte ou anterior - - + + Show Effect Parameters Mostrar Parâmetros do Efeito - + Effect Unit Assignment - + Effect Unit Assignment - + Meta Knob Botão Meta - + Effect Meta Knob (control linked effect parameters) - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Button Parameter Value - + Microphone / Auxiliary Microfone / Auxiliar - + Microphone On/Off Ligar/Desligar Microfone - + Microphone on/off Microfone ligado/desligado - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) Alternar entre modos de redução de música do microfone (DESLIGADO, AUTOMÁTICO, MANUAL) - + Auxiliary On/Off Ligar/Desligar Auxiliar - + Auxiliary on/off Ligar/Desligar Auxiliar - + Auto DJ Auto DJ - + Auto DJ Shuffle Embaralhar o Auto DJ - + Auto DJ Skip Next Pular a Próxima no Auto DJ - + Auto DJ Add Random Track - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next Trocar Para a Próxima no Auto DJ - + Trigger the transition to the next track Inicia a transição para a próxima música - + User Interface Interface do Usuário - + Samplers Show/Hide Mostrar/Ocultar Samplers - + Show/hide the sampler section Mostrar/Ocultar a seção dos samplers - + Start/Stop Live Broadcasting - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. Transmite sua mixagem pela Internet. - + Start/stop recording your mix. - + Start/stop recording your mix. - - + + Samplers - + Samplers - + Vinyl Control Show/Hide Mostrar/Ocultar Controle por Vinil - + Show/hide the vinyl control section Mostrar/Ocultar a seção controle por vinil - + Preview Deck Show/Hide Mostrar/Ocultar Deck de Pré-escuta - + Show/hide the preview deck Mostrar/Ocultar o deck de pré-escuta - + Toggle 4 Decks Ligar/Desligar 4 Decks - + Switches between showing 2 decks and 4 decks. Troca entre a visualização de 2 decks e 4 decks. - + Cover Art Show/Hide (Decks) - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide Mostrar/Ocultar Vinil Giratório - + Show/hide spinning vinyl widget Mostrar/Ocultar a janela do vinil giratório - + Vinyl Spinners Show/Hide (All Decks) - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Show/Hide all spinnies - + Toggle Waveforms - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Show/hide the scrolling waveforms. - + Waveform zoom Aproximação das ondas - + Waveform Zoom Aproximação das Ondas - + Zoom waveform in Aproximar ondas - + Waveform Zoom In Aproximar Ondas - + Zoom waveform out Afastar as ondas - + Star Rating Up - + Star Rating Up - + Increase the track rating by one star - + Increase the track rating by one star - + Star Rating Down - + Star Rating Down - + Decrease the track rating by one star - + Decrease the track rating by one star @@ -3160,32 +3233,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. Tente recuperar reiniciando seu controlador. - + Controller Mapping Error - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. O código do script precisa ser corrigido. @@ -3195,159 +3268,159 @@ Controller Mapping File Problem - + Controller Mapping File Problem The mapping for controller "%1" cannot be opened. - + The mapping for controller "%1" cannot be opened. The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. File: - + File: Error: - + Error: CrateFeature - + Remove Remover - - + + Create New Crate Criar Nova Caixa - + Rename Renomear - - + + Lock Travar - + Export Crate as Playlist - + Export Crate as Playlist - + Export Track Files Exportar Arquivos de Faixa - + Duplicate Duplicar - + Analyze entire Crate Analisar Toda a Caixa - + Auto DJ Track Source Fonte de Faixas do Auto DJ - + Enter new name for crate: Digite um novo nome para a caixa: - - + + Crates Caixas - - + + Import Crate Importar Caixa - + Export Crate Exportar Caixa - + Unlock Destravar - + An unknown error occurred while creating crate: Ocorreu um erro desconhecido durante a criação do caixa: - + Rename Crate Renomear Caixa - - + + Export to Engine Prime - + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed Falha ao Renomear Caixa - + Crate Creation Failed Criação da Caixa Falhou - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Lista de Reprodução M3U (*.m3u);;Lista de Reprodução M3U8 (*.m3u8);;Lista de Reprodução PLS (*.pls);;Texto CSV (*.csv);;Texto (*.txt) - + Crates are a great way to help organize the music you want to DJ with. Uma ótima maneira para ajudar você a organizar as músicas que você quer tocar é a de colocar elas em caixas. - + Crates let you organize your music however you'd like! Este recurso de caixas permite que você organize sua música do jeito que preferir! - + A crate cannot have a blank name. A caixa não pode ter um nome em branco. - + A crate by that name already exists. Já existe uma caixa com este nome. @@ -3417,39 +3490,39 @@ DlgAbout - + Mixxx %1.%2 Development Team - + Mixxx %1.%2 Development Team - + With contributions from: Com contribuições de: - + And special thanks to: E agradecimentos especiais a: - + Past Developers Desenvolvedores Anteriores - + Past Contributors Contribuidores Anteriores - + Official Website - + Official Website - + Donate - + Donate @@ -3474,12 +3547,12 @@ Git Version: - + Git Version: Platform: - + Platform: @@ -3489,7 +3562,7 @@ License - + License @@ -3549,12 +3622,12 @@ Analyzing %1% %2/%3 - + Analyzing %1% %2/%3 Analyzing %1/%2 - + Analyzing %1/%2 @@ -3567,57 +3640,67 @@ Random - + Random Fade - + Fade Enable Auto DJ Shortcut: Shift+F12 - + Enable Auto DJ + +Shortcut: Shift+F12 Disable Auto DJ Shortcut: Shift+F12 - + Disable Auto DJ + +Shortcut: Shift+F12 Trigger the transition to the next track Shortcut: Shift+F11 - + Trigger the transition to the next track + +Shortcut: Shift+F11 Skip the next track in the Auto DJ queue Shortcut: Shift+F10 - + Skip the next track in the Auto DJ queue + +Shortcut: Shift+F10 Shuffle the content of the Auto DJ queue Shortcut: Shift+F9 - + Shuffle the content of the Auto DJ queue + +Shortcut: Shift+F9 Repeat the playlist - + Repeat the playlist Determines the duration of the transition - + Determines the duration of the transition @@ -3627,22 +3710,22 @@ Shortcut: Shift+F9 Full Intro + Outro - + Full Intro + Outro Fade At Outro Start - + Fade At Outro Start Full Track - + Full Track Skip Silence - + Skip Silence @@ -3668,7 +3751,28 @@ Skip Silence: Play the whole track except for silence at the beginning and end. Begin crossfading from the selected number of seconds before the last sound. - + Auto DJ Fade Modes + +Full Intro + Outro: +Play the full intro and outro. Use the intro or outro length as the +crossfade time, whichever is shorter. If no intro or outro are marked, +use the selected crossfade time. + +Fade At Outro Start: +Start crossfading at the outro start. If the outro is longer than the +intro, cut off the end of the outro. Use the intro or outro length as +the crossfade time, whichever is shorter. If no intro or outro are +marked, use the selected crossfade time. + +Full Track: +Play the whole track. Begin crossfading from the selected number of +seconds before the end of the track. A negative crossfade time adds +silence between tracks. + +Skip Silence: +Play the whole track except for silence at the beginning and end. +Begin crossfading from the selected number of seconds before the +last sound. @@ -3688,17 +3792,17 @@ last sound. Enable - + Enable Disable - + Disable Displays the duration and number of selected tracks. - + Displays the duration and number of selected tracks. @@ -3716,7 +3820,8 @@ last sound. Adds a random track from track sources (crates) to the Auto DJ queue. If no track sources are configured, the track is added from the library instead. - + Adds a random track from track sources (crates) to the Auto DJ queue. +If no track sources are configured, the track is added from the library instead. @@ -3745,26 +3850,31 @@ If no track sources are configured, the track is added from the library instead. When beat detection is enabled, Mixxx detects the beats per minute and beats of your tracks, automatically shows a beat-grid for them, and allows you to synchronize tracks using their beat information. - + When beat detection is enabled, Mixxx detects the beats per minute and beats of your tracks, +automatically shows a beat-grid for them, and allows you to synchronize tracks using their beat information. Enable fast beat detection. If activated Mixxx only analyzes the first minute of a track for beat information. This can speed up beat detection on slower computers but may result in lower quality beatgrids. - + Enable fast beat detection. +If activated Mixxx only analyzes the first minute of a track for beat information. +This can speed up beat detection on slower computers but may result in lower quality beatgrids. Converts beats detected by the analyzer into a fixed-tempo beatgrid. Use this setting if your tracks have a constant tempo (e.g. most electronic music). Often results in higher quality beatgrids, but will not do well on tracks that have tempo shifts. - + Converts beats detected by the analyzer into a fixed-tempo beatgrid. +Use this setting if your tracks have a constant tempo (e.g. most electronic music). +Often results in higher quality beatgrids, but will not do well on tracks that have tempo shifts. Re-analyze beatgrids imported from other DJ software - + Re-analyze beatgrids imported from other DJ software @@ -4008,7 +4118,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Keywheel - + Keywheel @@ -4069,7 +4179,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Re-queue Tracks - + Re-queue Tracks @@ -4100,7 +4210,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Add Random Tracks - + Add Random Tracks @@ -4153,7 +4263,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Opus - + Opus @@ -4163,12 +4273,12 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HE-AAC - + HE-AAC HE-AACv2 - + HE-AACv2 @@ -4197,38 +4307,39 @@ Often results in higher quality beatgrids, but will not do well on tracks that h '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server can't have the same mountpoint. - + '%1' has the same Icecast mountpoint as '%2'. +Two source connections to the same server can't have the same mountpoint. You can't create more than %1 source connections. - + You can't create more than %1 source connections. Source connection %1 - + Source connection %1 At least one source connection is required. - + At least one source connection is required. Are you sure you want to disconnect every active source connection? - + Are you sure you want to disconnect every active source connection? Confirmation required - + Confirmation required Are you sure you want to delete '%1'? - + Are you sure you want to delete '%1'? @@ -4238,12 +4349,12 @@ Two source connections to the same server can't have the same mountpoint. New name for '%1': - + New name for '%1': Can't rename '%1' to '%2': name already in use - + Can't rename '%1' to '%2': name already in use @@ -4281,37 +4392,37 @@ Two source connections to the same server can't have the same mountpoint. Live Broadcasting source connections - + Live Broadcasting source connections Delete selected - + Delete selected Create new connection - + Create new connection Rename selected - + Rename selected Disconnect all - + Disconnect all Turn on Live Broadcasting when applying these settings - + Turn on Live Broadcasting when applying these settings Settings for %1 - + Settings for %1 @@ -4321,12 +4432,12 @@ Two source connections to the same server can't have the same mountpoint. ICQ - + ICQ AIM - + AIM @@ -4346,12 +4457,12 @@ Two source connections to the same server can't have the same mountpoint. Select a source connection above to edit its settings here - + Select a source connection above to edit its settings here Password storage - + Password storage @@ -4361,7 +4472,7 @@ Two source connections to the same server can't have the same mountpoint. Secure storage (OS keychain) - + Secure storage (OS keychain) @@ -4517,12 +4628,12 @@ Two source connections to the same server can't have the same mountpoint. By hotcue number - + By hotcue number Color - + Color @@ -4530,43 +4641,43 @@ Two source connections to the same server can't have the same mountpoint. Color Preferences - + Color Preferences Colors - + Colors Edit… - + Edit… Track palette - + Track palette Loop default color - + Loop default color Hotcue palette - + Hotcue palette Hotcue default color - + Hotcue default color Replace… - + Replace… @@ -4611,62 +4722,62 @@ Aplicar as configurações e continuar? Mapping has been edited - + Mapping has been edited Always overwrite during this session - + Always overwrite during this session Save As - + Save As Overwrite - + Overwrite Save user mapping - + Save user mapping Enter the name for saving the mapping to the user folder. - + Enter the name for saving the mapping to the user folder. Saving mapping failed - + Saving mapping failed A mapping cannot have a blank name and may not contain special characters. - + A mapping cannot have a blank name and may not contain special characters. A mapping file with that name already exists. - + A mapping file with that name already exists. missing - + missing built-in - + built-in Do you want to save the changes? - + Do you want to save the changes? @@ -4676,17 +4787,17 @@ Aplicar as configurações e continuar? <font color='#BB0000'><b>If you use this mapping your controller may not work correctly. Please select another mapping or disable the controller.</b></font><br><br>This mapping was designed for a newer Mixxx Controller Engine and cannot be used on your current Mixxx installation.<br>Your Mixxx installation has Controller Engine version %1. This mapping requires a Controller Engine version >= %2.<br><br>For more information visit the wiki page on <a href='https://mixxx.org/wiki/doku.php/controller_engine_versions'>Controller Engine Versions</a>. - + <font color='#BB0000'><b>If you use this mapping your controller may not work correctly. Please select another mapping or disable the controller.</b></font><br><br>This mapping was designed for a newer Mixxx Controller Engine and cannot be used on your current Mixxx installation.<br>Your Mixxx installation has Controller Engine version %1. This mapping requires a Controller Engine version >= %2.<br><br>For more information visit the wiki page on <a href='https://mixxx.org/wiki/doku.php/controller_engine_versions'>Controller Engine Versions</a>. Mapping already exists. - + Mapping already exists. <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? @@ -4771,12 +4882,12 @@ Aplicar as configurações e continuar? Load Mapping: - + Load Mapping: Mapping Info - + Mapping Info @@ -4796,7 +4907,7 @@ Aplicar as configurações e continuar? Mapping Files: - + Mapping Files: @@ -4815,22 +4926,22 @@ Aplicar as configurações e continuar? Mixxx uses "mappings" to connect messages from your controller to controls in Mixxx. If you do not see a mapping for your controller in the "Load Mapping" menu when you click on your controller on the left sidebar, you may be able to download one online from the %1. Place the XML (.xml) and Javascript (.js) file(s) in the "User Mapping Folder" then restart Mixxx. If you download a mapping in a ZIP file, extract the XML and Javascript file(s) from the ZIP file to your "User Mapping Folder" then restart Mixxx. - + Mixxx uses "mappings" to connect messages from your controller to controls in Mixxx. If you do not see a mapping for your controller in the "Load Mapping" menu when you click on your controller on the left sidebar, you may be able to download one online from the %1. Place the XML (.xml) and Javascript (.js) file(s) in the "User Mapping Folder" then restart Mixxx. If you download a mapping in a ZIP file, extract the XML and Javascript file(s) from the ZIP file to your "User Mapping Folder" then restart Mixxx. Mixxx DJ Hardware Guide - + Mixxx DJ Hardware Guide MIDI Mapping File Format - + MIDI Mapping File Format MIDI Scripting with Javascript - + MIDI Scripting with Javascript @@ -4853,12 +4964,12 @@ Aplicar as configurações e continuar? Mappings - + Mappings Open User Mapping Folder - + Open User Mapping Folder @@ -4879,32 +4990,32 @@ Aplicar as configurações e continuar? DlgPrefControlsDlg - + Skin Skin - + Tool tips Tool tips - + Select from different color schemes of a skin if available. Selecione diferentes esquemas de cor de uma skin se disponível. - + Color scheme Esquema de cor - + Locales determine country and language specific settings. A localização determina as configurações específicas de país e língua. - + Locale Localização @@ -4914,52 +5025,42 @@ Aplicar as configurações e continuar? Preferências da Interface - + HiDPI / Retina scaling Dimensionamento HiDPI / Retina - + Change the size of text, buttons, and other items. Mude o tamanho do texto, botões e outros itens. - - Adopt scale factor from the operating system - Adote fator de dimensionamento do sistema operacional - - - - Auto Scaling - Dimensionamento Automático - - - + Screen saver Protetor de tela - + Start in full-screen mode Começar no modo de tela de cheia - + Full-screen mode Modo de tela cheia - + Off Desligado - + Library only Apenas a biblioteca - + Library and Skin Biblioteca e Skin @@ -5047,47 +5148,47 @@ Aplicar as configurações e continuar? mm:ss%1zz - Traditional - + mm:ss%1zz - Traditional mm:ss - Traditional (Coarse) - + mm:ss - Traditional (Coarse) s%1zz - Seconds - + s%1zz - Seconds sss%1zz - Seconds (Long) - + sss%1zz - Seconds (Long) s%1sss%2zz - Kiloseconds - + s%1sss%2zz - Kiloseconds Intro start - + Intro start Main cue - + Main cue First sound (skip silence) - + First sound (skip silence) Beginning of track - + Beginning of track @@ -5135,7 +5236,7 @@ Aplicar as configurações e continuar? Deck Preferences - + Deck Preferences @@ -5222,12 +5323,12 @@ Modo CUP: Time Format - + Time Format Intro start - + Intro start @@ -5236,33 +5337,38 @@ it will place it at the main cue point if the main cue point has been set previo This may be helpful for upgrading to Mixxx 2.3 from earlier versions. If this option is disabled, the intro start point is automatically placed at the first sound. - + When the analyzer places the intro start point automatically, +it will place it at the main cue point if the main cue point has been set previously. +This may be helpful for upgrading to Mixxx 2.3 from earlier versions. + +If this option is disabled, the intro start point is automatically placed at the first sound. Set intro start to main cue when analyzing tracks - + Set intro start to main cue when analyzing tracks Track load point - + Track load point Clone deck - + Clone deck Create a playing clone of the first playing deck by double-tapping a Load button on a controller or keyboard. You can always drag-and-drop tracks on screen to clone a deck. - + Create a playing clone of the first playing deck by double-tapping a Load button on a controller or keyboard. +You can always drag-and-drop tracks on screen to clone a deck. Double-press Load button to clone playing track - + Double-press Load button to clone playing track @@ -5428,7 +5534,7 @@ You can always drag-and-drop tracks on screen to clone a deck. Main EQ - + Main EQ @@ -5499,12 +5605,12 @@ You can always drag-and-drop tracks on screen to clone a deck. Resets the deck gain to unity when loading a track. - + Resets the deck gain to unity when loading a track. Reset gain on track load - + Reset gain on track load @@ -5538,17 +5644,17 @@ You can always drag-and-drop tracks on screen to clone a deck. Effect load behavior - + Effect load behavior Keep metaknob position - + Keep metaknob position Reset metaknob to effect default - + Reset metaknob to effect default @@ -5589,39 +5695,39 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. O tamanho mínimo da skin selecionada é maior do que a sua resolução de tela. - + Allow screensaver to run Permitir que o protetor de tela execute - + Prevent screensaver from running Prevenir que o protetor de tela execute - + Prevent screensaver while playing Prevenir o protetor de tela quando tocando - + This skin does not support color schemes Esta skin não suporta esquemas de cor - + Information Informação - - Mixxx must be restarted before the new locale setting will take effect. - O Mixxx deve ser reiniciado para que a nova mudança de localidade tenha efeito. + + Mixxx must be restarted before the new locale or scaling settings will take effect. + @@ -5635,7 +5741,8 @@ You can always drag-and-drop tracks on screen to clone a deck. When key detection is enabled, Mixxx detects the musical key of your tracks and allows you to pitch adjust them for harmonic mixing. - + When key detection is enabled, Mixxx detects the musical key of your tracks +and allows you to pitch adjust them for harmonic mixing. @@ -5680,7 +5787,7 @@ and allows you to pitch adjust them for harmonic mixing. Lancelot/Traditional - + Lancelot/Traditional @@ -5690,7 +5797,7 @@ and allows you to pitch adjust them for harmonic mixing. OpenKey/Traditional - + OpenKey/Traditional @@ -5833,68 +5940,68 @@ and allows you to pitch adjust them for harmonic mixing. Discovered LV2 effects - + Discovered LV2 effects DlgPrefLibrary - + Music Directory Added Diretório de Músicas Adicionado - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? Você adicionou um ou mais diretórios de música. As faixas nesses diretórios não ficarão disponíveis até que você reexamine sua biblioteca. Você quer reexaminar agora? - + Scan Examinar - + Choose a music directory Escolha um diretório de músicas - + Confirm Directory Removal Confirmar a Remoção do Diretório - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. O Mixxx não vai mais procurar por novas faixas neste diretório. O que você gostaria de fazer com as faixas deste diretório e subdiretório?<ul><li>Ocultar todas as faixas deste diretório e subdiretórios.</li><li>Excluir todos os metadados para estas faixas do Mixxx permanentemente</li><li>Deixar as faixas inalteradas na sua biblioteca.</li></ul>As faixas ocultas continuarão com os metadados, no caso de você readicioná-las no futuro. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. Metadados são todos os detalhes da faixa (artista, título, quantidade de reproduções) e também as grades de batida, hotcues e loops. Esta escolha afeta apenas a biblioteca do Mixxx. Nenhum arquivo no disco será alterado ou deletado. - + Hide Tracks Ocultar Faixas - + Delete Track Metadata Excluir Metadados das Faixas - + Leave Tracks Unchanged Deixar Faixas Inalteradas - + Relink music directory to new location Revincular o diretório de música para uma nova localização - + Select Library Font Selecionar a Fonte da Biblioteca @@ -5955,7 +6062,7 @@ and allows you to pitch adjust them for harmonic mixing. Write Serato Metadata to files (experimental) - + Write Serato Metadata to files (experimental) @@ -5970,22 +6077,22 @@ and allows you to pitch adjust them for harmonic mixing. Settings Folder - + Settings Folder The Mixxx settings folder contains the library database, various configuration files, log files, track analysis data, as well as custom controller mappings. - + The Mixxx settings folder contains the library database, various configuration files, log files, track analysis data, as well as custom controller mappings. Edit those files only if you know what you are doing and only while Mixxx is not running. - + Edit those files only if you know what you are doing and only while Mixxx is not running. Open Mixxx Settings Folder - + Open Mixxx Settings Folder @@ -6015,12 +6122,12 @@ and allows you to pitch adjust them for harmonic mixing. Edit metadata after clicking selected track - + Edit metadata after clicking selected track Search-as-you-type timeout: - + Search-as-you-type timeout: @@ -6050,28 +6157,28 @@ and allows you to pitch adjust them for harmonic mixing. Automatically write modified track metadata from the library into file tags - + Automatically write modified track metadata from the library into file tags Track Double-Click Action Sets default action when double-clicking a track in the library. - + Track Double-Click Action Add track to Auto DJ queue (bottom) - + Add track to Auto DJ queue (bottom) Add track to Auto DJ queue (top) - + Add track to Auto DJ queue (top) Ignore - + Ignore @@ -6091,12 +6198,12 @@ and allows you to pitch adjust them for harmonic mixing. Show Rekordbox Library - + Show Rekordbox Library Show Serato Library - + Show Serato Library @@ -6283,7 +6390,7 @@ and allows you to pitch adjust them for harmonic mixing. All settings take effect on next track load. Currently loaded tracks are not affected. For an explanation of these settings, see the %1 - + All settings take effect on next track load. Currently loaded tracks are not affected. For an explanation of these settings, see the %1 @@ -6297,27 +6404,27 @@ and allows you to pitch adjust them for harmonic mixing. Recordings directory invalid - + Recordings directory invalid Recordings directory must be set to an existing directory. - + Recordings directory must be set to an existing directory. Recordings directory must be set to a directory. - + Recordings directory must be set to a directory. Recordings directory not writable - + Recordings directory not writable You do not have write access to %1. Choose a recordings directory you have write access to. - + You do not have write access to %1. Choose a recordings directory you have write access to. @@ -6376,12 +6483,12 @@ and allows you to pitch adjust them for harmonic mixing. Recording Files - + Recording Files Directory: - + Directory: @@ -6549,12 +6656,12 @@ O volume-alvo é aproximado e assume que o pré-ganho da faixa e o nível da sa Network Clock - + Network Clock Direct monitor (recording and broadcasting only) - + Direct monitor (recording and broadcasting only) @@ -6579,43 +6686,43 @@ O volume-alvo é aproximado e assume que o pré-ganho da faixa e o nível da sa To enable Realtime scheduling (currently disabled), see the %1. - + To enable Realtime scheduling (currently disabled), see the %1. The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. Mixxx DJ Hardware Guide - + Mixxx DJ Hardware Guide Microphone inputs are out of time in the record & broadcast signal compared to what you hear. - + Microphone inputs are out of time in the record & broadcast signal compared to what you hear. Measure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Measure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. Refer to the Mixxx User Manual for details. - + Refer to the Mixxx User Manual for details. Configured latency has changed. - + Configured latency has changed. Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. @@ -6625,12 +6732,12 @@ O volume-alvo é aproximado e assume que o pré-ganho da faixa e o nível da sa Main output only - + Main output only Main and booth outputs - + Main and booth outputs @@ -6668,32 +6775,32 @@ O volume-alvo é aproximado e assume que o pré-ganho da faixa e o nível da sa Engine Clock - + Engine Clock Use soundcard clock for live audience setups and lowest latency.<br>Use network clock for broadcasting without a live audience. - + Use soundcard clock for live audience setups and lowest latency.<br>Use network clock for broadcasting without a live audience. Main Mix - + Main Mix Main Output Mode - + Main Output Mode Microphone Monitor Mode - + Microphone Monitor Mode Microphone Latency Compensation - + Microphone Latency Compensation @@ -6752,17 +6859,17 @@ O volume-alvo é aproximado e assume que o pré-ganho da faixa e o nível da sa Main Output Delay - + Main Output Delay Headphone Output Delay - + Headphone Output Delay Booth Output Delay - + Booth Output Delay @@ -6844,12 +6951,12 @@ O volume-alvo é aproximado e assume que o pré-ganho da faixa e o nível da sa Vinyl Type - + Vinyl Type Lead-In - + Lead-In @@ -6864,12 +6971,12 @@ O volume-alvo é aproximado e assume que o pré-ganho da faixa e o nível da sa Deck 3 - + Deck 3 Deck 4 - + Deck 4 @@ -6900,32 +7007,32 @@ O volume-alvo é aproximado e assume que o pré-ganho da faixa e o nível da sa DlgPrefWaveform - + Filtered Filtrado - + HSV HSV - + RGB RGB - + OpenGL not available OpenGL não disponível - + dropped frames quadros perdidos - + Cached waveforms occupy %1 MiB on disk. Ondas no cache ocupam %1 MiB no disco. @@ -7031,7 +7138,7 @@ O volume-alvo é aproximado e assume que o pré-ganho da faixa e o nível da sa Waveform type - + Waveform type @@ -7042,23 +7149,25 @@ O volume-alvo é aproximado e assume que o pré-ganho da faixa e o nível da sa The waveform overview shows the waveform envelope of the entire track. Select from different types of displays for the waveform overview, which differ primarily in the level of detail shown in the waveform. - + The waveform overview shows the waveform envelope of the entire track. +Select from different types of displays for the waveform overview, which differ primarily in the level of detail shown in the waveform. The waveform shows the waveform envelope of the track near the current playback position. Select from different types of displays for the waveform, which differ primarily in the level of detail shown in the waveform. - + The waveform shows the waveform envelope of the track near the current playback position. +Select from different types of displays for the waveform, which differ primarily in the level of detail shown in the waveform. Waveform overview type - + Waveform overview type fps - + fps @@ -7093,12 +7202,12 @@ Select from different types of displays for the waveform, which differ primarily Beat grid opacity - + Beat grid opacity Set amount of opacity on beat grid lines. - + Set amount of opacity on beat grid lines. @@ -7108,12 +7217,12 @@ Select from different types of displays for the waveform, which differ primarily Play marker position - + Play marker position Moves the play marker position on the waveforms to the left, right or center (default). - + Moves the play marker position on the waveforms to the left, right or center (default). @@ -7139,74 +7248,74 @@ Select from different types of displays for the waveform, which differ primarily Biblioteca - + Interface Interface - + Waveforms Ondas - + Auto DJ Auto DJ - + Equalizers Equalizadores - + Decks - + Decks - + Colors - + Colors - + Crossfader Crossfader - + Effects Efeitos - + LV2 Plugins - + LV2 Plugins - + Recording Gravação - + Beat Detection Detecção de Batida - + Key Detection Detecção de Tom - + Normalization Normalização - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7214,12 +7323,12 @@ Select from different types of displays for the waveform, which differ primarily Controle por Vinil - + Live Broadcasting Transmissão Ao Vivo - + Modplug Decoder Decodificador do Modplug @@ -7259,7 +7368,7 @@ Select from different types of displays for the waveform, which differ primarily Recording to file: - + Recording to file: @@ -7269,7 +7378,7 @@ Select from different types of displays for the waveform, which differ primarily %1 MiB written in %2 - + %1 MiB written in %2 @@ -7277,74 +7386,74 @@ Select from different types of displays for the waveform, which differ primarily Replace Hotcue Color - + Replace Hotcue Color Replace cue color if … - + Replace cue color if … Hotcue index - + Hotcue index is - + is is not - + is not Current cue color - + Current cue color If you don't specify any conditions, the colors of all cues in the library will be replaced. - + If you don't specify any conditions, the colors of all cues in the library will be replaced. … by: - + … by: New cue color - + New cue color Selecting database rows... - + Selecting database rows... No colors changed! - + No colors changed! No cues matched the specified criteria. - + No cues matched the specified criteria. Confirm Color Replacement - + Confirm Color Replacement The colors of %1 cues in %2 tracks will be replaced. This change cannot be undone! Are you sure? - + The colors of %1 cues in %2 tracks will be replaced. This change cannot be undone! Are you sure? @@ -7360,123 +7469,123 @@ Select from different types of displays for the waveform, which differ primarily Selecione a melhor combinação - - + + Track Faixa - - + + Year Ano - + Title Título - - + + Artist Artista - - + + Album Álbum - + Album Artist Artista do Álbum - + Fetching track data from the MusicBrainz database Buscando dados sobre a faixa no banco de dados do MusicBrainz - + Mixxx could not find this track in the MusicBrainz database. O Mixxx não conseguiu encontrar esta faixa no banco de dados do MusicBrainz. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. Obter chave da API - + Submit Submits audio fingerprints to the MusicBrainz database. Enviar - + New Column Nova Coluna - + New Item Novo Item - + &Previous &Anterior - + &Next &Próximo - + &Apply &Aplicar - + &Close &Fechar - + Status: %1 Status: %1 - + HTTP Status: %1 Status do HTTP: %1 - + Code: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx não conseguiu conectar a %1 por uma razão desconhecida. - + Mixxx can't connect to %1. Mixxx não conseguiu conectar a %1. - + Original tags Etiquetas originais - + Suggested tags Etiquetas sugeridas @@ -7671,17 +7780,17 @@ Select from different types of displays for the waveform, which differ primarily Import Metadata from MusicBrainz - + Import Metadata from MusicBrainz Re-Import Metadata from file - + Re-Import Metadata from file Date added: - + Date added: @@ -7698,7 +7807,9 @@ Select from different types of displays for the waveform, which differ primarily Converts beats detected by the analyzer into a fixed-tempo beatgrid. Use this setting if your tracks have a constant tempo (e.g. most electronic music). Often results in higher quality beatgrids, but will not do well on tracks that have tempo shifts. - + Converts beats detected by the analyzer into a fixed-tempo beatgrid. +Use this setting if your tracks have a constant tempo (e.g. most electronic music). +Often results in higher quality beatgrids, but will not do well on tracks that have tempo shifts. @@ -7806,7 +7917,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Visible - + Visible @@ -7854,7 +7965,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Tremolo - + Tremolo @@ -7868,17 +7979,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) Soundtouch (mais rápido) - + Rubberband (better) Rubberband (melhor) - + Unknown (bad value) Desconhecido (valor ruim) @@ -7932,7 +8043,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h RGB Stacked - + RGB Stacked @@ -7979,38 +8090,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes iTunes - - + + Select your iTunes library Selecione a sua biblioteca iTunes - + (loading) iTunes (carregando) iTunes - + Use Default Library Usar Biblioteca Padrão - + Choose Library... Escolher Biblioteca... - + Error Loading iTunes Library Erro ao Carregar a Biblioteca do iTunes - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. Ocorreu um erro ao carregar sua biblioteca iTunes. Algumas de suas faixas ou listas de reprodução podem não ter sido carregadas. @@ -8018,13 +8129,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. Modo Seguro Ativado - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8033,57 +8144,57 @@ support. OpenGL. - + activate ativar - + toggle alternar - + right direito - + left esquerdo - + right small direito pequeno - + left small esquerdo pequeno - + up acima - + down abaixo - + up small acima pequeno - + down small abaixo pequeno - + Shortcut Atalho @@ -8104,53 +8215,56 @@ OpenGL. LibraryFeature - + Import Playlist Importar Lista de Reprodução - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Arquivos de Lista de Reprodução (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. Do you really want to overwrite it? - + A playlist file with the name "%1" already exists. +The default "m3u" extension was added because none was specified. + +Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Examinador de Bibliotecas - + It's taking Mixxx a minute to scan your music library, please wait... Mixxx está levando um minuto para examinar a sua biblioteca de músicas, por favor aguarde... - + Cancel Cancelar - + Scanning: Examinando: - + Scanning cover art (safe to cancel) Examinando artes de capa (seguro para cancelar) @@ -8178,12 +8292,12 @@ Do you really want to overwrite it? One or more MixxxControls specified in the outputs section of the loaded mapping were invalid. - + One or more MixxxControls specified in the outputs section of the loaded mapping were invalid. * Make sure the MixxxControls in question actually exist. Visit the manual for a complete list: - + * Make sure the MixxxControls in question actually exist. Visit the manual for a complete list: @@ -8217,7 +8331,7 @@ Do you really want to overwrite it? For help with database issues consult: - + For help with database issues consult: @@ -8255,7 +8369,7 @@ Do you really want to overwrite it? Export to Engine Prime - + Export to Engine Prime @@ -8266,183 +8380,185 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy Dispositivo de Som Ocupado - + <b>Retry</b> after closing the other application or reconnecting a sound device <b>Tentar novamente</b> após fechar a outra aplicação ou reconectar um dispositivo de som - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. <b>Reconfigurar</b> as configurações de dispositivos de som do Mixxx. - - + + Get <b>Help</b> from the Mixxx Wiki. Obter <b>Ajuda</b> na Wiki do Mixxx. - - - + + + <b>Exit</b> Mixxx. <b>Sair<b> do Mixxx. - + Retry Repetir - + skin - + skin - - + + Reconfigure Reconfigurar - + Help Ajuda - - + + Exit Sair - - + + Mixxx was unable to open all the configured sound devices. Mixxx não foi capaz de abrir todos os dispositivos de som configurados. - + Sound Device Error Erro com o Dispositivo de Som - + <b>Retry</b> after fixing an issue <b>Tentar novamente</b> depois de corrigir um problema - + No Output Devices Sem Dispositivos de Saída - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. O Mixxx foi configurado sem nenhum dispositivo de saída de som. O processamento de áudio será desativado sem um dispositivo de saída configurado. - + <b>Continue</b> without any outputs. <b>Continuar</b> sem nenhuma saída. - + Continue Continuar - + Load track to Deck %1 Carregar faixa no Deck %1 - + Deck %1 is currently playing a track. O deck %1 está tocando uma faixa neste momento. - + Are you sure you want to load a new track? Tem certeza de que deseja carregar uma nova faixa? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. Não há nenhum dispositivo de entrada selecionado para o controle por vinil. Por favor, selecione um dispositivo de entrada nas preferências do hardware de som. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. Não tem nenhum dispositivo de entrada selecionado para este controle atravessador. Por favor selecione um dispositivo de entrada nas preferências do hardware de som primeiro. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this microphone. +Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + There is no input device selected for this auxiliary. +Do you want to select an input device? - + Error in skin file Erro no arquivo de skin - + The selected skin cannot be loaded. A skin selecionada não pôde ser carregada. - + OpenGL Direct Rendering Renderização Direta OpenGL - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Confirmar a Saída - + A deck is currently playing. Exit Mixxx? Um deck está tocando neste momento. Sair do Mixxx? - + A sampler is currently playing. Exit Mixxx? Um sampler está tocando neste momento. Sair do Mixxx? - + The preferences window is still open. A janela de preferências ainda está aberta. - + Discard any changes and exit Mixxx? Descartar quaisquer mudanças e sair do Mixxx? @@ -8515,43 +8631,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Travar - + Playlists Listas de Reprodução - + Unlock Destravar - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. Alguns DJs constroem listas de reprodução antes de apresentações ao vivo, mas outros preferem construí-las na hora. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. Ao utilizar uma lista de reprodução durante uma apresentação ao vivo, lembre-se de sempre prestar atenção em como o público reage à música que você escolheu tocar. - + Create New Playlist Criar Nova Lista de Reprodução @@ -8559,59 +8675,59 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx Atualizando o Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? O Mixxx agora suporta mostrar a arte da capa. Você quer examinar a sua biblioteca procurando por arquivos de capa agora? - + Scan Examinar - + Later Depois - + Upgrading Mixxx from v1.9.x/1.10.x. Atualizando o Mixxx a partir de v1.9.x/1.10.x - + Mixxx has a new and improved beat detector. O Mixxx tem um novo e melhorado detector de batidas. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. Quando você carrega músicas, o Mixxx pode as re-analisar e gerar novas, mais precisas, grades de batidas. Isto vai tornar a sincronização automática e loops mais confiáveis. - + This does not affect saved cues, hotcues, playlists, or crates. Isto não afeta os pontos cue salvos, hotcues, listas de reprodução ou caixas. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. Se você não quiser que o Mixxx re-analise suas músicas, selecione "Manter as Grades de Batidas Atuais". Você pode modificar esta configuração a qualquer momento na seção "Detecção de de Batidas" das preferências. - + Keep Current Beatgrids Manter as Grades de Batidas Atuais - + Generate New Beatgrids Gerar Novas Grades de Batidas @@ -8727,12 +8843,12 @@ Você quer examinar a sua biblioteca procurando por arquivos de capa agora? Main - + Main Booth - + Booth @@ -8767,7 +8883,7 @@ Você quer examinar a sua biblioteca procurando por arquivos de capa agora? Record/Broadcast - + Record/Broadcast @@ -8792,10 +8908,10 @@ Você quer examinar a sua biblioteca procurando por arquivos de capa agora? Using Opus at samplerates other than 48 kHz is not supported by the Opus encoder. Please use 48000 Hz in "Sound Hardware" preferences or switch to a different encoding. - + Using Opus at samplerates other than 48 kHz is not supported by the Opus encoder. Please use 48000 Hz in "Sound Hardware" preferences or switch to a different encoding. - + Encoder Codificador @@ -8811,7 +8927,11 @@ Você quer examinar a sua biblioteca procurando por arquivos de capa agora? - + Your permission is required to access the following location: + +%1 + +After clicking OK, you will see a file picker. Please select '%2' to proceed or click Cancel if you don't want to grant Mixxx access and abort this action. @@ -8821,7 +8941,7 @@ After clicking OK, you will see a file picker. Please select '%2' to p Upgrading old Mixxx settings - + Upgrading old Mixxx settings @@ -8830,7 +8950,11 @@ After clicking OK, you will see a file picker. Please select '%2' to p To allow Mixxx to use your old library and settings, click the Open button in the file selection dialog. Mixxx will then move your old settings into the sandbox. This only needs to be done once. If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx will create a new music library and use default settings. - + Due to macOS sandboxing, Mixxx needs your permission to access your music library and settings from Mixxx versions before 2.3.0. After clicking OK, you will see a file selection dialog. + +To allow Mixxx to use your old library and settings, click the Open button in the file selection dialog. Mixxx will then move your old settings into the sandbox. This only needs to be done once. + +If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx will create a new music library and use default settings. @@ -8842,17 +8966,17 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx Bitcrusher - + Bitcrusher Adds noise by the reducing the bit depth and sample rate - + Adds noise by the reducing the bit depth and sample rate The bit depth of the samples - + The bit depth of the samples @@ -8867,7 +8991,7 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx The sample rate to which the signal is downsampled - + The sample rate to which the signal is downsampled @@ -8879,13 +9003,13 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx Time - + Time Ping Pong - + Ping Pong @@ -8911,14 +9035,16 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx Stores the input signal in a temporary buffer and outputs it after a short time - + Stores the input signal in a temporary buffer and outputs it after a short time Delay time 1/8 - 2 beats if tempo is detected 1/8 - 2 seconds if no tempo is detected - + Delay time +1/8 - 2 beats if tempo is detected +1/8 - 2 seconds if no tempo is detected @@ -8928,7 +9054,7 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx How much the echoed sound bounces between the left and right sides of the stereo field - + How much the echoed sound bounces between the left and right sides of the stereo field @@ -8941,7 +9067,7 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx Round the Time parameter to the nearest 1/4 beat. - + Round the Time parameter to the nearest 1/4 beat. @@ -8952,12 +9078,12 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx Triplets - + Triplets When the Quantize parameter is enabled, divide rounded 1/4 beats of Time parameter by 3. - + When the Quantize parameter is enabled, divide rounded 1/4 beats of Time parameter by 3. @@ -8968,12 +9094,12 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx Allows only high or low frequencies to play. - + Allows only high or low frequencies to play. Low Pass Filter Cutoff - + Low Pass Filter Cutoff @@ -8996,12 +9122,13 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx Resonance of the filters Default: flat top - + Resonance of the filters +Default: flat top High Pass Filter Cutoff - + High Pass Filter Cutoff @@ -9033,7 +9160,7 @@ Default: flat top Speed - + Speed @@ -9044,58 +9171,61 @@ Default: flat top Mixes the input with a delayed, pitch modulated copy of itself to create comb filtering - + Mixes the input with a delayed, pitch modulated copy of itself to create comb filtering Speed of the LFO (low frequency oscillator) 32 - 1/4 beats rounded to 1/2 beat per LFO cycle if tempo is detected 1/32 - 4 Hz if no tempo is detected - + Speed of the LFO (low frequency oscillator) +32 - 1/4 beats rounded to 1/2 beat per LFO cycle if tempo is detected +1/32 - 4 Hz if no tempo is detected Delay amplitude of the LFO (low frequency oscillator) - + Delay amplitude of the LFO (low frequency oscillator) Delay offset of the LFO (low frequency oscillator). With width at zero, this allows for manually sweeping over the entire delay range. - + Delay offset of the LFO (low frequency oscillator). +With width at zero, this allows for manually sweeping over the entire delay range. Regeneration - + Regeneration Regen - + Regen How much of the delay output is feed back into the input - + How much of the delay output is feed back into the input Intensity of the effect - + Intensity of the effect Divide rounded 1/2 beats of the Period parameter by 3. - + Divide rounded 1/2 beats of the Period parameter by 3. Mix - + Mix @@ -9110,12 +9240,12 @@ With width at zero, this allows for manually sweeping over the entire delay rang Metronome - + Metronome Adds a metronome click sound to the stream - + Adds a metronome click sound to the stream @@ -9125,7 +9255,7 @@ With width at zero, this allows for manually sweeping over the entire delay rang Set the beats per minute value of the click sound - + Set the beats per minute value of the click sound @@ -9135,7 +9265,7 @@ With width at zero, this allows for manually sweeping over the entire delay rang Synchronizes the BPM with the track if it can be retrieved - + Synchronizes the BPM with the track if it can be retrieved @@ -9149,19 +9279,21 @@ With width at zero, this allows for manually sweeping over the entire delay rang Autopan - + Autopan Bounce the sound left and right across the stereo field - + Bounce the sound left and right across the stereo field How fast the sound goes from one side to another 1/4 - 4 beats rounded to 1/2 beat if tempo is detected 1/4 - 4 seconds if no tempo is detected - + How fast the sound goes from one side to another +1/4 - 4 beats rounded to 1/2 beat if tempo is detected +1/4 - 4 seconds if no tempo is detected @@ -9176,12 +9308,12 @@ With width at zero, this allows for manually sweeping over the entire delay rang How smoothly the signal goes from one side to the other - + How smoothly the signal goes from one side to the other How far the signal goes to each side - + How far the signal goes to each side @@ -9191,7 +9323,7 @@ With width at zero, this allows for manually sweeping over the entire delay rang Emulates the sound of the signal bouncing off the walls of a room - + Emulates the sound of the signal bouncing off the walls of a room @@ -9202,18 +9334,19 @@ With width at zero, this allows for manually sweeping over the entire delay rang Lower decay values cause reverberations to fade out more quickly. - + Lower decay values cause reverberations to fade out more quickly. Bandwidth of the low pass filter at the input. Higher values result in less attenuation of high frequencies. - + Bandwidth of the low pass filter at the input. +Higher values result in less attenuation of high frequencies. How much of the signal to send in to the effect - + How much of the signal to send in to the effect @@ -9319,7 +9452,7 @@ Higher values result in less attenuation of high frequencies. To adjust frequency shelves, go to Preferences -> Equalizers. - + To adjust frequency shelves, go to Preferences -> Equalizers. @@ -9403,14 +9536,16 @@ Higher values result in less attenuation of high frequencies. Mixes the input signal with a copy passed through a series of all-pass filters to create comb filtering - + Mixes the input signal with a copy passed through a series of all-pass filters to create comb filtering Period of the LFO (low frequency oscillator) 1/4 - 4 beats rounded to 1/2 beat if tempo is detected 1/4 - 4 seconds if no tempo is detected - + Period of the LFO (low frequency oscillator) +1/4 - 4 beats rounded to 1/2 beat if tempo is detected +1/4 - 4 seconds if no tempo is detected @@ -9431,12 +9566,12 @@ Higher values result in less attenuation of high frequencies. Number of stages - + Number of stages Sets the LFOs (low frequency oscillators) for the left and right channels out of phase with each others - + Sets the LFOs (low frequency oscillators) for the left and right channels out of phase with each others @@ -9635,33 +9770,33 @@ Higher values result in less attenuation of high frequencies. Adjust the left/right balance and stereo width - + Adjust the left/right balance and stereo width Adjust balance between left and right channels - + Adjust balance between left and right channels Mid/Side - + Mid/Side Bypass Fr. - + Bypass Fr. Bypass Frequency - + Bypass Frequency Stereo Balance - + Stereo Balance @@ -9669,114 +9804,122 @@ Higher values result in less attenuation of high frequencies. Fully left: mono Fully right: only side ambiance Center: does not change the original signal. - + Adjust stereo width by changing balance between middle and side of the signal. +Fully left: mono +Fully right: only side ambiance +Center: does not change the original signal. Frequencies below this cutoff are not adjusted in the stereo field - + Frequencies below this cutoff are not adjusted in the stereo field Parametric Equalizer - + Parametric Equalizer Param EQ - + Param EQ An gentle 2-band parametric equalizer based on biquad filters. It is designed as a complement to the steep mixing equalizers. - + An gentle 2-band parametric equalizer based on biquad filters. +It is designed as a complement to the steep mixing equalizers. Gain 1 - + Gain 1 Gain for Filter 1 - + Gain for Filter 1 Q 1 - + Q 1 Controls the bandwidth of Filter 1. A lower Q affects a wider band of frequencies, a higher Q affects a narrower band of frequencies. - + Controls the bandwidth of Filter 1. +A lower Q affects a wider band of frequencies, +a higher Q affects a narrower band of frequencies. Center 1 - + Center 1 Center frequency for Filter 1, from 100 Hz to 14 kHz - + Center frequency for Filter 1, from 100 Hz to 14 kHz Gain 2 - + Gain 2 Gain for Filter 2 - + Gain for Filter 2 Q 2 - + Q 2 Controls the bandwidth of Filter 2. A lower Q affects a wider band of frequencies, a higher Q affects a narrower band of frequencies. - + Controls the bandwidth of Filter 2. +A lower Q affects a wider band of frequencies, +a higher Q affects a narrower band of frequencies. Center 2 - + Center 2 Center frequency for Filter 2, from 100 Hz to 14 kHz - + Center frequency for Filter 2, from 100 Hz to 14 kHz Tremolo - + Tremolo Cycles the volume up and down - + Cycles the volume up and down How much the effect changes the volume - + How much the effect changes the volume @@ -9789,54 +9932,61 @@ a higher Q affects a narrower band of frequencies. Rate of the volume changes 4 beats - 1/8 beat if tempo is detected 1/4 Hz - 8 Hz if no tempo is detected - + Rate of the volume changes +4 beats - 1/8 beat if tempo is detected +1/4 Hz - 8 Hz if no tempo is detected Width of the volume peak 10% - 90% of the effect period - + Width of the volume peak +10% - 90% of the effect period Shape of the volume modulation wave Fully left: Square wave Fully right: Sine wave - + Shape of the volume modulation wave +Fully left: Square wave +Fully right: Sine wave When the Quantize parameter is enabled, divide the effect period by 3. - + When the Quantize parameter is enabled, divide the effect period by 3. Waveform - + Waveform Phase - + Phase Shifts the position of the volume peak within the period Fully left: beginning of the effect period Fully right: end of the effect period - + Shifts the position of the volume peak within the period +Fully left: beginning of the effect period +Fully right: end of the effect period Round the Rate parameter to the nearest whole division of a beat. - + Round the Rate parameter to the nearest whole division of a beat. Triplet - + Triplet @@ -9847,68 +9997,68 @@ Fully right: end of the effect period This plugin does not support stereo samples as input/output - + This plugin does not support stereo samples as input/output This plugin has features which are not yet supported - + This plugin has features which are not yet supported Unknown status - + Unknown status Parameters of %1 - + Parameters of %1 Queen Mary University London - + Queen Mary University London Queen Mary Tempo and Beat Tracker - + Queen Mary Tempo and Beat Tracker Queen Mary Key Detector - + Queen Mary Key Detector SoundTouch BPM Detector (Legacy) - + SoundTouch BPM Detector (Legacy) Constrained VBR - + Constrained VBR CBR - + CBR Full VBR (bitrate ignored) - + Full VBR (bitrate ignored) White Noise - + White Noise Mix white noise with the input signal - + Mix white noise with the input signal @@ -9918,39 +10068,39 @@ Fully right: end of the effect period Crossfade the noise with the dry signal - + Crossfade the noise with the dry signal - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. MP3 encoding is not supported. Lame could not be initialized - + MP3 encoding is not supported. Lame could not be initialized OGG recording is not supported. OGG/Vorbis library could not be initialized. - + OGG recording is not supported. OGG/Vorbis library could not be initialized. encoder failure - + encoder failure Failed to apply the selected settings. - + Failed to apply the selected settings. @@ -10024,12 +10174,12 @@ Fully right: end of the effect period Low Disk Space Warning - + Low Disk Space Warning There is less than 1 GiB of useable space in the recording folder - + There is less than 1 GiB of useable space in the recording folder @@ -10049,7 +10199,7 @@ Fully right: end of the effect period You can change the location of the Recordings folder in Preferences -> Recording. - + You can change the location of the Recordings folder in Preferences -> Recording. @@ -10064,63 +10214,63 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Rekordbox - + Playlists Listas de Reprodução - + Folders - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Beatgrids - + Memory cues - + Memory cues - + (loading) Rekordbox - + (loading) Rekordbox RhythmboxFeature - + Rhythmbox Rhythmbox @@ -10145,7 +10295,7 @@ Fully right: end of the effect period Mixxx Sampler Banks (*%1) - + Mixxx Sampler Banks (*%1) @@ -10171,36 +10321,36 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Serato - + Reads the following from the Serato Music directory and removable devices: - + Reads the following from the Serato Music directory and removable devices: - + Tracks Faixas - + Crates Caixas - + Check for Serato databases (refresh) - + Check for Serato databases (refresh) - + (loading) Serato - + (loading) Serato @@ -10208,12 +10358,12 @@ Fully right: end of the effect period Join with previous (below) - + Join with previous (below) Finish current and start new - + Finish current and start new @@ -10221,12 +10371,12 @@ Fully right: end of the effect period Histórico - + Unlock Destravar - + Lock Travar @@ -10257,7 +10407,7 @@ Fully right: end of the effect period Error setting tls mode: - + Error setting tls mode: @@ -10307,17 +10457,17 @@ Fully right: end of the effect period Error setting stream IRC! - + Error setting stream IRC! Error setting stream AIM! - + Error setting stream AIM! Error setting stream ICQ! - + Error setting stream ICQ! @@ -10327,22 +10477,22 @@ Fully right: end of the effect period Unknown stream encoding format! - + Unknown stream encoding format! Use a libshout version with %1 enabled - + Use a libshout version with %1 enabled Error setting stream encoding format! - + Error setting stream encoding format! Broadcasting at 96 kHz with Ogg Vorbis is not currently supported. Please try a different sample rate or switch to a different encoding. - + Broadcasting at 96 kHz with Ogg Vorbis is not currently supported. Please try a different sample rate or switch to a different encoding. @@ -10352,7 +10502,7 @@ Fully right: end of the effect period Unsupported sample rate - + Unsupported sample rate @@ -10367,7 +10517,7 @@ Fully right: end of the effect period Error: Shoutcast only supports MP3 and AAC encoders - + Error: Shoutcast only supports MP3 and AAC encoders @@ -10382,22 +10532,22 @@ Fully right: end of the effect period Connection error - + Connection error One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> - + One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> Connection message - + Connection message <b>Message from Live Broadcasting connection '%1':</b><br> - + <b>Message from Live Broadcasting connection '%1':</b><br> @@ -10520,12 +10670,12 @@ Fully right: end of the effect period Identifying track through Acoustid - + Identifying track through Acoustid Retrieving metadata from MusicBrainz - + Retrieving metadata from MusicBrainz @@ -10548,7 +10698,7 @@ Fully right: end of the effect period Double-click - + Double-click @@ -10558,7 +10708,7 @@ Fully right: end of the effect period Shift-key - + Shift-key @@ -10573,7 +10723,7 @@ Fully right: end of the effect period Effects within the chain must be enabled to hear them. - + Effects within the chain must be enabled to hear them. @@ -10634,7 +10784,7 @@ Fully right: end of the effect period Right click to show cover art of loaded track. - + Right click to show cover art of loaded track. @@ -10679,22 +10829,22 @@ Fully right: end of the effect period Auxiliary Volume Meter - + Auxiliary Volume Meter Shows the current auxiliary volume. - + Shows the current auxiliary volume. Auxiliary Peak Indicator - + Auxiliary Peak Indicator Indicates when the signal on the auxiliary is clipping, - + Indicates when the signal on the auxiliary is clipping, @@ -10714,12 +10864,12 @@ Fully right: end of the effect period Booth Gain - + Booth Gain Adjusts the booth output gain. - + Adjusts the booth output gain. @@ -10881,12 +11031,12 @@ Fully right: end of the effect period Auxiliary Gain - + Auxiliary Gain Adjusts the pre-fader auxiliary gain. - + Adjusts the pre-fader auxiliary gain. @@ -10901,7 +11051,7 @@ Fully right: end of the effect period Microphone Talkover Mode - + Microphone Talkover Mode @@ -10911,12 +11061,12 @@ Fully right: end of the effect period Manual: Reduce music volume by a fixed amount set by the Strength knob. - + Manual: Reduce music volume by a fixed amount set by the Strength knob. Behavior depends on Microphone Talkover Mode: - + Behavior depends on Microphone Talkover Mode: @@ -11138,12 +11288,12 @@ Fully right: end of the effect period Toggle visibility of Rate Control - + Toggle visibility of Rate Control (while previewing) - + (while previewing) @@ -11163,7 +11313,7 @@ Fully right: end of the effect period Is latching the playing state. - + Is latching the playing state. @@ -11178,11 +11328,36 @@ Fully right: end of the effect period Plays track from the cue point. - + Plays track from the cue point. Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. @@ -11193,27 +11368,27 @@ Fully right: end of the effect period Tempo Range Display - + Tempo Range Display Displays the current range of the tempo slider. - + Displays the current range of the tempo slider. Delete selected hotcue. - + Delete selected hotcue. Opens separate artwork viewer. - + Opens separate artwork viewer. Select and configure a hardware device for this input - + Select and configure a hardware device for this input @@ -11223,196 +11398,196 @@ Fully right: end of the effect period Big Spinny/Cover Art - + Big Spinny/Cover Art Show a big version of the Spinny or track cover art if enabled. - + Show a big version of the Spinny or track cover art if enabled. Main Output Peak Indicator - + Main Output Peak Indicator Indicates when the signal on the main output is clipping, - + Indicates when the signal on the main output is clipping, Main Output L Peak Indicator - + Main Output L Peak Indicator Indicates when the left signal on the main output is clipping, - + Indicates when the left signal on the main output is clipping, Main Output R Peak Indicator - + Main Output R Peak Indicator Indicates when the right signal on the main output is clipping, - + Indicates when the right signal on the main output is clipping, Main Channel L Volume Meter - + Main Channel L Volume Meter Shows the current volume for the left channel of the main output. - + Shows the current volume for the left channel of the main output. Shows the current volume for the right channel of the main output. - + Shows the current volume for the right channel of the main output. Main Output Gain - + Main Output Gain Adjusts the main output gain. - + Adjusts the main output gain. Determines the main output by fading between the left and right channels. - + Determines the main output by fading between the left and right channels. Adjusts the left/right channel balance on the main output. - + Adjusts the left/right channel balance on the main output. Crossfades the headphone output between the main mix and cueing (PFL or Pre-Fader Listening) signal. - + Crossfades the headphone output between the main mix and cueing (PFL or Pre-Fader Listening) signal. If activated, the main mix signal plays in the right channel, while the cueing signal plays in the left channel. - + If activated, the main mix signal plays in the right channel, while the cueing signal plays in the left channel. Show/hide Cover Art of the selected track in the library. - + Show/hide Cover Art of the selected track in the library. Show/hide the scrolling waveforms - + Show/hide the scrolling waveforms Show/hide the beatgrid controls section - + Show/hide the beatgrid controls section Hide all skin sections except the decks to have more screen space for the track library. - + Hide all skin sections except the decks to have more screen space for the track library. Volume Meters - + Volume Meters Show/hide volume meters for channels and master output. - + Show/hide volume meters for channels and master output. mix microphone input into the main output. - + mix microphone input into the main output. Auto: Automatically reduce music volume when microphone volume rises above threshold. - + Auto: Automatically reduce music volume when microphone volume rises above threshold. Adjust the amount the music volume is reduced with the Strength knob. - + Adjust the amount the music volume is reduced with the Strength knob. Auto: Sets how much to reduce the music volume when the volume of active microphones rises above threshold. - + Auto: Sets how much to reduce the music volume when the volume of active microphones rises above threshold. Manual: Sets how much to reduce the music volume, when talkover is activated regardless of volume of microphone inputs. - + Manual: Sets how much to reduce the music volume, when talkover is activated regardless of volume of microphone inputs. Shift cues earlier - + Shift cues earlier Shift cues imported from Serato or Rekordbox if they are slightly off time. - + Shift cues imported from Serato or Rekordbox if they are slightly off time. Left click: shift 10 milliseconds earlier - + Left click: shift 10 milliseconds earlier Right click: shift 1 millisecond earlier - + Right click: shift 1 millisecond earlier Shift cues later - + Shift cues later Left click: shift 10 milliseconds later - + Left click: shift 10 milliseconds later Right click: shift 1 millisecond later - + Right click: shift 1 millisecond later Mutes the selected channel's audio in the main output. - + Mutes the selected channel's audio in the main output. Main mix enable - + Main mix enable Hold or short click for latching to mix this input into the main output. - + Hold or short click for latching to mix this input into the main output. @@ -11422,42 +11597,42 @@ Fully right: end of the effect period Auto DJ is active - + Auto DJ is active Hot Cue - Track will seek to nearest previous hotcue point. - + Hot Cue - Track will seek to nearest previous hotcue point. Sets the track Loop-In Marker to the current play position. - + Sets the track Loop-In Marker to the current play position. Press and hold to move Loop-In Marker. - + Press and hold to move Loop-In Marker. Jump to Loop-In Marker. - + Jump to Loop-In Marker. Sets the track Loop-Out Marker to the current play position. - + Sets the track Loop-Out Marker to the current play position. Press and hold to move Loop-Out Marker. - + Press and hold to move Loop-Out Marker. Jump to Loop-Out Marker. - + Jump to Loop-Out Marker. @@ -11467,22 +11642,22 @@ Fully right: end of the effect period Select the size of the loop in beats to set with the Beatloop button. - + Select the size of the loop in beats to set with the Beatloop button. Changing this resizes the loop if the loop already matches this size. - + Changing this resizes the loop if the loop already matches this size. Halve the size of an existing beatloop, or halve the size of the next beatloop set with the Beatloop button. - + Halve the size of an existing beatloop, or halve the size of the next beatloop set with the Beatloop button. Double the size of an existing beatloop, or double the size of the next beatloop set with the Beatloop button. - + Double the size of an existing beatloop, or double the size of the next beatloop set with the Beatloop button. @@ -11497,82 +11672,82 @@ Fully right: end of the effect period Beatjump/Loop Move Size - + Beatjump/Loop Move Size Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. Beatjump Forward - + Beatjump Forward Jump forward by the set number of beats. - + Jump forward by the set number of beats. Move the loop forward by the set number of beats. - + Move the loop forward by the set number of beats. Jump forward by 1 beat. - + Jump forward by 1 beat. Move the loop forward by 1 beat. - + Move the loop forward by 1 beat. Beatjump Backward - + Beatjump Backward Jump backward by the set number of beats. - + Jump backward by the set number of beats. Move the loop backward by the set number of beats. - + Move the loop backward by the set number of beats. Jump backward by 1 beat. - + Jump backward by 1 beat. Move the loop backward by 1 beat. - + Move the loop backward by 1 beat. Reloop - + Reloop If the loop is ahead of the current position, looping will start when the loop is reached. - + If the loop is ahead of the current position, looping will start when the loop is reached. Works only if Loop-In and Loop-Out Marker are set. - + Works only if Loop-In and Loop-Out Marker are set. Enable loop, jump to Loop-In Marker, and stop playback. - + Enable loop, jump to Loop-In Marker, and stop playback. @@ -11587,17 +11762,17 @@ Fully right: end of the effect period Hint: Change the time format in Preferences -> Decks. - + Hint: Change the time format in Preferences -> Decks. Show/hide intro & outro markers and associated buttons. - + Show/hide intro & outro markers and associated buttons. Intro Start Marker - + Intro Start Marker @@ -11605,7 +11780,7 @@ Fully right: end of the effect period If marker is set, jumps to the marker. - + If marker is set, jumps to the marker. @@ -11613,7 +11788,7 @@ Fully right: end of the effect period If marker is not set, sets the marker to the current play position. - + If marker is not set, sets the marker to the current play position. @@ -11621,94 +11796,96 @@ Fully right: end of the effect period If marker is set, clears the marker. - + If marker is set, clears the marker. Intro End Marker - + Intro End Marker Outro Start Marker - + Outro Start Marker Outro End Marker - + Outro End Marker Mix - + Mix Adjust the mixing of the dry (input) signal with the wet (output) signal of the effect unit - + Adjust the mixing of the dry (input) signal with the wet (output) signal of the effect unit D/W mode: Crossfade between dry and wet - + D/W mode: Crossfade between dry and wet D+W mode: Add wet to dry - + D+W mode: Add wet to dry Mix Mode - + Mix Mode Adjust how the dry (input) signal is mixed with the wet (output) signal of the effect unit - + Adjust how the dry (input) signal is mixed with the wet (output) signal of the effect unit Dry/Wet mode (crossed lines): Mix knob crossfades between dry and wet Use this to change the sound of the track with EQ and filter effects. - + Dry/Wet mode (crossed lines): Mix knob crossfades between dry and wet +Use this to change the sound of the track with EQ and filter effects. Dry+Wet mode (flat dry line): Mix knob adds wet to dry Use this to change only the effected (wet) signal with EQ and filter effects. - + Dry+Wet mode (flat dry line): Mix knob adds wet to dry +Use this to change only the effected (wet) signal with EQ and filter effects. Route the main mix through this effect unit. - + Route the main mix through this effect unit. Route the left crossfader bus through this effect unit. - + Route the left crossfader bus through this effect unit. Route the right crossfader bus through this effect unit. - + Route the right crossfader bus through this effect unit. Right side active: parameter moves with right half of Meta Knob turn - + Right side active: parameter moves with right half of Meta Knob turn Skin Settings Menu - + Skin Settings Menu Show/hide skin settings menu - + Show/hide skin settings menu @@ -11718,7 +11895,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Save the collection of samples loaded in the samplers. - + Save the collection of samples loaded in the samplers. @@ -11728,7 +11905,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Load a previously saved collection of samples into the samplers. - + Load a previously saved collection of samples into the samplers. @@ -11818,7 +11995,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Show/hide parameters for effects in this unit. - + Show/hide parameters for effects in this unit. @@ -11828,27 +12005,27 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Enable or disable this whole effect unit. - + Enable or disable this whole effect unit. Controls the Meta Knob of all effects in this unit together. - + Controls the Meta Knob of all effects in this unit together. Load next effect chain preset into this effect unit. - + Load next effect chain preset into this effect unit. Load previous effect chain preset into this effect unit. - + Load previous effect chain preset into this effect unit. Load next or previous effect chain preset into this effect unit. - + Load next or previous effect chain preset into this effect unit. @@ -11861,42 +12038,42 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Assign Effect Unit - + Assign Effect Unit Assign this effect unit to the channel output. - + Assign this effect unit to the channel output. Route the headphone channel through this effect unit. - + Route the headphone channel through this effect unit. Route this deck through the indicated effect unit. - + Route this deck through the indicated effect unit. Route this sampler through the indicated effect unit. - + Route this sampler through the indicated effect unit. Route this microphone through the indicated effect unit. - + Route this microphone through the indicated effect unit. Route this auxiliary input through the indicated effect unit. - + Route this auxiliary input through the indicated effect unit. The effect unit must also be assigned to a deck or other sound source to hear the effect. - + The effect unit must also be assigned to a deck or other sound source to hear the effect. @@ -11966,22 +12143,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Inactive: parameter not linked - + Inactive: parameter not linked Active: parameter moves with Meta Knob - + Active: parameter moves with Meta Knob Left side active: parameter moves with left half of Meta Knob turn - + Left side active: parameter moves with left half of Meta Knob turn Left and right side active: parameter moves across range with half of Meta Knob turn and back with the other half - + Left and right side active: parameter moves across range with half of Meta Knob turn and back with the other half @@ -12172,27 +12349,27 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Drag this item to other decks/samplers, to crates and playlist or to external file manager. - + Drag this item to other decks/samplers, to crates and playlist or to external file manager. Shows information about the track currently loaded in this deck. - + Shows information about the track currently loaded in this deck. Left click to jump around in the track. - + Left click to jump around in the track. Right click hotcues to edit their labels and colors. - + Right click hotcues to edit their labels and colors. Right click anywhere else to show the time at that point. - + Right click anywhere else to show the time at that point. @@ -12292,7 +12469,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Microphone Talkover Ducking Strength - + Microphone Talkover Ducking Strength @@ -12302,7 +12479,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Changes the number of hotcue buttons displayed in the deck - + Changes the number of hotcue buttons displayed in the deck @@ -12328,12 +12505,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Opens the track properties editor - + Opens the track properties editor Opens the track context menu. - + Opens the track context menu. @@ -12360,11 +12537,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize Sincronização Antiga - - - (This skin should be updated to use Master Sync!) - (Essa skin deve ser atualizada para usar Sincronização Mestre!) - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12380,16 +12552,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. Decks não podem sincronizar com samplers e samplers só podem sincronizar com decks. - - - Enable Master Sync - Ativar a Sincronização Mestre - - - - Tap to sync the tempo to other playing tracks or the master clock. - Toque para sincronizar o tempo com as outras faixas tocando ou o relógio mestre. - Hold for at least a second to enable sync lock for this deck. @@ -12405,16 +12567,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. Redefine o tom para o tom original da faixa. - - - Enable Sync Clock Master - Ativar Relógio de Sincronização Mestre - - - - When enabled, this device will serve as the master clock for all other decks. - Quando ativado, este dispositivo vai servir como relógio mestre para todos os outros decks. - Speed Control @@ -12450,7 +12602,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Opens a menu to clear hotcues or edit their labels and colors. - + Opens a menu to clear hotcues or edit their labels and colors. @@ -12586,17 +12738,17 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Crossfader Orientation - + Crossfader Orientation Set the channel's crossfader orientation. - + Set the channel's crossfader orientation. Either to the left side of crossfader, to the right side or to the center (unaffected by crossfader) - + Either to the left side of crossfader, to the right side or to the center (unaffected by crossfader) @@ -12968,22 +13120,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor Traktor - + (loading) Traktor (carregando) Traktor - + Error Loading Traktor Library Erro ao Carregar a Biblioteca do Traktor - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. Occoreu um erro ao carregar sua biblioteca do Traktor. Algumas de suas músicas ou listas de reprodução do Traktor podem não ter sido carregadas. @@ -13039,12 +13191,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. No color - + No color Custom color - + Custom color @@ -13059,7 +13211,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Clear cover clears the set cover art -- does not touch files on disk - + Clear cover @@ -13083,32 +13235,32 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Cue number - + Cue number Cue position - + Cue position Edit cue label - + Edit cue label Label... - + Label... Delete this cue - + Delete this cue Hotcue #%1 - + Hotcue #%1 @@ -13204,12 +13356,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. E&xport Library to Engine Prime - + E&xport Library to Engine Prime Export the library to the Engine Prime format - + Export the library to the Engine Prime format @@ -13255,12 +13407,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Show Skin Settings Menu - + Show Skin Settings Menu Show the Skin Settings Menu of the currently selected Skin - + Show the Skin Settings Menu of the currently selected Skin @@ -13522,19 +13674,19 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Show Keywheel menu title - + Show Keywheel Show keywheel tooltip text - + Show keywheel F12 Menubar|View|Show Keywheel - + F12 @@ -13595,23 +13747,23 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Transpassar - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - + Ready to play, analyzing... - - + + Loading track... Text on waveform overview when file is cached from source - + Loading track... - + Finalizing... Text on waveform overview during finalizing of waveform analysis - + Finalizing... @@ -13648,7 +13800,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Clear the search bar input field - + Clear the search bar input field @@ -13658,12 +13810,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Use operators like bpm:115-128, artist:BooFar, -year:1990 - + Use operators like bpm:115-128, artist:BooFar, -year:1990 For more information see User Manual > Mixxx Library - + For more information see User Manual > Mixxx Library @@ -13691,13 +13843,13 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Ctrl+Space - + Ctrl+Space Toggle search history Shows/hides the search history entries - + Toggle search history @@ -13716,7 +13868,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Search related Tracks - + Search related Tracks @@ -13726,7 +13878,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. harmonic with %1 - + harmonic with %1 @@ -13736,7 +13888,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. between %1 and %2 - + between %1 and %2 @@ -13779,8 +13931,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Gênero - - Folder + + Directory @@ -13789,7 +13941,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Load to - + Load to @@ -13819,7 +13971,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Update external collections - + Update external collections @@ -13829,12 +13981,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Adjust BPM - + Adjust BPM Select Color - + Select Color @@ -13855,7 +14007,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Add to Auto DJ Queue (replace) - + Add to Auto DJ Queue (replace) @@ -13870,12 +14022,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Remove from Playlist - + Remove from Playlist Remove from Crate - + Remove from Crate @@ -13915,17 +14067,17 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Export To File Tags - + Export To File Tags BPM and Beatgrid - + BPM and Beatgrid Play Count - + Play Count @@ -13935,7 +14087,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Cue Point - + Cue Point @@ -13945,17 +14097,17 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Intro - + Intro Outro - + Outro Loop - + Loop @@ -13970,7 +14122,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Waveform - + Waveform @@ -14020,166 +14172,171 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Reset BPM + Reset BPM + + + + Update ReplayGain from Deck Gain - + Deck %1 Deck %1 - + Sampler %1 Sampler %1 - + Importing metadata of %n track(s) from file tags - + Importing metadata of %n track(s) from file tagsImporting metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - + Marking metadata of %n track(s) to be exported into file tagsMarking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Criar Nova Lista de Reprodução - + Enter name for new playlist: Digite o nome para a nova lista de reprodução: - + New Playlist Nova Lista de Reprodução - - - + + + Playlist Creation Failed Falha ao Criar Lista de Reprodução - + A playlist by that name already exists. Uma lista de reprodução com esse nome já existe. - + A playlist cannot have a blank name. Uma lista de reprodução não pode ter um nome em branco. - + An unknown error occurred while creating playlist: Ocorreu um erro desconhecido ao criar a lista de reprodução: - + Add to New Crate - + Add to New Crate - + Scaling BPM of %n track(s) - + Scaling BPM of %n track(s)Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Locking BPM of %n track(s)Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Unlocking BPM of %n track(s)Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Setting color of %n track(s)Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting play count of %n track(s)Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Resetting beats of %n track(s)Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Clearing rating of %n track(s)Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing main cue from %n track(s)Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing outro cue from %n track(s)Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing intro cue from %n track(s)Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing loop cues from %n track(s)Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Removing hot cues from %n track(s)Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting keys of %n track(s)Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting replay gain of %n track(s)Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting waveform of %n track(s)Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Resetting all performance metadata of %n track(s)Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Setting cover art of %n track(s)Setting cover art of %n track(s) - + Reloading cover art of %n track(s) - + Reloading cover art of %n track(s)Reloading cover art of %n track(s) WTrackTableView - + ESC Focus ESC @@ -14208,136 +14365,63 @@ Use this to change only the effected (wet) signal with EQ and filter effects. (GLSL ES) - + (GLSL ES) (GL ES) - - - - - main - - - Starts Mixxx in full-screen mode - Começa o Mixxx em tela cheia - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - Diretório de nível alto onde o Mixxx deve procurar por seus arquivos de recursos como mapeamentos MIDI, sendo usado no lugar da localização da instalação. - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - + (GL ES) mixxx::CoreServices - + fonts - + fonts - + database - + database - + effects - + effects - + audio interface - + audio interface - + decks - + decks - + library - + library - + Choose music library directory Escolha o diretório da biblioteca de música - + controllers - + controllers - + Cannot open database Não foi possível abrir o banco de dados - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14353,12 +14437,12 @@ Clique OK para sair. Entire music library - + Entire music library Selected crates - + Selected crates @@ -14368,12 +14452,12 @@ Clique OK para sair. Export directory - + Export directory Database version - + Database version @@ -14388,37 +14472,37 @@ Clique OK para sair. Export Library to Engine Prime - + Export Library to Engine Prime Export Library To - + Export Library To No Export Directory Chosen - + No Export Directory Chosen No export directory was chosen. Please choose a directory in order to export the music library. - + No export directory was chosen. Please choose a directory in order to export the music library. A database already exists in the chosen directory, but it is of an unsupported version. Export is not guaranteed to succeed in this situation. - + A database already exists in the chosen directory, but it is of an unsupported version. Export is not guaranteed to succeed in this situation. A database already exists in the chosen directory. Exported tracks will be added into this database. - + A database already exists in the chosen directory. Exported tracks will be added into this database. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14426,12 +14510,12 @@ Clique OK para sair. Export Modified Track Metadata - + Export Modified Track Metadata Mixxx may wait to modify files until they are not loaded to any decks or samplers. If you do not see changed metadata in other programs immediately, eject the track from all decks and samplers or shutdown Mixxx. - + Mixxx may wait to modify files until they are not loaded to any decks or samplers. If you do not see changed metadata in other programs immediately, eject the track from all decks and samplers or shutdown Mixxx. @@ -14439,27 +14523,27 @@ Clique OK para sair. Export Completed - + Export Completed Exported %1 track(s) and %2 crate(s). - + Exported %1 track(s) and %2 crate(s). Export Failed - + Export Failed Export failed: %1 - + Export failed: %1 Exporting to Engine Prime... - + Exporting to Engine Prime... @@ -14467,70 +14551,70 @@ Clique OK para sair. Abort - + Abort mixxx::hid::DeviceCategory - + HID Interface %1: - + HID Interface %1: - + Generic HID Pointer - + Generic HID Pointer - + Generic HID Mouse Mouse HID Genérico - + Generic HID Joystick Joystick HID Genérico - + Generic HID Game Pad - + Generic HID Game Pad - + Generic HID Keyboard Teclado HID Genérico - + Generic HID Keypad - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown Apple HID Device: - + Unknown HID Device: - + Unknown HID Device: @@ -14538,7 +14622,7 @@ Clique OK para sair. No network access - + No network access @@ -14546,7 +14630,7 @@ Clique OK para sair. No effect loaded. - + Nenhum efeito carregado. \ No newline at end of file diff --git a/res/translations/mixxx_pt_PT.qm b/res/translations/mixxx_pt_PT.qm index 671eb6dc7adf9d33818e8b2da09805e4bc689a3d..e4a3b74c8f50c34614ca8e2d036d2578cf3a8162 100644 GIT binary patch delta 17782 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 delta 20211 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�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 diff --git a/res/translations/mixxx_pt_PT.ts b/res/translations/mixxx_pt_PT.ts index b942e26ab42..b23245f54d2 100644 --- a/res/translations/mixxx_pt_PT.ts +++ b/res/translations/mixxx_pt_PT.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Caixas - + Remove Crate as Track Source Remover Caixa como Fonte de Faixas - + Auto DJ Auto DJ - + Add Crate as Track Source Adicionar Caixa como Fonte de Faixas @@ -43,25 +43,25 @@ BansheeFeature - + Banshee Banshee - - + + Error loading Banshee database Erro ao carregar a base de dados Banshee - + Banshee database file not found at Ficheiro de base de dados Banshee não encontrado em - + There was an error loading your Banshee database at Ocorreu um erro ao carregar a sua base de dados Banshee em @@ -71,32 +71,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Adicionar à Fila Auto DJ (baixo) - + Add to Auto DJ Queue (top) Adicionar à Fila Auto DJ (cima) - + Add to Auto DJ Queue (replace) Adicionar à Fila Auto DJ (Substituir) - + Import Playlist Importar Playlist - + Playlist Creation Failed Criação da Playlist Falhou - + An unknown error occurred while creating playlist: Ocorreu um erro desconhecido ao criar a playlist: @@ -104,144 +104,144 @@ BasePlaylistFeature - + New Playlist Playlist Nova - + Add to Auto DJ Queue (bottom) Adicionar à Fila Auto DJ (baixo) - - + + Create New Playlist Criar uma Playlist Nova - + Add to Auto DJ Queue (top) Adicionar à Fila Auto DJ (cima) - + Remove Remover - + Rename Renomear - + Lock Bloquear - + Duplicate Duplicar - - + + Import Playlist Importar Playlist - + Export Track Files Exportar Faixas - + Analyze entire Playlist Analisar a Playlist inteira - + Enter new name for playlist: Introduzir um novo nome para a playlist: - + Duplicate Playlist Duplicar Playlist - - + + Enter name for new playlist: Introduzir um nome para a nova playlist: - - + + Export Playlist Exportar Playlist - + Add to Auto DJ Queue (replace) Adicionar à Fila Auto DJ (Substituir) - + Rename Playlist Renomear Playlist - - + + Renaming Playlist Failed Renomeação da Playlist Falhou - - - + + + A playlist by that name already exists. Já existe uma playlist com esse nome. - - - + + + A playlist cannot have a blank name. Uma playlist não pode ter um nome em branco. - + _copy //: Appendix to default name when duplicating a playlist _copiar - - - - - - + + + + + + Playlist Creation Failed Criação da Playlist Falhou - - + + An unknown error occurred while creating playlist: Ocorreu um erro desconhecido ao criar a playlist: - + M3U Playlist (*.m3u) Playlist M3U (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Playlist M3U (*.m3u);;Playlist M3U8 (*.m3u8);;Playlist PLS (*.pls);;Texto CSV (*.csv);;Documento de Texto (*.txt) @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Não conseguiu carregar a faixa. @@ -514,7 +514,7 @@ - + Computer Computador @@ -534,7 +534,7 @@ Examinar - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. "Computador" permite-lhe navegar, ver, e carregar faixas das pastas no seu disco duro e em dispositivos externos. @@ -647,12 +647,12 @@ Ficheiro Criado - + Mixxx Library Biblioteca Mixxx - + Could not load the following file because it is in use by Mixxx or another application. Não foi possível carregar o seguinte ficheiro porque está em uso no Mixxx ou noutra aplicação. @@ -683,6 +683,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -865,13 +943,13 @@ - + Set to full volume Ajustar para o volume máximo - + Set to zero volume Ajustar para o volume zero @@ -896,13 +974,13 @@ Botão de rolagem inversa (Censurar) - + Headphone listen button Tecla de escuta no auscultador - + Mute button Tecla de Silêncio @@ -918,25 +996,25 @@ - + Mix orientation (e.g. left, right, center) Orientação da mistura (ex. esquerda, direita, centro) - + Set mix orientation to left Definir orientação da mistura à esquerda - + Set mix orientation to center Definir orientação da mistura ao centro - + Set mix orientation to right Definir orientação da mistura à direita @@ -980,36 +1058,6 @@ Toggle quantize mode Alternar modo de quantização - - - Increase internal master BPM by 1 - Aumentar BPM mestre interno de 1 - - - - Decrease internal master BPM by 1 - Diminuir BPM mestre interno de 1 - - - - Increase internal master BPM by 0.1 - Aumentar BPM mestre interno de 0.1 - - - - Decrease internal master BPM by 0.1 - Diminuir BPM mestre interno de 0.1 - - - - Toggle sync master - Alternar sincronização mestre - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - Alternar modo de sincronização a 3-estados (Desligado, Escravo, Mestre) - One-time beat sync (tempo only) @@ -1021,7 +1069,7 @@ Sincronização pontual da batida (só fase) - + Toggle keylock mode Alternar modo bloqueio de tom @@ -1031,199 +1079,199 @@ Equalizadores - + Vinyl Control Controlo de Vinil - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) Alternar modo de marcação do control do vinil (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) Alternar modo de controlo do vinil (ABS/REL/CONST) - + Pass through external audio into the internal mixer Passar audio externo para o misturador interno - + Cues Pontos de marcação - + Cue button Tecla de Cue - Marcação - + Set cue point Definir ponto de marcação - + Go to cue point Ir para o ponto de marcação - + Go to cue point and play Ir para o ponto de marcação e tocar - + Go to cue point and stop Ir para o ponto de marcação e parar - + Preview from cue point Antevisão a partir do ponto de marcação - + Cue button (CDJ mode) Botão de Cue - Marcação (modo CDJ) - + Stutter cue Marcação Stutter - + Hotcues Hot Cues - + Set, preview from or jump to hotcue %1 Definir, antevisão a partir de ou saltar para a Hot Cue %1 - + Clear hotcue %1 Limpar a Hot Cue %1 - + Set hotcue %1 Definir a Hot Cue %1 - + Jump to hotcue %1 Saltar para a Hot Cue %1 - + Jump to hotcue %1 and stop Saltar para a Hot Cue %1 e parar - + Jump to hotcue %1 and play Saltar para a Hot Cue %1 e tocar - + Preview from hotcue %1 Antevisão a partir da Hot Cue %1 - - + + Hotcue %1 Hot Cue %1 - + Looping Em Loop - + Loop In button Tecla de Início de Loop - + Loop Out button Tecla de Final de Loop - + Loop Exit button Tecla de Saída de Loop - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 32 - + 64 64 - + Move loop forward by %1 beats Move o loop para a frente %1 batidas - + Move loop backward by %1 beats Move o loop para trás %1 batidas - + Create %1-beat loop Criar um loop de %1-batidas - + Create temporary %1-beat loop roll Criar um loop rolado temporário de %1-batidas - + Library Biblioteca @@ -1334,20 +1382,20 @@ - - + + Volume Fader Cursor de Volume - + Full Volume Volume Máximo - + Zero Volume Volume Zero @@ -1363,7 +1411,7 @@ - + Mute Silênciar @@ -1374,7 +1422,7 @@ - + Headphone Listen Escuta de Auscultador @@ -1395,25 +1443,25 @@ - + Orientation Orientação - + Orient Left Orientar Esquerda - + Orient Center Orientar Centro - + Orient Right Orientar Direita @@ -1512,52 +1560,6 @@ Sync Sincronização - - - Sync Mode - Modo Sincronização - - - - Internal Sync Master - Sincronização Interna Mestre - - - - Toggle Internal Sync Master - Alternar Sincronização Interna Mestre - - - - - Internal Master BPM - BPM Mestre Interno - - - - Internal Master BPM +1 - BPM Mestre Interno +1 - - - - Internal Master BPM -1 - BPM Mestre Interno -1 - - - - Internal Master BPM +0.1 - BPM Mestre Interno +0.1 - - - - Internal Master BPM -0.1 - BPM Mestre Interno -0.1 - - - - Sync Master - Sincronização Mestre - Beat Sync One-Shot @@ -1574,37 +1576,37 @@ Sincronizar Fase - One-Shot - + Pitch control (does not affect tempo), center is original pitch Controlo de tom (não afeta o tempo), ao centro é o tom original - + Pitch Adjust Ajustar Tom - + Adjust pitch from speed slider pitch Ajustar o tom com o cursor de velocidade - + Match musical key Igualar o tom musical - + Match Key Igualar Tom - + Reset Key Reiniciar Tom - + Resets key to original Reiniciar o tom para o original @@ -1645,466 +1647,466 @@ EQ Baixos - + Toggle Vinyl Control Alternar Controlo do Vinil - + Toggle Vinyl Control (ON/OFF) Alternar Controlo do Vinil (ON/OFF) - + Vinyl Control Mode Modo Controlo do Vinil - + Vinyl Control Cueing Mode Controlo do Vinil Modo Marcação - + Vinyl Control Passthrough Controlo do Vinil Passthrough - + Vinyl Control Next Deck Controlo do Vinil Próximo Leitor - + Single deck mode - Switch vinyl control to next deck Modo leitor único - Comutar o controlo do vinil para Próximo Leitor - + Cue Marcação - + Set Cue Definir Marcação - + Go-To Cue Ir para Marcação - + Go-To Cue And Play Ir para Marcação e Tocar - + Go-To Cue And Stop Ir para Marcação e Parar - + Preview Cue Antevisão Marcação - + Cue (CDJ Mode) Marcação (Modo CDJ) - + Stutter Cue Marcação Stutter - + Go to cue point and play after release Ir para o ponto de marcação e tocar após libertar - + Clear Hotcue %1 Limpar Hot Cue %1 - + Set Hotcue %1 Definir Hot Cue %1 - + Jump To Hotcue %1 Saltar Para Hot Cue %1 - + Jump To Hotcue %1 And Stop Saltar Para Hot Cue %1 e Parar - + Jump To Hotcue %1 And Play Saltar Para Hot Cue %1 e Tocar - + Preview Hotcue %1 Antevisão Hot Cue %1 - + Loop In Início de Loop - + Loop Out Final de Loop - + Loop Exit Saída do Loop - + Reloop/Exit Loop Reloop/Saída do Loop - + Loop Halve Reduzir a Metade Loop - + Loop Double Duplicar Loop - + 1/32 1/32 - + 1/16 1/16 - + 1/8 1/8 - + 1/4 1/4 - + Move Loop +%1 Beats Mover Loop +%1 Batidas - + Move Loop -%1 Beats Mover Loop -%1 Batidas - + Loop %1 Beats Loop %1 Batidas - + Loop Roll %1 Beats Loop Rolado %1 Batidas - + Add to Auto DJ Queue (bottom) Adicionar à Fila Auto DJ (baixo) - + Append the selected track to the Auto DJ Queue Coloca a faixa selecionada no final da fila Auto DJ - + Add to Auto DJ Queue (top) Adicionar à Fila Auto DJ (cima) - + Prepend selected track to the Auto DJ Queue Coloca a faixa selecionada no início da fila Auto DJ - + Load Track Carregar Faixa - + Load selected track Carregar faixa selecionada - + Load selected track and play Carrega a faixa selecionada e toca - - + + Record Mix Gravar Mistura - + Toggle mix recording Alternar gravação da mistura - + Effects Efeitos - + Quick Effects Efeitos Rápidos - + Deck %1 Quick Effect Super Knob Leitor %1 Super Botão de Efeito Rápido - + Quick Effect Super Knob (control linked effect parameters) Super Botão de Efeito Rápido (controla os parâmetros do efeito a que está ligado) - - + + Quick Effect Efeito Rápido - + Clear effect rack Limpa a rack de efeitos - + Clear Effect Rack Limpar Rack de Efeitos - + Clear Unit Limpar Unidade - + Clear effect unit Limpar unidade de efeitos - + Toggle Unit Alternar Unidade - + Dry/Wet Seco/Molhado - + Adjust the balance between the original (dry) and processed (wet) signal. Ajusta o balanço entre o sinal original (seco) e o processado (wet). - + Super Knob Super Botão - + Next Chain Próxima Cadeia - + Assign Atribuir - + Clear Limpar - + Clear the current effect Limpar o efeito corrente - + Toggle Alternar - + Toggle the current effect Alternar o efeito corrente - + Next Próximo - + Switch to next effect Comutar para o próximo efeito - + Previous Anterior - + Switch to the previous effect Comutar para o efeito anterior - + Next or Previous Próximo ou Anterior - + Switch to either next or previous effect Comutar quer para o próximo ou anterior efeito - - + + Parameter Value Valor Parâmetro - - + + Microphone Ducking Strength Extensão do Talk-Over do Microfone - + Microphone Ducking Mode Modo Talk-Over - + Gain Ganho - + Gain knob Botão de ganho - + Shuffle the content of the Auto DJ queue Torna aleatório o conteúdo da fila do Auto DJ - + Skip the next track in the Auto DJ queue Salta a próxima faixa na fila do Auto DJ - + Auto DJ Toggle Alternar Auto DJ - + Toggle Auto DJ On/Off Alternar Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. Mostra ou oculta o misturador. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore Maximizar/Restaurar Biblioteca - + Maximize the track library to take up all the available screen space. Maximiza a biblioteca de faixas para ocupar todo o espaço disponível do ecrã. - + Effect Rack Show/Hide Mostrar/Ocultar Rack Efeitos - + Show/hide the effect rack Mostra/oculta a rack de efeitos - + Waveform Zoom Out Reduzir Forma de Onda @@ -2129,93 +2131,93 @@ Sincronizar o tempo da batida de uma só vez (e fase com a quantização validada) - + Playback Speed Velocidadede Leitura - + Playback speed control (Vinyl "Pitch" slider) Controlo da velocidade de leitura (cursor "Pitch" no vinil) - + Pitch (Musical key) Tom (Nota musical) - + Increase Speed Aumentar Velocidade - + Adjust speed faster (coarse) Ajusta a velocidade mais rápida (grosseiro) - - + + Increase Speed (Fine) Aumentar Velocidade (Fino) - + Adjust speed faster (fine) Ajusta a velocidade mais rápida (fino) - + Decrease Speed Diminuir Velocidade - + Adjust speed slower (coarse) Ajusta a velocidade mais lenta (grosseiro) - + Adjust speed slower (fine) Ajusta a velocidade mais lenta (fino) - + Temporarily Increase Speed Aumentar Velocidade Temporariamente - + Temporarily increase speed (coarse) Aumentar a velocidade temporariamente (grosseiro) - + Temporarily Increase Speed (Fine) Aumentar Velocidade Temporariamente (Fino) - + Temporarily increase speed (fine) Aumentar a velocidade temporariamente (fino) - + Temporarily Decrease Speed Diminuir Velocidade Temporariamente - + Temporarily decrease speed (coarse) Diminuir a velocidade temporariamente (grosseiro) - + Temporarily Decrease Speed (Fine) Diminuir Velocidade Temporariamente (Fino) - + Temporarily decrease speed (fine) Diminuir a velocidade temporariamente (fino) @@ -2272,806 +2274,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed Velocidade - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock Bloqueio de Tom - + CUP (Cue + Play) CUP (Marcar + Tocar) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats Loop Batidas Selecionadas - + Create a beat loop of selected beat size Criar um loop de batidas do tamanho selecionado - + Loop Roll Selected Beats Loop Rolado Batidas Selecionadas - + Create a rolling beat loop of selected beat size Criar um loop rolado de batidas do tamanho selecionado - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position Alterna entre ligar/desligar o loop e salta para o ponto Início de Loop, se o loop estiver atrás da posição de leitura - + Reloop And Stop Reloop e Parar - + Enable loop, jump to Loop In point, and stop Ativa o loop, salta para o ponto de Início de Loop, e pára. - + Halve the loop length Reduz a metade o comprimento do loop - + Double the loop length Duplica o comprimento do loop - + Beat Jump / Loop Move Saltar Batidas / Mover Loop - + Jump / Move Loop Forward %1 Beats Saltar / Mover o Loop para a Frente %1 Batidas - + Jump / Move Loop Backward %1 Beats Saltar / Mover o Loop para Trás %1 Batidas - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats Saltar para a frente %1 batidas, ou se o loop estiver ativado, mover o loop para a frente %1 batidas - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats Saltar para trás %1 batidas, ou se o loop estiver ativado, mover o loop para trás %1 batidas - + Beat Jump / Loop Move Forward Selected Beats Saltar Batidas / Mover Loop Frente Batidas Selecionadas - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats Saltar para a frente do número de batidas selecionadas, ou se o loop estiver ativado, mover o loop para a frente o número de batidas selecionadas - + Beat Jump / Loop Move Backward Selected Beats Saltar Batida / Mover Loop Atraso Batidas Selecionadas - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats Saltar para trás o número de batidas selecionadas, ou se o loop estiver ativado, mover o loop para trás o número de batidas selecionadas - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up Mover cima - + Equivalent to pressing the UP key on the keyboard Equivalente a pressionar a tecla CIMA no teclado - + Move down Mover baixo - + Equivalent to pressing the DOWN key on the keyboard Equivalente a pressionar a tecla BAIXO no teclado - + Move up/down Mover cima/baixo - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys Mover verticalmente em qualquer direção usando um botão, tal como se pressionasse as teclas CIMA/BAIXO - + Scroll Up Rolar Cima - + Equivalent to pressing the PAGE UP key on the keyboard Equivalente a pressionar a tecla PAGE UP no teclado - + Scroll Down Rolar Baixo - + Equivalent to pressing the PAGE DOWN key on the keyboard Equivalente a pressionar a tecla PAGE DOWN no teclado - + Scroll up/down Rolar cima/baixo - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys Rolar verticalmente em qualquer direção usando um botão, como se pressionasse as teclas PAGE UP/PAGE DOWN - + Move left Mover esquerda - + Equivalent to pressing the LEFT key on the keyboard Equivalente a pressionar a tecla ESQUERDA no teclado - + Move right Mover direita - + Equivalent to pressing the RIGHT key on the keyboard Equivalente a pressionar a tecla DIREITA no teclado - + Move left/right Mover esquerda/direita - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys Mover horizontalmente em qualquer direção usando um botão, como se pressionasse as teclas ESQUERDA/DIREITA - + Move focus to right pane Mover o foco para o painel da direita - + Equivalent to pressing the TAB key on the keyboard Equivalente a pressionar a tecla TAB no teclado - + Move focus to left pane Mover o foco para o painel da esquerda - + Equivalent to pressing the SHIFT+TAB key on the keyboard Equivalente a pressionar a tecla SHIFT+TAB no teclado - + Move focus to right/left pane Mover o foco para o painel direita/esquerda - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys Mover o foco para o painel da direita ou esquerda usando um botão, como se pressionasse as teclas TAB/SHIF+TAB - + Go to the currently selected item Ir para o item seleccionado correntemente - + Choose the currently selected item and advance forward one pane if appropriate Escolher o item seleccionado correntemente e avançar um para a frente - + Load Track and Play - + Add to Auto DJ Queue (replace) Adicionar à Fila Auto DJ (Substituir) - + Replace Auto DJ Queue with selected tracks Substituir Fila Auto DJ com as faixas selecionadas - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button Botão de Ativar Efeito Rápido no Leitor %1 - + Quick Effect Enable Button Botão de Ativar Efeito Rápido - + Enable or disable effect processing Ativar ou desativar o processamento de efeito - + Super Knob (control effects' Meta Knobs) Super Botão (controla os efeitos dos Meta Botões) - + Mix Mode Toggle Alternar Modo Mistura - + Toggle effect unit between D/W and D+W modes Alternar unidade de efeito entre os modos S/M e S+M - + Next chain preset Próxima cadeia predefinida - + Previous Chain Cadeia Anterior - + Previous chain preset Cadeia predefinida anterior - + Next/Previous Chain Próxima/Anterior Cadeia - + Next or previous chain preset Próxima ou anterior cadeia predefinida - - + + Show Effect Parameters Mostrar Parâmetros dos Efeitos - + Effect Unit Assignment - + Meta Knob Botão Meta - + Effect Meta Knob (control linked effect parameters) Meta Botão Efeitos (controla os parâmetros dos efeitos a que está ligado) - + Meta Knob Mode Modo Meta Botão - + Set how linked effect parameters change when turning the Meta Knob. Define como mudam os efeitos a que está ligado, quando se roda o Meta Botão. - + Meta Knob Mode Invert Inverter Modo Meta Botão - + Invert how linked effect parameters change when turning the Meta Knob. Inverter como mudam os efeitos a que está ligado, quando se roda o Meta Botão. - - + + Button Parameter Value - + Microphone / Auxiliary Microfone / Auxiliar - + Microphone On/Off Microfone Ligar/Desligar - + Microphone on/off Microfone ligar/desligar - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) Alternar o modo Talk-Over do microfone (OFF, AUTO, MANUAL) - + Auxiliary On/Off Auxiliar Ligar/Desligar - + Auxiliary on/off Auxiliar ligar/desligar - + Auto DJ Auto DJ - + Auto DJ Shuffle Auto DJ Aleatório - + Auto DJ Skip Next Auto DJ Saltar Próxima - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next Auto DJ Fade para Próxima - + Trigger the transition to the next track Aciona a transição para a próxima faixa - + User Interface Interface do Utilizador - + Samplers Show/Hide Samplers Mostrar/Ocultar - + Show/hide the sampler section Mostrar/ocultar a seção sampler - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. Fazer stream da sua mistura através da Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide Controlo do Vinil Mostrar/Ocultar - + Show/hide the vinyl control section Mostra/oculta a seção de controlo do vinil - + Preview Deck Show/Hide Leitor de Antevisão Mostrar/Ocultar - + Show/hide the preview deck Mostra/oculta o leitor de antevisão - + Toggle 4 Decks Alternar 4 Leitores - + Switches between showing 2 decks and 4 decks. Comuta entre mostrar 2 leitores e 4 leitores. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide Gira Discos Mostrar/Ocultar - + Show/hide spinning vinyl widget Mostra/oculta o widget simulador de gira discos a rodar - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom Ampliação da forma de onda - + Waveform Zoom Ampliação Forma de Onda - + Zoom waveform in Ampliar a forma de onda - + Waveform Zoom In Aumentar Ampliação da Forma de Onda - + Zoom waveform out Reduzir a forma de onda - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3160,32 +3228,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. Tente recuperar reiniciando o seu controlador. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. O código do script precisa de ser corrigido. @@ -3221,133 +3289,133 @@ CrateFeature - + Remove Remover - - + + Create New Crate Criar Caixa Nova - + Rename Renomear - - + + Lock Bloquear - + Export Crate as Playlist - + Export Track Files Exportar Faixas - + Duplicate Duplicar - + Analyze entire Crate Analisar Caixa inteira - + Auto DJ Track Source Fonte Faixas Auto DJ - + Enter new name for crate: Introduza um novo nome para a caixa: - - + + Crates Caixas - - + + Import Crate Importar Caixa - + Export Crate Exportar Caixa - + Unlock Desbloquear - + An unknown error occurred while creating crate: Ocorreu um erro desconhecido ao criar a caixa: - + Rename Crate Renomear Caixa - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed Renomeação da Caixa Falhou - + Crate Creation Failed Criação da Caixa Falhou - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Playlist M3U (*.m3u);;Playlist M3U8 (*.m3u8);;Playlist PLS (*.pls);;Texto CSV (*.csv);;Documento de Texto (*.txt) - + Crates are a great way to help organize the music you want to DJ with. Caixas são uma excelente forma de organizar a música que quer usar como DJ. - + Crates let you organize your music however you'd like! As caixas deixam-no organizar a sua música da maneira que gostar! - + A crate cannot have a blank name. Uma caixa não pode ter um nome em branco. - + A crate by that name already exists. Já existe uma caixa com esse nome. @@ -3417,37 +3485,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: Com contribuições de: - + And special thanks to: E um agradecimento especial a: - + Past Developers Desenvolvedores antigos - + Past Contributors Colaboradores antigos - + Official Website - + Donate @@ -4880,32 +4948,32 @@ Aplicar definições e continuar? DlgPrefControlsDlg - + Skin Skin - + Tool tips Dicas de ferramentas - + Select from different color schemes of a skin if available. Selecionar entre esquemas de cores diferentes duma Skin, se disponível. - + Color scheme Esquema de côr - + Locales determine country and language specific settings. Localização determina definições específicas para o país e a lingua. - + Locale Localização @@ -4915,52 +4983,42 @@ Aplicar definições e continuar? Preferências do Interface - + HiDPI / Retina scaling Escala HiDPI / Retina - + Change the size of text, buttons, and other items. Alterar o tamanho do texto, teclas, e outros items. - - Adopt scale factor from the operating system - Adotar o fator de escala do sistema operacional - - - - Auto Scaling - Escala Automática - - - + Screen saver Protetor de ecrã - + Start in full-screen mode Iniciar em modo ecrã inteiro - + Full-screen mode Modo ecrã inteiro - + Off Off - + Library only Apenas biblioteca - + Library and Skin Biblioteca e Skin @@ -5589,39 +5647,39 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. O tamanho mínimo da Skin escolhida é maior que a resolução do seu ecrã. - + Allow screensaver to run Permitir correr o protetor de ecrã - + Prevent screensaver from running Impedir correr o protetor de ecrã - + Prevent screensaver while playing Impedir protetor de ecrã enquanto estiver a tocar - + This skin does not support color schemes Esta Skin não suporta esquemas de cores - + Information Informação - - Mixxx must be restarted before the new locale setting will take effect. - O Mixxx deve ser reiniciado antes de a nova definição de localização ter efeito. + + Mixxx must be restarted before the new locale or scaling settings will take effect. + @@ -5839,62 +5897,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added Pasta de Música Adicionada - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? Adicionou uma ou mais pastas de música. As faixas nestas pastas não estarão disponíveis até reexaminar a sua biblioteca. Deseja reexaminar agora? - + Scan Examinar - + Choose a music directory Escolher uma pasta de música - + Confirm Directory Removal Confirmar Remoção de Pasta - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. O Mixxx já não considera esta pasta para faixas novas. O que gostaria de fazer com as faixas desta pasta e subpastas?<ul><li>Ocultar todas as faixas desta pasta e subpastas.</li><li>Apagar todos os metadados destas faixas do Mixxx definitivamente.</li><li>Deixar as faixas inalteradas na sua biblioteca.</li></ul>Ocultar faixas guarda os seus metadados para o caso de os voltar a adicionar futuramente. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. Os metadados referem-se a todos os detalhes das faixas (artista, título, género, etc.) bem como as grelhas de batidas, hotcues e loops. Esta escolha afeta apenas a biblioteca do Mixxx. Nenhumas faixas do disco serão alteradas ou apagadas. - + Hide Tracks Ocultar Faixas - + Delete Track Metadata Apagar Metadados das Faixas - + Leave Tracks Unchanged Deixar Faixas Inalteradas - + Relink music directory to new location Associar novamente a pasta de músicas a uma nova localização - + Select Library Font Escolher Fonte da Biblioteca @@ -6899,32 +6957,32 @@ O nível de loudness é aproximado e assume que o ganho do preamplificador da fa DlgPrefWaveform - + Filtered Filtrado - + HSV HSV - + RGB RGB - + OpenGL not available OpenGL não disponível - + dropped frames fotogramas perdidos - + Cached waveforms occupy %1 MiB on disk. Formas de onda em cache ocupam %1 MB em disco. @@ -7140,72 +7198,72 @@ Selecione entre tipos diferentes de visualizações da forma de onda, o que dife Biblioteca - + Interface Interface - + Waveforms Formas de Onda - + Auto DJ Auto DJ - + Equalizers Equalizadores - + Decks Leitores - + Colors - + Crossfader Crossfader - + Effects Efeitos - + LV2 Plugins Módulos LV2 - + Recording Gravação - + Beat Detection Deteção de Batidas - + Key Detection Deteção do Tom - + Normalization Normalização - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7215,12 +7273,12 @@ Selecione entre tipos diferentes de visualizações da forma de onda, o que dife Controlo de Vinil - + Live Broadcasting Emissão ao Vivo - + Modplug Decoder Descodificador modplug @@ -7361,123 +7419,123 @@ Selecione entre tipos diferentes de visualizações da forma de onda, o que dife Selecionar a melhor correspondência possível - - + + Track Faixa - - + + Year Ano - + Title Título - - + + Artist Artista - - + + Album Album - + Album Artist Artista do Album - + Fetching track data from the MusicBrainz database Trazendo dados da faixa, da base de dados MusicBrainz - + Mixxx could not find this track in the MusicBrainz database. O Mixxx não conseguiu encontrar esta faixa na base de dados MusicBrainz. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. Obter API-Key - + Submit Submits audio fingerprints to the MusicBrainz database. Submeter - + New Column Nova Coluna - + New Item Novo Item - + &Previous &Anterior - + &Next &Próximo - + &Apply &Aplicar - + &Close &Fechar - + Status: %1 Estado: %1 - + HTTP Status: %1 Estado HTTP: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. O Mixxx não se consegue ligar a %1 por uma razão desconhecida. - + Mixxx can't connect to %1. O Mixxx não se consegue ligar a %1. - + Original tags Etiquetas originais - + Suggested tags Etiquetas sugeridas @@ -7869,17 +7927,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) Soundtouch (mais rápido) - + Rubberband (better) Rubberband (melhor) - + Unknown (bad value) Desconhecido (valor incorreto) @@ -7980,38 +8038,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes iTunes - - + + Select your iTunes library Selecione a sua biblioteca iTunes - + (loading) iTunes (carregamento) iTunes - + Use Default Library Usar Biblioteca Padrão - + Choose Library... Escolher Biblioteca... - + Error Loading iTunes Library Erro ao Carregar Biblioteca iTunes - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. Houve um erro ao carregar a sua biblioteca iTunes. Algumas das suas faixas iTunes ou playlists podem não ter sido carregadas. @@ -8019,13 +8077,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. Modo Segurança Ativado - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8034,57 +8092,57 @@ support. OpenGL - + activate ativar - + toggle comutar - + right direita - + left esquerda - + right small direita curto - + left small esquerda curto - + up cima - + down baixo - + up small cima curto - + down small baixo curto - + Shortcut Atalho @@ -8105,22 +8163,22 @@ OpenGL LibraryFeature - + Import Playlist Importar Playlist - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Ficheiros Playlist (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8134,27 +8192,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Examinador de Biblioteca - + It's taking Mixxx a minute to scan your music library, please wait... O Mixxx necessitará de uns minutos para examinar a sua biblioteca de música, por favor aguarde... - + Cancel Cancelar - + Scanning: A Examinar: - + Scanning cover art (safe to cancel) Examinar capa (seguro cancelar) @@ -8271,183 +8329,183 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy Dispositivo de Som Ocupado - + <b>Retry</b> after closing the other application or reconnecting a sound device <b>Repetir</b> após fechar a outra aplicação ou religar um dispositivo de som. - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. <b>Reconfigurar</b> as definições dos dispositivos de som do Mixxx. - - + + Get <b>Help</b> from the Mixxx Wiki. Obter <b>Ajuda</b> a partir do Wiki Mixxx. - - - + + + <b>Exit</b> Mixxx. <b>Sair</b> do Mixxx. - + Retry Repetir - + skin - - + + Reconfigure Reconfigurar - + Help Ajuda - - + + Exit Sair - - + + Mixxx was unable to open all the configured sound devices. Mixxx não foi capaz de abrir todos os dispositivos de som configurados. - + Sound Device Error Erro Dispositivo de Som - + <b>Retry</b> after fixing an issue <b>Repetir</b> após resolver uma questão - + No Output Devices Sem Dispositivos de Saída - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. O Mixxx foi configurado sem quaisquer dispositivos de saída de som. O processamento de audio será desativado sem a configuração de um dispositivo de saída. - + <b>Continue</b> without any outputs. <b>Continuar</b> sem quaisquer saídas. - + Continue Continuar - + Load track to Deck %1 Carregar faixa para o Leitor %1 - + Deck %1 is currently playing a track. O Leitor %1 está presentemente a reproduzir uma faixa. - + Are you sure you want to load a new track? Tem a certeza que quer carregar uma nova faixa? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. Não existe nenhum dispositivo selecionado para este controlo do vinil. Por favor, selecione primeiro um dispositivo de entrada, nas preferências de hardware de som. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. Não existe nenhum dispositivo de entrada selecionado para este controlo passthrough. Por favor, selecione primeiro um dispositivo de entrada, nas preferências de hardware de som. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file Erro no ficheiro da Skin. - + The selected skin cannot be loaded. A Skin selecionada não pode ser carrregada. - + OpenGL Direct Rendering Interpretação Direta de OpenGL - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Confirmar Saída - + A deck is currently playing. Exit Mixxx? Um leitor está presentemente em reprodução. Sair do Mixxx? - + A sampler is currently playing. Exit Mixxx? Um sampler está presentemente em reprodução. Sair do Mixxx? - + The preferences window is still open. A janela de preferências ainda está aberta. - + Discard any changes and exit Mixxx? Rejeitar quaisquer alterações e sair do Mixxx? @@ -8520,43 +8578,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Bloquear - + Playlists Playlists - + Unlock Desbloquear - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. Alguns DJs elaboram playlists antes de atuarem ao vivo, mas outros preferem elaborá-las no momento. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. Quando estiver a usar uma playlist durante uma atuação DJ ao vivo, lembre-se de prestar sempre atenção a como o seu público reage à música que escolheu para tocar. - + Create New Playlist Criar uma Playlist Nova @@ -8564,59 +8622,59 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx Atualização Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? O Mixxx agora permite mostrar a capa do disco. Deseja examinar a sua biblioteca para encontrar ficheiros de capa de disco, agora? - + Scan Examinar - + Later Mais Tarde - + Upgrading Mixxx from v1.9.x/1.10.x. Atualização do Mixxx a partir de V1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. O Mixx possui um detetor de batidas novo e aperfeiçoado. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. Quando carrega faixas, o Mixxx pode reanalisá-las e gerar novas grelhas de batida, mais precisas. Isto tornará a sincronização automática de batidas e os loopings mais confiáveis. - + This does not affect saved cues, hotcues, playlists, or crates. Isto não afeta marcações guardadas, hot cues, playlists, ou caixas. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. Se não desejar que o Mixxx reanalise as suas faixas, escolha "Manter as Grelhas de Batida Presentes". Poderá alterar esta definição em qualquer momento a partir da seção "Deteção de Batida" nas Preferências. - + Keep Current Beatgrids Manter as Grelhas de Batida Presentes - + Generate New Beatgrids Gerar Novas Grelhas de Batidas @@ -8800,7 +8858,7 @@ Deseja examinar a sua biblioteca para encontrar ficheiros de capa de disco, agor - + Encoder Codificador @@ -9951,12 +10009,12 @@ Tudo direita: fim do período do efeito - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10094,54 +10152,54 @@ Tudo direita: fim do período do efeito RekordboxFeature - - - + + + Rekordbox - + Playlists Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10150,7 +10208,7 @@ Tudo direita: fim do período do efeito RhythmboxFeature - + Rhythmbox Caixa de Ritmos @@ -10201,34 +10259,34 @@ Tudo direita: fim do período do efeito SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks Faixas - + Crates Caixas - + Check for Serato databases (refresh) - + (loading) Serato @@ -10251,12 +10309,12 @@ Tudo direita: fim do período do efeito Histórico - + Unlock Desbloquear - + Lock Bloquear @@ -11215,6 +11273,31 @@ Tudo direita: fim do período do efeito Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12392,11 +12475,6 @@ Usar isto para alterar apenas o sinal já com os efeitos (molhado) de EQ e filtr Old Synchronize Sincronização Antiga - - - (This skin should be updated to use Master Sync!) - (Esta Skin deve ser atualizada para usar Sincronização Mestre!) - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12412,16 +12490,6 @@ Usar isto para alterar apenas o sinal já com os efeitos (molhado) de EQ e filtr Decks can't sync to samplers and samplers can only sync to decks. Os leitores não se podem sincronizar com samplers, e os samplers só se podem sincronizar com os leitores. - - - Enable Master Sync - Ativar Sincronização Mestre - - - - Tap to sync the tempo to other playing tracks or the master clock. - Bater para sincronizar o tempo com outras faixas em reprodução, ou o relógio mestre. - Hold for at least a second to enable sync lock for this deck. @@ -12437,16 +12505,6 @@ Usar isto para alterar apenas o sinal já com os efeitos (molhado) de EQ e filtr Resets the key to the original track key. Reinicia o tom, para o tom original da faixa. - - - Enable Sync Clock Master - Ativar Sincronização Relógio Mestre - - - - When enabled, this device will serve as the master clock for all other decks. - Quando ativada, este dispositivo servirá como o relógio mestre, para todas as outras faixas. - Speed Control @@ -13000,22 +13058,22 @@ Usar isto para alterar apenas o sinal já com os efeitos (molhado) de EQ e filtr TraktorFeature - + Traktor Traktor - + (loading) Traktor (carregar) Traktor - + Error Loading Traktor Library Erro ao Carregar a Biblioteca Traktor - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. Houve um erro ao carregar a sua biblioteca Traktor. Algumas das suas faixas ou playlists do Tracktor poderão não ter sido carregadas. @@ -13627,20 +13685,20 @@ Usar isto para alterar apenas o sinal já com os efeitos (molhado) de EQ e filtr - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13811,8 +13869,8 @@ Usar isto para alterar apenas o sinal já com os efeitos (molhado) de EQ e filtr Género - - Folder + + Directory @@ -14055,155 +14113,160 @@ Usar isto para alterar apenas o sinal já com os efeitos (molhado) de EQ e filtr - + + Update ReplayGain from Deck Gain + + + + Deck %1 Leitor %1 - + Sampler %1 Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Criar uma Playlist Nova - + Enter name for new playlist: Introduzir um nome para a nova playlist: - + New Playlist Playlist Nova - - - + + + Playlist Creation Failed Criação da Playlist Falhou - + A playlist by that name already exists. Já existe uma playlist com esse nome. - + A playlist cannot have a blank name. Uma playlist não pode ter um nome em branco. - + An unknown error occurred while creating playlist: Ocorreu um erro desconhecido ao criar a playlist: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14211,7 +14274,7 @@ Usar isto para alterar apenas o sinal já com os efeitos (molhado) de EQ e filtr WTrackTableView - + ESC Focus ESC @@ -14248,128 +14311,55 @@ Usar isto para alterar apenas o sinal já com os efeitos (molhado) de EQ e filtr (GL ES) - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory Escolher a pasta biblioteca musical - + controllers - + Cannot open database Não pode abrir a base de dados. - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14448,7 +14438,7 @@ Clique OK para sair. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14505,62 +14495,62 @@ Clique OK para sair. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse Rato HID Genérico - + Generic HID Joystick Joystick HID Genérico - + Generic HID Game Pad - + Generic HID Keyboard Teclado HID Genérico - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_ro.qm b/res/translations/mixxx_ro.qm index a3f06ae61bbfc59970108e336b74f121d9a7dcce..97593b9eb2922b00f40ced7f4c060744cbbeca9a 100644 GIT binary patch delta 12748 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 MjQwU*Zp|wHFDYB4CjbBd diff --git a/res/translations/mixxx_ro.ts b/res/translations/mixxx_ro.ts index 2253da049ea..ff2312bea76 100644 --- a/res/translations/mixxx_ro.ts +++ b/res/translations/mixxx_ro.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Colecții - + Remove Crate as Track Source Elimină colecția ca sursă pistă - + Auto DJ Auto DJ - + Add Crate as Track Source Adaugă colecția ca sursă pistă @@ -43,25 +43,25 @@ BansheeFeature - + Banshee Banshee - - + + Error loading Banshee database Eroare la încărcarea bazei de date Banshee - + Banshee database file not found at Nu s-a găsit baza de date Banshee la - + There was an error loading your Banshee database at A apărut o eroare la încărcarea bazei de date Banshee @@ -70,32 +70,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Adăugaţi în selecţia Auto DJ (jos) - + Add to Auto DJ Queue (top) Adăugaţi în selecţia Auto DJ (sus) - + Add to Auto DJ Queue (replace) - + Import Playlist Importă listă de redare - + Playlist Creation Failed Crearea listei de redare a eşuat - + An unknown error occurred while creating playlist: O eroare necunoscută a apărut în timpul creării listei de redare: @@ -103,144 +103,144 @@ BasePlaylistFeature - + New Playlist Listă de redare nouă - + Add to Auto DJ Queue (bottom) Adăugaţi în selecţia Auto DJ (jos) - - + + Create New Playlist Crează listă de redare nouă - + Add to Auto DJ Queue (top) Adăugaţi în selecţia Auto DJ (sus) - + Remove Elimină - + Rename Redenumește - + Lock Blochează - + Duplicate Duplică - - + + Import Playlist Importă listă de redare - + Export Track Files - + Analyze entire Playlist Analizează întreaga listă de redare - + Enter new name for playlist: Introduceți noul nume pentru lista de redare: - + Duplicate Playlist Duplicare listă de redare - - + + Enter name for new playlist: Introduceți numele pentru noua listă de redare: - - + + Export Playlist Exportare listă de redare - + Add to Auto DJ Queue (replace) - + Rename Playlist Redenumește lista de redare - - + + Renaming Playlist Failed Redenumirea listei de redare a eşuat - - - + + + A playlist by that name already exists. Există deja o listă de redare cu acelaşi nume. - - - + + + A playlist cannot have a blank name. O listă de redare nu poate fi nedenumită. - + _copy //: Appendix to default name when duplicating a playlist _copiere - - - - - - + + + + + + Playlist Creation Failed Crearea listei de redare a eşuat - - + + An unknown error occurred while creating playlist: O eroare necunoscută a apărut în timpul creării listei de redare: - + M3U Playlist (*.m3u) Listă de redare M3U (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Text lizibil (*.txt) @@ -261,7 +261,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Nu se poate încărca pista. @@ -513,7 +513,7 @@ - + Computer @@ -533,7 +533,7 @@ Scanare - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -646,12 +646,12 @@ Fișier creat - + Mixxx Library Biblioteca Mixxx - + Could not load the following file because it is in use by Mixxx or another application. Nu s-a putut încărca fișierul următor deoarece este utilizat de Mixxx sau altă aplicație. @@ -682,6 +682,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -864,13 +942,13 @@ - + Set to full volume Configurează la volum maxim - + Set to zero volume Configurează la volum 0 @@ -895,13 +973,13 @@ - + Headphone listen button Buton ascultare în căști - + Mute button Buton amuțire @@ -917,25 +995,25 @@ - + Mix orientation (e.g. left, right, center) Orientare mixer (ex.-stânga,-dreapta,-centru) - + Set mix orientation to left Configurează orientarea mixerului la stânga - + Set mix orientation to center Configurează orientarea mixerului la centru - + Set mix orientation to right Configurează orientarea mixerului la dreapta @@ -979,36 +1057,6 @@ Toggle quantize mode Comută mod cuantificare - - - Increase internal master BPM by 1 - Mărește BPM Master intern cu 1 - - - - Decrease internal master BPM by 1 - Scade BPM Master intern cu 1 - - - - Increase internal master BPM by 0.1 - Mărește BPM Master intern cu 0.1 - - - - Decrease internal master BPM by 0.1 - Scade BPM Master intern cu 0.1 - - - - Toggle sync master - Comută sincronizarea Master - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - Comutare stare sincronizare 3-stări (ÎNCHIS, SCLAV, MASTER) - One-time beat sync (tempo only) @@ -1020,7 +1068,7 @@ Sincronizare bătaie o singură dată (numai fază) - + Toggle keylock mode Comută mod keylock @@ -1030,199 +1078,199 @@ Egalizatoare - + Vinyl Control Control disc vinil - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) Comută mod control disc vinil (ABS/REL/CONST) - + Pass through external audio into the internal mixer Trece audio extern în mixerul intern - + Cues Cue - + Cue button Buton cue - + Set cue point Configurare punct cue - + Go to cue point Mergi la punct cue - + Go to cue point and play Mergi la punct cue și redă - + Go to cue point and stop Mergi la punct cue și oprește - + Preview from cue point Previzualizare de la punct cue - + Cue button (CDJ mode) Buton cue (mod CDJ) - + Stutter cue - + Hotcues Hotcue - + Set, preview from or jump to hotcue %1 Configurează, previzualizează de la sau sari la hotcue %1 - + Clear hotcue %1 Curăță hotcue %1 - + Set hotcue %1 Configurează hotcue %1 - + Jump to hotcue %1 Sări la hotcue %1 - + Jump to hotcue %1 and stop Sări la hotcue %1 și oprește - + Jump to hotcue %1 and play Sări la hotcue %1 și redă - + Preview from hotcue %1 Previzualizează hotcue %1 - - + + Hotcue %1 Hotcue %1 - + Looping Repetă în buclă - + Loop In button Buton începere buclă - + Loop Out button Buton terminare buclă - + Loop Exit button Buton ieșire buclă - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 32 - + 64 64 - + Move loop forward by %1 beats Mută bucla înainte cu %1 bătăi - + Move loop backward by %1 beats Mută bucla înapoi cu %1 bătăi - + Create %1-beat loop Creează buclă de %1 bătăi - + Create temporary %1-beat loop roll Creează o buclă temporară de %1 bătăi - + Library Bibliotecă @@ -1333,20 +1381,20 @@ - - + + Volume Fader Fader Volume - + Full Volume Volum total - + Zero Volume Volum zero @@ -1362,7 +1410,7 @@ - + Mute Amuțire @@ -1373,7 +1421,7 @@ - + Headphone Listen Ascultare în căști @@ -1394,25 +1442,25 @@ - + Orientation Orientare - + Orient Left Orientare stânga - + Orient Center Orientare centru - + Orient Right Orientare dreapta @@ -1511,52 +1559,6 @@ Sync Sincronizare - - - Sync Mode - Mod sincronizare - - - - Internal Sync Master - Sincronizare interioară Master - - - - Toggle Internal Sync Master - Comută sincronizarea internă Master - - - - - Internal Master BPM - BPM Master intern - - - - Internal Master BPM +1 - BPM Master intern +1 - - - - Internal Master BPM -1 - BPM Master intern -1 - - - - Internal Master BPM +0.1 - BPM Master intern +0.1 - - - - Internal Master BPM -0.1 - BPM Master intern -0.1 - - - - Sync Master - Sincronizare Master - Beat Sync One-Shot @@ -1573,37 +1575,37 @@ Sincronizează faza o singură dată - + Pitch control (does not affect tempo), center is original pitch Control pitch (nu afectează tempo), la centru este pitch original - + Pitch Adjust Ajustare pitch - + Adjust pitch from speed slider pitch - + Match musical key Potrivește cheia muzicală - + Match Key Potrivește cheia - + Reset Key Resetează cheia - + Resets key to original Resetează cheia la original @@ -1644,466 +1646,466 @@ Egalizator joase - + Toggle Vinyl Control Comută controlul disc vinil - + Toggle Vinyl Control (ON/OFF) Comută control disc vinil (Pornit/Oprit) - + Vinyl Control Mode Mod control disc vinil - + Vinyl Control Cueing Mode Control vinil mod cue - + Vinyl Control Passthrough - + Vinyl Control Next Deck Control disc vinil deck-ul următor - + Single deck mode - Switch vinyl control to next deck Mod deck unic - Comută controlul discului vinil la următorul deck - + Cue Cue - + Set Cue Configurare cue - + Go-To Cue Mergi la cue - + Go-To Cue And Play Mergi la cue și redă - + Go-To Cue And Stop Mergi la cue și oprește - + Preview Cue Previzualizare cue - + Cue (CDJ Mode) Cue (mod CDJ) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 Curăță hotcue %1 - + Set Hotcue %1 Configurează hotcue %1 - + Jump To Hotcue %1 Sări la hotcue %1 - + Jump To Hotcue %1 And Stop Sări la hotcue %1 și oprește - + Jump To Hotcue %1 And Play Sări la hotcue %1 și redă - + Preview Hotcue %1 Previzualizare hotcue %1 - + Loop In Intrare buclă - + Loop Out Ieșire buclă - + Loop Exit Ieșire buclă - + Reloop/Exit Loop Reluare/ieșire buclă - + Loop Halve Înjumătățește bucla - + Loop Double Buclă dublă - + 1/32 1/32 - + 1/16 1/16 - + 1/8 1/8 - + 1/4 1/4 - + Move Loop +%1 Beats Mută bucla cu +%1 bătăi - + Move Loop -%1 Beats Mută bucla cu -%1 bătăi - + Loop %1 Beats Buclă %1 bătăi - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) Adăugaţi în selecţia Auto DJ (jos) - + Append the selected track to the Auto DJ Queue Adaugă pistele selectate la Coada Auto DJ - + Add to Auto DJ Queue (top) Adăugaţi în selecţia Auto DJ (sus) - + Prepend selected track to the Auto DJ Queue - + Load Track Încarcă pista - + Load selected track Încarcă pista selectată - + Load selected track and play Încarcă pista selectată și redă - - + + Record Mix Mixer înregistrare - + Toggle mix recording Comută mixer înregistrare - + Effects Efecte - + Quick Effects Efecte rapide - + Deck %1 Quick Effect Super Knob Super buton efect rapid Deck %1 - + Quick Effect Super Knob (control linked effect parameters) Super buton efect rapid (control parametrii efecte legate) - - + + Quick Effect Efect rapid - + Clear effect rack Curăță rack efect - + Clear Effect Rack Curăță rack efect - + Clear Unit Curăță unitatea - + Clear effect unit Curăță unitatea efectelor - + Toggle Unit Comută unitatea - + Dry/Wet Uscat/umed - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob Super buton - + Next Chain Lanțul următor - + Assign Atribuie - + Clear Curăță - + Clear the current effect Curăță efectul curent - + Toggle Comutare - + Toggle the current effect Comută efectul curent - + Next Următor - + Switch to next effect Comută la efectul următor - + Previous Anterior - + Switch to the previous effect Comută la efectul anterior - + Next or Previous Următor sau anterior - + Switch to either next or previous effect Comută fie la următorul sau anteriorul efect - - + + Parameter Value Valoare parametru - - + + Microphone Ducking Strength Intensitate atenuare microfon - + Microphone Ducking Mode Mod atenuare microfon - + Gain Câștig - + Gain knob Buton câștig - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle Comutare DJ automat - + Toggle Auto DJ On/Off Comută Auto DJ Pornit/Oprit - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. Arată sau ascunde mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore Bibliotecă mărește/restaurează - + Maximize the track library to take up all the available screen space. Mărește spațiul bibliotecii pentru a acoperii tot spațiul disponibil al ecranului. - + Effect Rack Show/Hide Arată/ascunde rack efect - + Show/hide the effect rack Arată/ascunde rack-ul efectului - + Waveform Zoom Out Redu zoom formă de undă @@ -2128,93 +2130,93 @@ - + Playback Speed Viteză redare - + Playback speed control (Vinyl "Pitch" slider) Control viteză redare (Vinyl "Pitch" cursor) - + Pitch (Musical key) Pitch (Cheie muzicală) - + Increase Speed Mărește viteza - + Adjust speed faster (coarse) Ajustează viteza repede (brut) - - + + Increase Speed (Fine) Mărește viteza (Fin) - + Adjust speed faster (fine) Ajustează viteza rapid (fin) - + Decrease Speed Scade viteza - + Adjust speed slower (coarse) Ajustează viteza lent (brut) - + Adjust speed slower (fine) Ajustează viteza lent (fin) - + Temporarily Increase Speed Mărește viteza temporar - + Temporarily increase speed (coarse) Mărește viteza temporar (brut) - + Temporarily Increase Speed (Fine) Mărește viteza temporar (Fin) - + Temporarily increase speed (fine) Mărește viteza temporar (fin) - + Temporarily Decrease Speed Scade viteza temporar - + Temporarily decrease speed (coarse) Scade vitea temporar (brut) - + Temporarily Decrease Speed (Fine) Scade viteza temporar (Fin) - + Temporarily decrease speed (fine) Scade viteza temporar (fin) @@ -2271,806 +2273,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length Înjumătățește lungimea buclei - + Double the loop length Dublează lungimea buclei - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation Navigare - + Move up Mută în sus - + Equivalent to pressing the UP key on the keyboard Echivalent cu apăsarea tastei UP pe tastatură - + Move down Mută în jos - + Equivalent to pressing the DOWN key on the keyboard Echivalent cu apăsarea tastei DOWN pe tastatură - + Move up/down Mută în sus/jos - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up Derulează în sus - + Equivalent to pressing the PAGE UP key on the keyboard Echivalent cu apăsarea tastei PAGE UP pe tastatură - + Scroll Down Derulează în jos - + Equivalent to pressing the PAGE DOWN key on the keyboard Echivalent cu apăsarea tastei PAGE DOWN pe tastatură - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing Activează sau dezactivează procesarea efectului - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset Preconfigurare lanț următor - + Previous Chain Lanț anterior - + Previous chain preset Anterioara preconfigurare lanț - + Next/Previous Chain Următorul/Anteriorul lanț - + Next or previous chain preset Preconfigurare lanț următoare sau anterioară - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary Microfon / Auxiliar - + Microphone On/Off Microfon pornit/oprit - + Microphone on/off Microfon pornit/oprit - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) Comută mod atenuare microfon (OPRIT, AUTO, MANUAL) - + Auxiliary On/Off Auxiliar pornit/oprit - + Auxiliary on/off Auxiliar pornit/oprit - + Auto DJ Auto DJ - + Auto DJ Shuffle Amestecă Auto DJ - + Auto DJ Skip Next Auto DJ omite următoarea - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next Estompare DJ automat la următoarea - + Trigger the transition to the next track Comută tranziția următoarei piste - + User Interface Interfaţă utilizator - + Samplers Show/Hide Arată/ascunde samplere - + Show/hide the sampler section Arată/ascunde secțiunea sampler - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide Arată/ascunde controlul disc vinil - + Show/hide the vinyl control section Arată/ascunde secțiunea control disc vinil - + Preview Deck Show/Hide Arată/ascunde previzualizare deck - + Show/hide the preview deck Arată/ascunde previzualizarea deck-ului - + Toggle 4 Decks Comută 4 Decuri - + Switches between showing 2 decks and 4 decks. Comută între 2 decuri sau 4 decuri. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide Arată/ascunde rotire disk vinil - + Show/hide spinning vinyl widget Arată/ascunde control rotire disc vinil - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom Zoom formă de undă - + Waveform Zoom Zoom formă de undă - + Zoom waveform in Mărește zoom formă de undă - + Waveform Zoom In Mărește zoom formă de undă - + Zoom waveform out Redu zoom formă de undă - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3159,32 +3227,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. Încercați recuperarea resetând controlerul. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. Codul scriptului trebuie să fie reparat. @@ -3220,133 +3288,133 @@ CrateFeature - + Remove Elimină - - + + Create New Crate Creează o colecție nouă - + Rename Redenumește - - + + Lock Blochează - + Export Crate as Playlist - + Export Track Files - + Duplicate Duplică - + Analyze entire Crate Analizează întreaga colecție - + Auto DJ Track Source Sursă pistă Auto DJ - + Enter new name for crate: Introduceți numele nou pentru colecție: - - + + Crates Colecții - - + + Import Crate Importă colecție - + Export Crate Exportă colecție - + Unlock Deblochează - + An unknown error occurred while creating crate: A apărut o eroare la crearea colecției: - + Rename Crate Redenumește colecția - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed Redenumirea colecției a eșuat - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Text lizibil (*.txt) - + Crates are a great way to help organize the music you want to DJ with. Colecțiile sunt un mare mod de a ajuta organizarea muzicii dorite cu DJ. - + Crates let you organize your music however you'd like! Colecțiile vă permit să organizați muzica oricum vă place! - + A crate cannot have a blank name. O colecție nu poate fi nedenumită. - + A crate by that name already exists. Există o colecție cu acest nume. @@ -3416,37 +3484,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: Cu contribuții de la: - + And special thanks to: Și mulțumiri speciale lui: - + Past Developers Foști dezvoltatori - + Past Contributors Foști contribuitori - + Official Website - + Donate @@ -4878,32 +4946,32 @@ Se aplică configurările și se continuă? DlgPrefControlsDlg - + Skin Aspect aplicație - + Tool tips Sfaturi - + Select from different color schemes of a skin if available. Selectați dintre diferitele scheme de culoare ale aspectului aplicație dacă sunt disponibile. - + Color scheme Schemă de culoare - + Locales determine country and language specific settings. Localizările determină configurările specifice țării și limbii. - + Locale Localizare @@ -4913,52 +4981,42 @@ Se aplică configurările și se continuă? Preferințe interfață - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode Pornește în mod ecran complet - + Full-screen mode Mod ecran complet - + Off Oprit - + Library only Numai biblioteca - + Library and Skin Bibliotecă și aspect aplicație @@ -5569,38 +5627,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. Dimensiunea minimă a aspectului aplicației este mai mare decât rezoluția ecranului. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes Acest aspect aplicație nu suportă scheme de culoare - + Information Informație - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5819,62 +5877,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added Directorul Muzică s-a adăugat - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? Ați adăugat unul sau mai multe directoare. Pistele din aceste directoare nu vor fi disponibile până ce nu veți rescana biblioteca. Doriți să fie rescanată acum? - + Scan Scanare - + Choose a music directory Alegeți un director cu muzică - + Confirm Directory Removal Confirmați eliminarea directorului - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks Ascunde pistele - + Delete Track Metadata Șterge metadatele pistei - + Leave Tracks Unchanged Lasă pistele nemodificate - + Relink music directory to new location Reconectează directorul cu muzică la noua locație - + Select Library Font Selectați fontul bibliotecii @@ -6879,32 +6937,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered Filtrat - + HSV HSV - + RGB RGB - + OpenGL not available OpenGL nu este disponibil - + dropped frames cadre omise - + Cached waveforms occupy %1 MiB on disk. @@ -7118,72 +7176,72 @@ Select from different types of displays for the waveform, which differ primarily Bibliotecă - + Interface Interfață - + Waveforms Forme de undă - + Auto DJ Auto DJ - + Equalizers Egalizatoare - + Decks - + Colors - + Crossfader Crossfader - + Effects Efecte - + LV2 Plugins - + Recording Înregistrare - + Beat Detection Detectare bătaie - + Key Detection Detecție cheie - + Normalization Normalizare - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7193,12 +7251,12 @@ Select from different types of displays for the waveform, which differ primarily Control disc vinil - + Live Broadcasting Transmisie live - + Modplug Decoder Decodor Modplug @@ -7339,123 +7397,123 @@ Select from different types of displays for the waveform, which differ primarily Selectați cea mai bună potrivire - - + + Track Pistă - - + + Year An - + Title Titlu - - + + Artist Artist - - + + Album Album - + Album Artist Album artist - + Fetching track data from the MusicBrainz database Se preia datele pistei din baza de date MusicBrainz - + Mixxx could not find this track in the MusicBrainz database. Mixxx nu poate găsi această pistă în baza de date MusicBrainz. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. Obține cheia API - + Submit Submits audio fingerprints to the MusicBrainz database. Trimite - + New Column Coloană nouă - + New Item Element nou - + &Previous &Anterior - + &Next &Următor - + &Apply &Aplică - + &Close &Închide - + Status: %1 Stare: %1 - + HTTP Status: %1 Stare HTTP: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx nu se poate conecta la %1 dintr-un motiv necunoscut. - + Mixxx can't connect to %1. Mixxx nu se poate conecta la %1. - + Original tags Etichete originale - + Suggested tags Etichete sugerate @@ -7847,17 +7905,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) Soundtouch (rapid) - + Rubberband (better) Rubberband (optim) - + Unknown (bad value) Necunoscut (valoare rea) @@ -7958,38 +8016,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes iTunes - - + + Select your iTunes library Selectează biblioteca iTunes - + (loading) iTunes (încărcare) iTunes - + Use Default Library Foloseşte biblioteca implicită - + Choose Library... Alege biblioteca... - + Error Loading iTunes Library Eroare la încărcarea bibliotecii iTunes - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. A intervenit o eroare la încărcarea bibliotecii iTunes. Unele dintre pistele sau listele de redare iTunes este posibil să nu se fi încărcat. @@ -7997,13 +8055,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. Este activat modul sigur - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8012,57 +8070,57 @@ support. OpenGL. - + activate activează - + toggle comută - + right dreapta - + left stânga - + right small dreapta mic - + left small stânga mic - + up sus - + down jos - + up small sus mic - + down small jos mic - + Shortcut Scurtătură @@ -8083,22 +8141,22 @@ OpenGL. LibraryFeature - + Import Playlist Importă listă de redare - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Fişiere listă de redare (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8109,27 +8167,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Scaner bibliotecă - + It's taking Mixxx a minute to scan your music library, please wait... Durează pentru Mixxx un minut să scaneze biblioteca muzicală, așteptați... - + Cancel Renunţă - + Scanning: Se scanează: - + Scanning cover art (safe to cancel) Se scanează coperțile (sigur de anulat) @@ -8245,182 +8303,182 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy Dispozitivul audio este ocupat - + <b>Retry</b> after closing the other application or reconnecting a sound device <b>Reâncearcă</b> după închiderea altei aplicații sau reconectarea unui dispozitiv de sunet - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. <b>Reconfigurare</b> configurări dispozitivul de sunet al Mixxx. - - + + Get <b>Help</b> from the Mixxx Wiki. Primeşte <b>ajutor</b> de pe Wiki Mixxx. - - - + + + <b>Exit</b> Mixxx. <b>Ieşi</b> din Mixxx. - + Retry Reâncearcă - + skin - - + + Reconfigure Reconfigurează - + Help Ajutor - - + + Exit Ieși - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices Nu sunt dispozitive de ieșire - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. Mixxx a fost configurat fără nici un dispozitiv de ieșire. Procesarea audio va fi dezactivată fără un dispozitiv de ieșire configurat. - + <b>Continue</b> without any outputs. <b>Contină</b> fără nici o ieșire. - + Continue Continuă - + Load track to Deck %1 Încarcă pista în Deck-ul %1 - + Deck %1 is currently playing a track. Deck-ul %1 redă actualmente o pistă. - + Are you sure you want to load a new track? Sigur doriți să încărcați o nouă pistă? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. Nu este selectat nici un dispozitiv de intrare pentru acest control disc vinil. Selectați întâi un dispozitiv de intrare din preferințele plăcii de sunet. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file Eroare în fișier aspect aplicație - + The selected skin cannot be loaded. Aspectul aplicației selectat nu poate fi încărcat. - + OpenGL Direct Rendering Randare directă OpenGL - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Confirmare ieșire - + A deck is currently playing. Exit Mixxx? Un deck actualmente redă. Se oprește Mixxx? - + A sampler is currently playing. Exit Mixxx? Un sampler redă curent. Iese Mixxx? - + The preferences window is still open. Fereastra preferințe este încă deschisă. - + Discard any changes and exit Mixxx? Se descarcă orice modificări și se închide Mixxx? @@ -8491,43 +8549,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Blochează - + Playlists Liste de redare - + Unlock Deblochează - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. Unii DJ-ei construiesc liste de redare înainte de a se prezenta live, dar alții preferă să le construiască din zbor. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. Când utilizați o listă de redare în timpul unei sesiuni DJ live, nu uitați ca întotdeauna să acordați o atenție deosebită cum reacționează ascultătorii la muzica pe care ați ales să o redați. - + Create New Playlist Crează listă de redare nouă @@ -8535,59 +8593,59 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx Se actualizează Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? Mixxx suportă acum afișarea coperților. Doriți să scanați acum biblioteca pentru fișiere copertă? - + Scan Scanare - + Later Mai târziu - + Upgrading Mixxx from v1.9.x/1.10.x. Se actualizează Mixxx de la v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. Mixxx are un nou și îmbunătățit detector de ritm. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. Aceasta nu afectează cue salvate, hotcue, liste de redare, sau colecții. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids Păstrează grila-bătăi curentă - + Generate New Beatgrids Generează o grilă-bătăi nouă @@ -8771,7 +8829,7 @@ Doriți să scanați acum biblioteca pentru fișiere copertă? - + Encoder Codor @@ -9897,12 +9955,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10040,54 +10098,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists Liste de redare - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10096,7 +10154,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox Rhythmbox @@ -10147,34 +10205,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates Colecții - + Check for Serato databases (refresh) - + (loading) Serato @@ -10197,12 +10255,12 @@ Fully right: end of the effect period Istoric - + Unlock Deblochează - + Lock Blochează @@ -11161,6 +11219,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12336,11 +12419,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize Sincronizare veche - - - (This skin should be updated to use Master Sync!) - (Acest aspect aplicație trebuie actualizat pentru a utiliza Sincronizare Master!) - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12356,16 +12434,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. Deck-urile nu pot sincroniza samplerele iar samplerele pot doar sincroniza deck-urile. - - - Enable Master Sync - Activează sincronizarea master - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12381,16 +12449,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. Resetează cheia la cheia originală a pistei. - - - Enable Sync Clock Master - Activează sincronizare ceas master - - - - When enabled, this device will serve as the master clock for all other decks. - Când se activează, acest dispozitiv va servi ca ceas master pentru toate celelalte decuri. - Speed Control @@ -12944,22 +13002,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor Traktor - + (loading) Traktor (încărcare) Traktor - + Error Loading Traktor Library Eroare la încărcarea bibliotecii Traktor - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. A apărut o eroare la încărcarea bibliotecii Traktor. Unele dintre pistele sau listele de redare Traktor este posibil să nu fie încărcate. @@ -13571,20 +13629,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13755,8 +13813,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Gen - - Folder + + Directory @@ -13999,155 +14057,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 Deck %1 - + Sampler %1 Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Crează listă de redare nouă - + Enter name for new playlist: Introduceți numele pentru noua listă de redare: - + New Playlist Listă de redare nouă - - - + + + Playlist Creation Failed Crearea listei de redare a eşuat - + A playlist by that name already exists. Există deja o listă de redare cu acelaşi nume. - + A playlist cannot have a blank name. O listă de redare nu poate fi nedenumită. - + An unknown error occurred while creating playlist: O eroare necunoscută a apărut în timpul creării listei de redare: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14155,7 +14218,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus ESC @@ -14192,128 +14255,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory Alege directorul bibliotecii de muzică - + controllers - + Cannot open database Baza de date nu poate fi deschisă - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14392,7 +14382,7 @@ Apăsați OK să ieșiți. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14449,62 +14439,62 @@ Apăsați OK să ieșiți. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse Maus HID generic - + Generic HID Joystick Joystick HID generic - + Generic HID Game Pad - + Generic HID Keyboard Tastatură HID generică - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: @@ -14522,7 +14512,7 @@ Apăsați OK să ieșiți. No effect loaded. - + Nu s-a încărcat nici un efect. \ No newline at end of file diff --git a/res/translations/mixxx_ru.qm b/res/translations/mixxx_ru.qm index 32378d06639ac57cee740296e46dae207f9ac52b..707e015199fa33306e489b996a79f675b0e3acb6 100644 GIT binary patch delta 16309 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 A;Q#;t delta 18357 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 fwWlw>;q@T7 diff --git a/res/translations/mixxx_ru.ts b/res/translations/mixxx_ru.ts index 7d2bf12b3ed..68164380b21 100644 --- a/res/translations/mixxx_ru.ts +++ b/res/translations/mixxx_ru.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Контейнеры - + Remove Crate as Track Source Убрать Контейнер как источник Треков - + Auto DJ Авто DJ - + Add Crate as Track Source Добавить Контейнер как источник Треков @@ -43,25 +43,25 @@ BansheeFeature - + Banshee Banshee - - + + Error loading Banshee database Ошибка при загрузке базы данных Banshee - + Banshee database file not found at Файл базы данных Banshee не найден в - + There was an error loading your Banshee database at Произошла ошибка при загрузке базы данных Banshee в @@ -71,32 +71,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) - Добавить в очередь АвтоDJ (вниз) + Добавить в очередь Авто DJ (конец) - + Add to Auto DJ Queue (top) - Добавить в очередь АвтоDJ (вверх) + Добавить в очередь Авто DJ (начало) - + Add to Auto DJ Queue (replace) Добавить в очередь AutoDJ (заменить) - + Import Playlist Импортировать плейлист - + Playlist Creation Failed Не удалось создать плейлист - + An unknown error occurred while creating playlist: Произошла неизвестная ошибка при создании плейлиста: @@ -104,144 +104,144 @@ BasePlaylistFeature - + New Playlist Новый плейлист - + Add to Auto DJ Queue (bottom) - Добавить в очередь АвтоDJ (вниз) + Добавить в очередь АвтоDJ (конец) - - + + Create New Playlist Создать новый плейлист - + Add to Auto DJ Queue (top) - Добавить в очередь АвтоDJ (вверх) + Добавить в очередь АвтоDJ (начало) - + Remove Удалить - + Rename Переименовать - + Lock Заблокировать - + Duplicate Дублировать - - + + Import Playlist Импортировать плейлист - + Export Track Files - Экспорт файлов Треков + Экспортировать файлы треков - + Analyze entire Playlist Анализировать весь плейлист - + Enter new name for playlist: Введите новое имя для плейлиста: - + Duplicate Playlist Дублировать плейлист - - + + Enter name for new playlist: Введите имя для нового плейлиста: - - + + Export Playlist Экспорт плейлиста - + Add to Auto DJ Queue (replace) Добавить в очередь АвтоDJ (заменить) - + Rename Playlist Переименовать плейлист - - + + Renaming Playlist Failed Не удалось переименовать плейлист - - - + + + A playlist by that name already exists. Плейлист с таким именем уже существует. - - - + + + A playlist cannot have a blank name. Имя плейлиста не может быть пустым. - + _copy //: Appendix to default name when duplicating a playlist _копия - - - - - - + + + + + + Playlist Creation Failed Не удалось создать плейлист - - + + An unknown error occurred while creating playlist: Произошла неизвестная ошибка при создании плейлиста: - + M3U Playlist (*.m3u) Плейлист M3U (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Плейлист M3U (*.m3u); Плейлист M3u8 (*.m3u8); Плейлист PLS (*.pls); Текст CSV (*.csv); Читаемый текст (*.txt) @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Не удалось загрузить трек. @@ -514,7 +514,7 @@ - + Computer Компьютер @@ -534,7 +534,7 @@ Сканировать - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. Обзор позволяет вам перемещаться, просматривать и загружать треки из папок на вашем жестком диске и внешних устройств. @@ -647,12 +647,12 @@ Файл, созданный - + Mixxx Library Mixxx Библиотека - + Could not load the following file because it is in use by Mixxx or another application. Не удалось загрузить следующий файл, потому что он используется Mixxx или другим приложением. @@ -683,6 +683,84 @@ Файл '%1' пуст и не может быть загружен. + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -865,13 +943,13 @@ - + Set to full volume Установить в полном объеме - + Set to zero volume Нулевое значение громкости @@ -896,13 +974,13 @@ Кнопка обратный рулон (цензуре) - + Headphone listen button Прослушать кнопки для наушников - + Mute button Кнопка Mute @@ -918,25 +996,25 @@ - + Mix orientation (e.g. left, right, center) Направление сведения (например левый, правый, центр) - + Set mix orientation to left Установить направления сведения слева - + Set mix orientation to center Установить направление сведения по центру - + Set mix orientation to right Установка направление сведения справа @@ -980,36 +1058,6 @@ Toggle quantize mode Переключить режим квантования - - - Increase internal master BPM by 1 - Увеличение внутренних мастер BPM на 1 - - - - Decrease internal master BPM by 1 - Сокращение внутренней мастер BPM на 1 - - - - Increase internal master BPM by 0.1 - Увеличение внутренних мастер BPM на 0.1 - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - Переключить Мастер синхронизации - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - Синхронизация режим 3-состояния переключения (OFF, ПОСЛЕДОВАТЕЛЬ, магистр) - One-time beat sync (tempo only) @@ -1021,7 +1069,7 @@ Разовая синхронизация битов (только фаза) - + Toggle keylock mode Переключение в режим блокировки клавиатуры @@ -1031,199 +1079,199 @@ Эквалайзеры - + Vinyl Control Винил-Контроль - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) Переключение режима намекать Винил контроль (OFF/один/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) Переключение режимов Винил-контроль (ABS/REL/CONST) - + Pass through external audio into the internal mixer Проходят через внешние аудио в внутренней микшер - + Cues Метки - + Cue button Сигнал кнопки - + Set cue point Установить стартовую метку - + Go to cue point Перейти к стартовой метке - + Go to cue point and play Перейти к стартовой метке и играть - + Go to cue point and stop Перейти к стартовой метке и остановить - + Preview from cue point Просмотр с точки Cue - + Cue button (CDJ mode) Кнопка Cue (CDJ режим) - + Stutter cue Заикание кий - + Hotcues Hotcues - + Set, preview from or jump to hotcue %1 Задание, просмотр от или перейти к hotcue %1 - + Clear hotcue %1 Очистить hotcue %1 - + Set hotcue %1 Задать hotcue %1 - + Jump to hotcue %1 Перейти к hotcue %1 - + Jump to hotcue %1 and stop Перейти к hotcue %1 и остановить - + Jump to hotcue %1 and play Перейти к hotcue %1 и играть - + Preview from hotcue %1 Предварительный просмотр из hotcue %1 - - + + Hotcue %1 Hotcue %1 - + Looping Циклы - + Loop In button Цикл в кнопку - + Loop Out button Петли, кнопки - + Loop Exit button Кнопка выхода цикла - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 32 - + 64 64 - + Move loop forward by %1 beats Перемещение вперед цикл %1 бьет - + Move loop backward by %1 beats Переместить петли обратной %1 бьется - + Create %1-beat loop Создайте цикл %1-бит - + Create temporary %1-beat loop roll Создание временного цикла %1-бить ролл - + Library Библиотека @@ -1334,20 +1382,20 @@ - - + + Volume Fader Регулятор громкости - + Full Volume Полный объем - + Zero Volume Нулевой объем @@ -1363,7 +1411,7 @@ - + Mute Немой @@ -1374,7 +1422,7 @@ - + Headphone Listen Прослушать наушников @@ -1395,25 +1443,25 @@ - + Orientation Ориентация - + Orient Left Ориент слева - + Orient Center Восточный центр - + Orient Right Ориент право @@ -1512,52 +1560,6 @@ Sync Синхронизация - - - Sync Mode - Режим синхронизации - - - - Internal Sync Master - Внутренняя синхронизация мастер - - - - Toggle Internal Sync Master - Переключатель внутреннего Sync мастер - - - - - Internal Master BPM - Внутренние мастер BPM - - - - Internal Master BPM +1 - Внутренние мастер BPM + 1 - - - - Internal Master BPM -1 - Внутренние мастер BPM -1 - - - - Internal Master BPM +0.1 - Внутренние мастер BPM + 0,1 - - - - Internal Master BPM -0.1 - Внутренние мастер BPM -0,1 - - - - Sync Master - Мастер синхронизации - Beat Sync One-Shot @@ -1574,37 +1576,37 @@ Этап синхронизации одноступенчатая - + Pitch control (does not affect tempo), center is original pitch Поле управления (не влияет на темп), центр — оригинальный шаг - + Pitch Adjust Отрегулируйте высоту - + Adjust pitch from speed slider pitch Отрегулируйте шаг от скорость ползунок pitch - + Match musical key Музыкальный ключ матча - + Match Key Ключ матча - + Reset Key Сброс ключа - + Resets key to original Сбрасывает ключ к оригиналу @@ -1645,466 +1647,466 @@ Низкая EQ - + Toggle Vinyl Control Переключатель Винил - + Toggle Vinyl Control (ON/OFF) Винил управления переключения (вкл/выкл) - + Vinyl Control Mode Режим контроля виниловый - + Vinyl Control Cueing Mode Винил управления намекать режим - + Vinyl Control Passthrough Винил управления проходное - + Vinyl Control Next Deck Винил Контроль следующей деки - + Single deck mode - Switch vinyl control to next deck Режим одной деки - Переключить Винил Контроль к следующей деки. - + Cue Кий - + Set Cue Установите Cue - + Go-To Cue Go-To Cue - + Go-To Cue And Play Перейти к Cue и играть - + Go-To Cue And Stop Перейти к Cue и остановка - + Preview Cue Предварительный просмотр Cue - + Cue (CDJ Mode) Кью (CDJ режим) - + Stutter Cue Заикание Cue - + Go to cue point and play after release Перейти к точке вступления и начать воспроизведение после окончания нажатия - + Clear Hotcue %1 Очистить Hotcue %1 - + Set Hotcue %1 Задать Hotcue %1 - + Jump To Hotcue %1 Перейти к Hotcue %1 - + Jump To Hotcue %1 And Stop Перейти к Hotcue %1 и остановки - + Jump To Hotcue %1 And Play Перейти к Hotcue %1 и играть - + Preview Hotcue %1 Просмотр Hotcue %1 - + Loop In Цикл в - + Loop Out Цикл из - + Loop Exit Loop выход - + Reloop/Exit Loop Петля Reloop/выход - + Loop Halve Сократить цикл - + Loop Double Двойная петля - + 1/32 1/32 - + 1/16 1/16 - + 1/8 1/8 - + 1/4 1/4 - + Move Loop +%1 Beats Переместить петли + %1 бьет - + Move Loop -%1 Beats Переместить петли-бьет %1 - + Loop %1 Beats Петля %1 бьется - + Loop Roll %1 Beats Бьет цикла ролл %1 - + Add to Auto DJ Queue (bottom) Добавить в очередь АвтоDJ (вниз) - + Append the selected track to the Auto DJ Queue Добавить выбранный трек в очередь АвтоDJ - + Add to Auto DJ Queue (top) Добавить в очередь АвтоDJ (вверх) - + Prepend selected track to the Auto DJ Queue Вставьте выбранный трек в очередь АвтоDJ - + Load Track Загрузить трек - + Load selected track Загрузить выбранные трек - + Load selected track and play Загрузить выбранный трек и играть - - + + Record Mix Записать микс - + Toggle mix recording Переключить mix запись - + Effects Эффекты - + Quick Effects Быстрый эффект - + Deck %1 Quick Effect Super Knob Ручка Super для быстрого эффекта деки %1 - + Quick Effect Super Knob (control linked effect parameters) Быстрый эффект супер ручку (контрольные параметры связанного эффекта) - - + + Quick Effect Быстрый эффект - + Clear effect rack Четкий эффект стойку - + Clear Effect Rack Снимите стойку эффект - + Clear Unit Снимите блок - + Clear effect unit Четкий эффект блок - + Toggle Unit Блок переключения - + Dry/Wet Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. Регулировать баланс между первоначальной (сухой) и обработаны (мокрый) сигнал. - + Super Knob Супер ручка - + Next Chain Следующая цепочка - + Assign Назначить - + Clear Ясно - + Clear the current effect Очистить текущий эффект - + Toggle Переключение - + Toggle the current effect Переключение текущего эффекта - + Next Следующая - + Switch to next effect Переключиться на следующий эффект - + Previous Предыдущий - + Switch to the previous effect Перейти к предыдущей эффект - + Next or Previous Следующий или предыдущий - + Switch to either next or previous effect Перейти к следующей или предыдущей эффект - - + + Parameter Value Значение параметра - - + + Microphone Ducking Strength Микрофон ныряя прочность - + Microphone Ducking Mode Ныряя режим микрофона - + Gain Получить - + Gain knob Получить ручка - + Shuffle the content of the Auto DJ queue Произвольный выбор контента для задания АвтоDJ - + Skip the next track in the Auto DJ queue Пропустить следующий трек в задании для АвтоDJ - + Auto DJ Toggle АвтоDJ переключатель - + Toggle Auto DJ On/Off АвтоDJ переключатель вкл/выкл - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. Показать или скрыть микшер. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore Максимизировать библиотека/восстановление - + Maximize the track library to take up all the available screen space. Максимизируйте библиотеке трек, чтобы занять все пространство экрана. - + Effect Rack Show/Hide Эффект стойку Показать/скрыть - + Show/hide the effect rack Показать/скрыть эффект стойку - + Waveform Zoom Out Масштаб осциллограммы @@ -2129,93 +2131,93 @@ Единоразовая битовая синхронизация (и фазировка с квантованием) - + Playback Speed Скорость воспроизведения - + Playback speed control (Vinyl "Pitch" slider) Контроль скорости воспроизведения (винил «Шаг» ползунок) - + Pitch (Musical key) Шаг (музыкальный ключ) - + Increase Speed Увеличить скорость - + Adjust speed faster (coarse) Отрегулируйте скорость быстрее (крупный) - - + + Increase Speed (Fine) Увеличить скорость (Fine) - + Adjust speed faster (fine) Отрегулируйте скорость быстрее (штраф) - + Decrease Speed Уменьшить скорость - + Adjust speed slower (coarse) Отрегулируйте скорость медленнее (крупный) - + Adjust speed slower (fine) Отрегулируйте скорость медленнее (штраф) - + Temporarily Increase Speed Временно повышает скорость - + Temporarily increase speed (coarse) Временно повышает скорость (крупный) - + Temporarily Increase Speed (Fine) Временно повышает скорость (Fine) - + Temporarily increase speed (fine) Временно повышает скорость (штраф) - + Temporarily Decrease Speed Временно уменьшить скорость - + Temporarily decrease speed (coarse) Временно уменьшить скорость (крупный) - + Temporarily Decrease Speed (Fine) Временно уменьшить скорость (Fine) - + Temporarily decrease speed (fine) Временно уменьшить скорость (штраф) @@ -2272,806 +2274,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed Скорость - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock Блокировка - + CUP (Cue + Play) Пуск + проиграть - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats Петля для выделенных ударных - + Create a beat loop of selected beat size Создать петлю выбранного размера - + Loop Roll Selected Beats Петля ролл для выбранного бита - + Create a rolling beat loop of selected beat size Создать скользящий луп выбранного размера петли - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position Фиксированное вкл/выкл петли и прыжок к точке входа в петлю перед позицией воспроизведения - + Reloop And Stop Релуп и Стоп - + Enable loop, jump to Loop In point, and stop Включить петлю, скачок к точке входа в петлю и остановка - + Halve the loop length Пол размера петли - + Double the loop length Двойной размер петли - + Beat Jump / Loop Move Прыжки по треку / смещение петли - + Jump / Move Loop Forward %1 Beats Прыгнуть / Переместить петлю вперёд на %1 ударов - + Jump / Move Loop Backward %1 Beats Прыгнуть / Переместить петлю назад на %1 ударов - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats Прыгнуть вперёд на %1 ударов, или если лупинг включен, переместить петлю вперёд на %1 ударов. - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats Прыгнуть назадна %1 ударов, или если лупинг включен, переместить петлю назад на %1 ударов. - + Beat Jump / Loop Move Forward Selected Beats Перейти вперёд / Передвинуть петлю вперёд на выбранное количество ударов - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats Перейти вперёд на выбранное количество ударов, или, если петля активна, передвинуть петлю вперёд на выбранное количество ударов. - + Beat Jump / Loop Move Backward Selected Beats Перейти назад / Передвинуть петлю назад на выбранное количество ударов - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats Перейти назад на выбранное количество ударов, или, если петля активна, передвинуть петлю назад на выбранное количество ударов. - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up Передвинуть вверх - + Equivalent to pressing the UP key on the keyboard Равнозначно нажатию кнопки "вверх" на клавиатуре - + Move down Переместить вниз - + Equivalent to pressing the DOWN key on the keyboard Равнозначно нажатию кнопки ВНИЗ на клавиатуре - + Move up/down Переместить вверх/вниз - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys Переместить вертикально в обоих направлениях, как при нажатии кнопок ВВЕРХ/ВНИЗ - + Scroll Up Пролистать вверх - + Equivalent to pressing the PAGE UP key on the keyboard Равнозначно нажатию кнопки PAGE UP на клавиатуре - + Scroll Down Пролистать вниз - + Equivalent to pressing the PAGE DOWN key on the keyboard Равнозначно нажатию кнопки PAGE DOWN на клавиатуре - + Scroll up/down Пролистать вверх/вниз - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys Переместить вертикально в обоих направлениях, как при нажатии кнопок PGUP/PGDOWN - + Move left Переместить влево - + Equivalent to pressing the LEFT key on the keyboard Равнозначно нажатию кнопки ВЛЕВО на клавиатуре - + Move right Переместить вправо - + Equivalent to pressing the RIGHT key on the keyboard Равнозначно нажатию кнопки ВПРАВО на клавиатуре - + Move left/right Переместить влево\вправо - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys Переместить горизонтально в обоих направлениях используя ручку, как при нажатии кнопок ВЛЕВО/ВПРАВО - + Move focus to right pane Переместить фокус на правую панель - + Equivalent to pressing the TAB key on the keyboard Равнозначно нажатию кнопки TAB на клавиатуре - + Move focus to left pane Переместить фокус на левую панель - + Equivalent to pressing the SHIFT+TAB key on the keyboard Равнозначно нажатию кнопок SHIFT+TAB на клавиатуре - + Move focus to right/left pane Переместить фокус на правую/левую панель - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys Переключать элементы управления используя ручку, как при нажатии клавиш TAB/SHIFT+TAB - + Go to the currently selected item Перейти к выбранному пункту - + Choose the currently selected item and advance forward one pane if appropriate Выберите текущий выделенный элемент и продвиньтесь вперед на одну панель, если это необходимо - + Load Track and Play - + Add to Auto DJ Queue (replace) Добавить в очередь АвтоDJ (заменить) - + Replace Auto DJ Queue with selected tracks Заменить список АвтоDJ на выбранные треки - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button Включить быстрый эффект на деку %1. - + Quick Effect Enable Button Кнопка включения быстрого эффекта - + Enable or disable effect processing Включение и отключение эффекта обработки - + Super Knob (control effects' Meta Knobs) Супер ручка (мета-ручка управления эффектами) - + Mix Mode Toggle Переключение режима микширования - + Toggle effect unit between D/W and D+W modes Переключение блока эффектов между режимами D/W и D+W - + Next chain preset Следующая цепочка пресет - + Previous Chain Предыдущие цепи - + Previous chain preset Предыдущие цепи пресет - + Next/Previous Chain Следующий/предыдущий цепь - + Next or previous chain preset Следующую или предыдущую цепь пресет - - + + Show Effect Parameters Показать параметры эффекта - + Effect Unit Assignment - + Meta Knob Мета ручка - + Effect Meta Knob (control linked effect parameters) Мета ручка эффекта (управление связанными параметрами эффекта) - + Meta Knob Mode Режим мета ручки - + Set how linked effect parameters change when turning the Meta Knob. Выберите, как меняется параметр эффекта при повороте мета ручки. - + Meta Knob Mode Invert Обратный режим мета ручки - + Invert how linked effect parameters change when turning the Meta Knob. Инвертировать параметр эффекта при повороте мета ручки - - + + Button Parameter Value - + Microphone / Auxiliary Микрофон / вспомогательные - + Microphone On/Off Микрофон вкл/выкл - + Microphone on/off Микрофон вкл/выкл - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) Переключать микрофон, ныряя режим (OFF, авто, руководство) - + Auxiliary On/Off Вспомогательные вкл/выкл - + Auxiliary on/off Вспомогательные вкл/выкл - + Auto DJ АвтоDJ - + Auto DJ Shuffle АвтоDJ Перемешивание - + Auto DJ Skip Next АвтоDJ пропустить следующий - + Auto DJ Add Random Track АвтоDJ добавить случайный трек - + Add a random track to the Auto DJ queue Добавить случайный трек в очередь АвтоDJ - + Auto DJ Fade To Next АвтоDJ затухание к следующему - + Trigger the transition to the next track Инициировать переход к следующей композиции - + User Interface Пользовательский интерфейс - + Samplers Show/Hide Пробоотборники Показать/скрыть - + Show/hide the sampler section Показать/скрыть раздел сборники - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. Поток ваш микс через Интернет. - + Start/stop recording your mix. - - + + Samplers Сэмплеры - + Vinyl Control Show/Hide Винил управления Показать/скрыть - + Show/hide the vinyl control section Показать/скрыть секции управления Винил - + Preview Deck Show/Hide Предпросмотр деки показать/скрыть. - + Show/hide the preview deck Показать/скрыть предпросмотр деки. - + Toggle 4 Decks Вкл/Выкл 4 деки - + Switches between showing 2 decks and 4 decks. Переключение между 2 и 4 деки. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide Винил Spinner Показать/скрыть - + Show/hide spinning vinyl widget Показать/Скрыть виджет спиннинг Винил - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom Масштаб осциллограммы - + Waveform Zoom Масштаб осциллограммы - + Zoom waveform in Увеличение сигнала - + Waveform Zoom In Увеличить масштаб осциллограммы - + Zoom waveform out Масштаб осциллограммы - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3160,32 +3228,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. Попробуйте восстановить путем сброса контроллера. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. Код сценария должна быть исправлена. @@ -3221,133 +3289,133 @@ CrateFeature - + Remove Удалить - - + + Create New Crate Создать новый контейнер - + Rename Переименовать - - + + Lock Заблокировать - + Export Crate as Playlist - + Export Track Files Экспорт файлов дорожек - + Duplicate Дублировать - + Analyze entire Crate Анализировать весь контейнер - + Auto DJ Track Source АвтоDJ источник треков - + Enter new name for crate: Введите новое имя для контейнера: - - + + Crates Контейнеры - - + + Import Crate Импорт обрешеткой - + Export Crate Обрешеткой экспорта - + Unlock Разблокировать - + An unknown error occurred while creating crate: Произошла неизвестная ошибка при создании контейнера: - + Rename Crate Переименование обрешеткой - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed Переименование обрешеткой сбой - + Crate Creation Failed Ошибка создания контейнера - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Список воспроизведения M3U (*.m3u); Список воспроизведения M3u8 (*.m3u8); Список воспроизведения PLS (*.pls); Текст CSV (*.csv); Читаемый текст (*.txt) - + Crates are a great way to help organize the music you want to DJ with. Контейнеры являются отличным способом помочь организовать музыку, которую вы хотите DJ с. - + Crates let you organize your music however you'd like! Ящики позволяют организовать вашу музыку, однако вы хотели! - + A crate cannot have a blank name. Обрешеткой не может иметь пустое имя. - + A crate by that name already exists. Ящик с таким именем уже существует. @@ -3417,37 +3485,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: При участии: - + And special thanks to: И особую благодарность: - + Past Developers Бывшие разработчики - + Past Contributors Последние участники - + Official Website - + Donate @@ -4889,32 +4957,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin Обложка - + Tool tips Всплывающие подсказки - + Select from different color schemes of a skin if available. Выберите из различных цветовых схем кожи, если таковые имеются. - + Color scheme Цветовая схема - + Locales determine country and language specific settings. Языков определить конкретные параметры страны и языка. - + Locale Локаль @@ -4924,52 +4992,42 @@ Apply settings and continue? Параметры интерфейса - + HiDPI / Retina scaling Масштабирование HiDPI / Ретина - + Change the size of text, buttons, and other items. Изменить размер текста, кнопок и других элементов - - Adopt scale factor from the operating system - Принять коэффициент масштабирования ОС - - - - Auto Scaling - Авто масштабирование - - - + Screen saver - + Start in full-screen mode Запускать в режиме полного экрана - + Full-screen mode Полноэкранный режим - + Off Выкл - + Library only Только медиатека - + Library and Skin Медиатека и Обложка @@ -5580,38 +5638,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. Минимальный размер выбранного кожи больше, чем разрешение экрана. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes Эта кожа не поддерживает цветовые схемы - + Information Информация - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5830,62 +5888,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added Добавлена папка с музыкой - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? Вы добавили одну или несколько папок с музыкой. Дорожки в них не будут доступны, пока вы не повторите сканирование вашей библиотеки. Выполнить это сейчас? - + Scan Сканировать - + Choose a music directory Выберите каталог музыки - + Confirm Directory Removal Подтвердите удаление каталогов - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. Mixxx больше не будут смотреть этот каталог для новых треков. Что бы вы хотели сделать с треки из этого каталога и подкаталогов? <ul><li>Скрыть все треки из этого каталога и подкаталогов.</li> <li>Удалить все метаданные для этих постоянно отслеживает от Mixxx.</li> <li>Оставить треков, без изменений в вашей библиотеке.</li></ul> Скрытие треков сохраняет их метаданные, в случае, если вы повторно добавить их в будущем. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. Метаданные означает, что все отслеживать подробности (художник, название, playcount и т.д.) а также beatgrids, hotcues и петли. Этот выбор влияет только на Mixxx библиотеки. Файлы на диске, не будут изменены или удалены. - + Hide Tracks Скрыть треки - + Delete Track Metadata Удалить метаданные трека - + Leave Tracks Unchanged Оставить без изменений треков - + Relink music directory to new location Выполните повторную компоновку музыка каталог в новое местоположение - + Select Library Font Выберите Библиотека шрифтов @@ -6891,32 +6949,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered Фильтрация - + HSV HSV - + RGB RGB - + OpenGL not available OpenGL не доступны - + dropped frames пропуск кадров - + Cached waveforms occupy %1 MiB on disk. Кэшированные осциллограммы занимают %1 МБ на диске. @@ -7130,72 +7188,72 @@ Select from different types of displays for the waveform, which differ primarily Библиотека - + Interface Интерфейс - + Waveforms Осциллограммы - + Auto DJ АвтоDJ - + Equalizers Эквалайзеры - + Decks - + Colors - + Crossfader Кроссфейдер - + Effects Эффекты - + LV2 Plugins - + Recording Запись - + Beat Detection Обнаружение Битов - + Key Detection Обнаружение ключей - + Normalization Нормализация - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7205,12 +7263,12 @@ Select from different types of displays for the waveform, which differ primarily Винил-Контроль - + Live Broadcasting Live вещания - + Modplug Decoder ModPlug декодер @@ -7351,123 +7409,123 @@ Select from different types of displays for the waveform, which differ primarily Выберите лучшее возможное совпадение - - + + Track Трек - - + + Year Год - + Title Название - - + + Artist Исполнитель - - + + Album Альбом - + Album Artist Исполнитель альбома - + Fetching track data from the MusicBrainz database Извлечение данных из базы данных MusicBrainz - + Mixxx could not find this track in the MusicBrainz database. Mixxx не удалось найти этот трек в базе данных MusicBrainz. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. Получить ключ API - + Submit Submits audio fingerprints to the MusicBrainz database. Отправить - + New Column Новый столбец - + New Item Новый элемент - + &Previous &Предыдущих - + &Next &Следующий - + &Apply &Применить - + &Close &Закрыть - + Status: %1 Статус: %1 - + HTTP Status: %1 Код состояния HTTP: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx не удается подключиться к %1 по неизвестной причине. - + Mixxx can't connect to %1. Mixxx не удается подключиться к %1. - + Original tags Оригинальные Теги - + Suggested tags Предлагаемые Теги @@ -7859,17 +7917,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) Soundtouch (быстрее) - + Rubberband (better) Rubberband (лучше) - + Unknown (bad value) Неизвестный (Бад значение) @@ -7970,38 +8028,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes iTunes - - + + Select your iTunes library Выберите медиатеку iTunes - + (loading) iTunes iTunes (загрузки) - + Use Default Library Использовать библиотеку по умолчанию - + Choose Library... Выберите Библиотека... - + Error Loading iTunes Library Ошибка загрузки iTunes Библиотека - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. Произошла ошибка при загрузке вашей библиотеки iTunes. Некоторые из ваших треков iTunes или списки воспроизведения могут не загружен. @@ -8009,13 +8067,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. Безопасный режим включен - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8023,57 +8081,57 @@ support. Отсутствует поддержка OpenGL. - + activate активировать - + toggle Переключение - + right право - + left слева - + right small право малых - + left small оставил небольшой - + up вверх - + down вниз - + up small до малого - + down small вниз малых - + Shortcut Ярлык @@ -8094,22 +8152,22 @@ support. LibraryFeature - + Import Playlist Импортировать список воспроизведения - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Файлы списков воспроизведения (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8120,27 +8178,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Библиотека сканер - + It's taking Mixxx a minute to scan your music library, please wait... Он принимает Mixxx минуту проверки вашей музыкальной библиотеки, пожалуйста, подождите... - + Cancel Отмена - + Scanning: Сканирование: - + Scanning cover art (safe to cancel) Сканирование обложки (безопасно отменить) @@ -8257,183 +8315,183 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy Звуковое устройство занят - + <b>Retry</b> after closing the other application or reconnecting a sound device <b>Повторите попытку</b> после закрытия другие приложения или повторное подключение звукового устройства - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. <b>Перенастройка</b> Mixxx в настройки звукового устройства. - - + + Get <b>Help</b> from the Mixxx Wiki. Получите <b>помощь</b> от Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. <b>Выход</b> Mixxx. - + Retry Повтор - + skin обложка - - + + Reconfigure Повторная настройка - + Help Справка - - + + Exit Выход - - + + Mixxx was unable to open all the configured sound devices. Mixxx не смог открыть все настроенные звуковые устройства. - + Sound Device Error Ошибка звукового устройства - + <b>Retry</b> after fixing an issue <b>Повторите попытку</b> после устранения проблемы - + No Output Devices Нет устройства вывода - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. Mixxx был настроен без каких-либо звуковых устройств вывода. Обработка аудио будет отключен без настроенного выходного устройства. - + <b>Continue</b> without any outputs. <b>Продолжить</b> без каких-либо результатов. - + Continue Продолжить - + Load track to Deck %1 Загрузить трек в деку %1 - + Deck %1 is currently playing a track. Дека %1 в настоящее время играет трек. - + Are you sure you want to load a new track? Вы уверены, что вы хотите, чтобы загрузить новый трек? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. Существует нет устройство ввода, выбранные для этого винила. Сначала выберите устройство ввода в параметрах звукового оборудования. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. Существует нет устройство ввода, выбранные для этого passthrough. Сначала выберите устройство ввода в параметрах звукового оборудования. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file Ошибка в файле обложки - + The selected skin cannot be loaded. Выбранная обложка не может быть загружена. - + OpenGL Direct Rendering OpenGL Прямой рендеринг - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Подтвердить выход - + A deck is currently playing. Exit Mixxx? Дека в настоящее время играет. Выйти из Mixxx? - + A sampler is currently playing. Exit Mixxx? В настоящее время играет сэмплер. Выйти из Mixxx? - + The preferences window is still open. Окно настроек остается открытым. - + Discard any changes and exit Mixxx? Отменить все изменения и закрыть Mixxx? @@ -8506,43 +8564,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Заблокировать - + Playlists Плейлисты - + Unlock Разблокировать - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. Некоторые ди-джеи построить плейлисты, прежде чем они вживую, но другие предпочитают строить их на лету. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. При использовании списка воспроизведения во время живой набор DJ, помнить, чтобы всегда уделять пристальное внимание как ваша аудитория реагирует на музыку, вы решили играть. - + Create New Playlist Создать новый список воспроизведения @@ -8550,59 +8608,59 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx Обновление Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? Mixxx теперь поддерживает отображение обложки. Вы хотите сканировать библиотеки для файлов обложки теперь? - + Scan Сканировать - + Later Позже - + Upgrading Mixxx from v1.9.x/1.10.x. Обновление Mixxx от v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. Mixxx имеет новый и Улучшенный удар детектор. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. При загрузке треков, Mixxx можно повторно проанализировать их и создавать новые, более точные beatgrids. Это сделает автоматическая beatsync и циклы более надежной. - + This does not affect saved cues, hotcues, playlists, or crates. Это не влияет на сохраненные сигналы, hotcues, плейлисты или обрешетки. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. Если вы не хотите Mixxx повторно анализировать ваши треки, выберите «Сохранить текущие Beatgrids». Вы этот параметр можно изменить в любое время в разделе «Бить обнаружения» предпочтений. - + Keep Current Beatgrids Сохранить текущие Beatgrids - + Generate New Beatgrids Генерировать новые Beatgrids @@ -8786,7 +8844,7 @@ Do you want to scan your library for cover files now? - + Encoder Кодировщик @@ -9912,12 +9970,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10055,54 +10113,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists Списки воспроизведения - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10111,7 +10169,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox Rhythmbox @@ -10162,34 +10220,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks Треки - + Crates Контейнеры - + Check for Serato databases (refresh) - + (loading) Serato @@ -10212,12 +10270,12 @@ Fully right: end of the effect period История - + Unlock Разблокировать - + Lock Заблокировать @@ -11176,6 +11234,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12351,11 +12434,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize Синхронизировать старый - - - (This skin should be updated to use Master Sync!) - (Эта кожа должны обновляться для использования Мастер синхронизации)! - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12371,16 +12449,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. Деку не нельзя синхронизировать к семплам и семплы можно синхронизировать только с декой. - - - Enable Master Sync - Разрешить мастер синхронизации - - - - Tap to sync the tempo to other playing tracks or the master clock. - Нажмите для синхронизации, которую темп другим играть треки или мастер часы. - Hold for at least a second to enable sync lock for this deck. @@ -12396,16 +12464,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. Сбрасывает ключ ключу оригинальный трек. - - - Enable Sync Clock Master - Включить синхронизацию часов мастер - - - - When enabled, this device will serve as the master clock for all other decks. - Когда включен, это устройство будет служить главными часами для всех других дек. - Speed Control @@ -12959,22 +13017,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor Трактор - + (loading) Traktor (Загрузка) Трактор - + Error Loading Traktor Library Ошибка загрузки Traktor Библиотека - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. Произошла ошибка при загрузке библиотеки трактор. Некоторые из ваших треков трактор или плейлисты могут не загружен. @@ -13586,20 +13644,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Пересылка - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13770,8 +13828,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Жанр - - Folder + + Directory @@ -14014,155 +14072,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 Дека %1 - + Sampler %1 Сэмплер %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Создать новый плейлист - + Enter name for new playlist: Введите имя для нового плейлиста: - + New Playlist Новый плейлист - - - + + + Playlist Creation Failed Не удалось создать плейлист - + A playlist by that name already exists. Плейлист с таким именем уже существует. - + A playlist cannot have a blank name. Имя плейлиста не может быть пустым. - + An unknown error occurred while creating playlist: Произошла неизвестная ошибка при создании плейлиста: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14170,7 +14233,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus ESC @@ -14207,128 +14270,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts шрифты - + database база данных - + effects эффекты - + audio interface аудио интерфейс - + decks деки - + library библиотека - + Choose music library directory Выберите каталог библиотеки музыки - + controllers контроллеры - + Cannot open database Не удалось открыть базу данных - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14407,7 +14397,7 @@ Mixxx требует QT с поддержкой SQLite. Пожалуйста, п - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14464,62 +14454,62 @@ Mixxx требует QT с поддержкой SQLite. Пожалуйста, п mixxx::hid::DeviceCategory - + HID Interface %1: HID интерфейс %1: - + Generic HID Pointer HID-совместимый указатель - + Generic HID Mouse HID-совместимая мышь - + Generic HID Joystick HID-совместимый джойстик - + Generic HID Game Pad HID-совместимый геймпад - + Generic HID Keyboard HID-совместимая клавиатура - + Generic HID Keypad HID-совместимый кейпад - + Generic HID Multi-axis Controller HID-совместимый многоосный контроллер - + Unknown HID Desktop Device: Неизвестное HID устройство: - + Apple HID Infrared Control Инфракрасное HID управление Apple - + Unknown Apple HID Device: Неизвестное HID устройство Apple: - + Unknown HID Device: Неизвестное HID устройство @@ -14537,7 +14527,7 @@ Mixxx требует QT с поддержкой SQLite. Пожалуйста, п No effect loaded. - + Никакого эффекта загружен. \ No newline at end of file diff --git a/res/translations/mixxx_ru_RU.qm b/res/translations/mixxx_ru_RU.qm index 1b6d411c04dd214c80c33c02898da39d0c1d8b90..e66093f45b8af4b3b306628b865f865288d8624d 100644 GIT binary patch delta 7220 zcmXY#cU;Z;AIIO{bH3y3V`P)PGO{%R7gl z0SdqvO!N|54MDWvX7Dd?8w3dgG3lIS@DNxHp2B!6iN6TJ?7{os5h6)Wv<723V?lpl z=|;wtgAur&MAXfeDE$Pqp_`6B5{de?!%8}V9l&_7BUTUscENo<7>D~bqW;E}od%Z^ zMPc<;7&k*lWM?Fv+hL-pEGTX>1fKvxpwXTw7ddl7W-#>Uj)i-h$jP69P)wl~%qE%w zr5O1K#%WccR6sN$v~_Ej~%|c%!A}5g)E1%1k3Ze<(g2PWsK3segc-$9cRdp3B@p$AW_<9Bgg+2u<9m>h zv4p63Q^xSsj0Jy@u*s3A^eY*JEZD;T3<=v1z%I5V?5ZJJ7E3}7{9wRm5)MGH^AAC2 z#_AX2`JE)3fzO+XjOKZa6BaXOVVv>#tzIP5LiJ`=jOLFS(~23htPQ3MPVgsjXC%>} za+12;Aj)Y(QUuuL6-gT>L$HI?W;1NIZw|Gq(-6HHM4j?r0`E)Ir5{WfYeQWILcrLW z)MYp(JmE$bMiYH%PZn1YgrB_0!f2{bmDJ6s$+g=U(+$h0n{nkY##6V;aK115sJr7+ zqLzu&&-mfRKGZK34EjO+jp<@}3+iw35i=SXfQjOB$!75mq9f}Vk2YmIRzUXUu|ywZ z$hjXP|Kvh)=?dS_H)Cw>#b_{ivx{VN#*CjPa`LI<^2Lm3X9LCxj@$;UhcjA{n;$e$ zZ!lx)-Hbl($gONQ(djB0?u_KTy@=dp$OU%k57RQA3z>yXW+$WXyn)utk{Dw{tS!V-v?m|`T)0RS`NSjI(o$)n2suLP(ZuL%qM}-w7;^;S zzMdx4LNOQmlE2Z#w4Z5)CFFn=L(keH*AYehgiGYOP+YSZqUfEpAq}n*)7C@-#eSqM zNvT8@k@P?3gUDBol=aVRqDF5iyBKLg(T;Y<-9WTWqnvyA@S;%K?;A*TaU&f|YK}Bg zOa*~85Kv9!UU=T4JKZqH`}b$jjUz~k?*`JVg;40PMf85I57CP0^r;3(Gt7g&IQ)hL zd9E>iZ?+vNeF!J-jbPZ_m6Oj$V%++gQ-mN{UOmS(@-8Ntp3XJik4zmH&NXe4iA>y- z>-}Or(X$Y4U>~q=KI5!b+`tJJh-P-@?0UdL`<*$v-IfTd1kQdU=HYC)q2}%3dePj7 zxrUoWBLcYz9vDzOn)6MrZV)wgly!6WL;)PYI6F?(r_TtO z;I7Oi`X*dUDI1xfguqW^o@v*K2Je?m8HxLtqq4wv@QsT;vY<8b_{IZ^pj*{-w_gten=_X2C=k)Dj{^<;aD(dll+xOS%O(A_&I z0q(VsB}*|!z2Y4-t)5&n#c_hjEzV!-F=vTx_k!6X^7@4K53?K&Z=eT=BMaY$B| zJC-QPP0kxX7;Pb!wuBNr>Md7&F#ew^*CZlJtsUgrOBlbWpIoLGVaga-OAm5&&c zLNs*^qp!7m?2KP<#%=ORo%aRxdn-`V66T7xk8g`b1b&yJHq)rp55|2~CUW{Be$xreYdH0Q z&x(MRQuF!jNci>19sJG#Q1Zn2jH?>+IZ5c83%x+d{`D*PnCM$Kum+qAJ^_=#zrhml zGa_98f8hQLpM$WX!e~%N^xXoKqj8)D)jGT4k88pFb;(B zPY(y-4W}1^aL?1b`Mo)l(3Q*heQS{sg53DLGvkPUy7DJfhY=4Ed`Tq6J0vA zl`l`5fT}f`zhYB_DrRORa^RV>{IwLQ?DBBFYAFI{>Q}~KH@+$*7QNS0{@MFF_-_&a z&H$A?+snUyHVszv;6F%4mhhjV=c8?o6G+n#aYI6b$PWluH^u|@LL(P{nB;`eWJ59B z_%`F?u|h{@LljX)M_fb^Cu|bBUv@#ZwiNoOLvnv_!OCYba$~IE6lX!S* zOc?eMk>6;yFnm;hBxhS;#9|KRG*6f`wI9*Ie!|q3e<2kqgaD%to$Me4o4dl7jtId$ zjSLrpkCtG(L6~P)1JyJ*D@1fgWbW!KtQZEBqIq0#z?rC_r-__KB_ukXBhn-=4ywmE z?I>eJt%;n*UPv@Ho0@ZsgN6!;v!Fp|H^xWHg~ZBe5tMb!UkOuc7bj} zdQK<=ieYRuhw;b%s&t@C7I;NR+ zG7DjMDSRk-jj(4GRNrKnu;=_~bhQr{ z{s(;6`h{?8VSAL9^^BMNgu=tnP~8gQoUtDtw4AZPpYgInxTcVZo=y|4S0S24T@3On=oXCs4+Ny{)Mu-CwZHYQv6dlesL^Njp5S>!jVdIe^I*0h87c5|G5ze^L)w@yVwttX2oGEspKGo?d#i1 zo(ANpQ4x~YtVmRu2GaPiPl&=VNYfU<*8gmlrhQ9=25KeWYqN+Rcas7F4k6)vlL8(g z%4;NP=5RStV!9M{q92jvCn>&CNwhFoYQ3suYdC!`Y1KSDC_68$`rH$epOg~I?686H zNC|0RZYZ~v(vzXN($!M>UikF=YANe16k%2*<)8e7uGx<9?sKW++zlf2X%jhh6RB+d z7P!_gsq*L^RGcvBvR_|x`}&C}4m*OzWZd`0EhBUSfqfg_W0>9rNs)u&YY{5Ql| z`cxsG!sEm!zqjdvj*VnI-a?_9Hy({ee?^;v5a{zmMVohTh+dW|`j@mv)@aJO>YT!Q zgBMZ$#uWF4O$-ARuIC+bs&QX2#~$ivYN1&A1FJQhQAEcg*PN_lysc5hY#M@QzoQ~< z3zkQV6)RPR#K~$DD=#CZliVL5cqnpTMoOMi5VRiu%4Q1@`gmGvny?O!ekeY^MUI+rS}7Y)NOXISQa&jK zv0l*0bU_zeDCP6bu^Bj`RIhl7UZae$`8USV-<2Jrzu^M|m0ew-Pv7l~t6Y`VbGKuU zqf}ZSjzvpbt#nxOf#~@lrTdIJZ1Z9ny=|55x1ia37nCFFL(?0=m6H>$cgJyzhtiiY z@j8E{-z!X9{EV?WTNzmM8}?fU#_a4AZ6kBTraEPC@Gcw&ZB>Sz#rN-|DZ}RGqP@yg z&L68IO6jbOsRZw}QLa4dhI;u@x!nez|5s4v|62e#cPa~}*Pt9-Ru%*l6GCTHTzna+oUkDm3o#7qaOozJ;uY1g0l(veq&hqD9SUlO>imXt$SDd{ z<+m6FQ>E(ipwlP|_f%IL6JYYrsz)238L!8x7iXaAt7BB3isAd+tklX#B*CFs>ekVY z$VF?_cG5i@zARA>e*7Eujc?UMs{By!lhs2E#*6*0)h_X2=xwH`{W74M3At*&qQ2Ni znyY7B&O;qNt)Bb$B?#iAj@98bXUZFO{AP@ASixw%h;i#e^@?tNh~C<$6P=*h?JF6} zRqAyo(PPC-SEqG`sfrJ&)5Ak?AeW>zq`%0*b}K`j{$d+=N4@5PF-jk*F#+#$e{yCR+p|) z5LL#h%Ty5X9r$rQy3=ff`a(`MQT9u9Wx)rO>~)N*R;#adz(ji;HFBe*lfP@^3&2ym zG%b(0!kaBM9e316f%~9wsB1*@u${(v-ADAps~M*aVvMuYxNU?9zNTs18$tC?|I~Pn zNkSf5!T9_5D;m#OILX1An$gCRzOh6zrbRq#|GQ>tDQxdDOXIg0wtE?-3GdPq3GcP$ zkI`G8;!BzZGK}x}Ru(=*m{s=(a0MJ!*jT+t^WfJfq{BX4H7}a#&`$r*yuTF- z1>0z4Nk`D{*J_n|tmk2vR{1R)!P8sY^43V4k>qMy<@UgHYpumZxLz}*w&(sD9H)QO zI*xyjoz5f>0)5{GegdC?bwst@!C%<$9MC#WfZ(-rK^{I>o3C{pQG$*jmGO9-iJan% z*8O2?^j0&pqs(EUo4d8X+cGG0GB&JyH8WhZleD(?0(NL7f+Be<}OI@^=|St#oY~Hh_zI>N@|?3WfKC zZom@=_T{P0aYhU@v`;te2?ToCOE+RLGj2Gm)m8O`z(ZT>s{1Y_lBF^VfjWcn4^F}9YObSHtS-?@ZpQYt zSg$C<3g(X2tMXCQFRjHFm5VNQsD4*|D4egS{y-rFUUXNVXN;xrmimH$pftpwKm8dW%2}c>Z;?clHJ$N8 zhyNJ$A8SnH>V47QZdi;H!vARBRDXBycr;I6^!HjIja2N_*W^J!*93jt3}5tc^@E73 zKUWT~XwKK;?fG83EpNpS#BVVF8{dadnKPw%-p-Z{ty4Ta#k`O)3;X3gUDa!QO7!WG zc3nb(A|fJeY{F&*h1%H64GFff85I&dCMYb(H`sq@K!CsB{4n>~)BS_F75KikKKHY$ N`j?rE|JhyD@c*RaYt;Y% delta 7590 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 AutoDJFeature - + Crates - + Remove Crate as Track Source - + Auto DJ Auto DJ - + Add Crate as Track Source @@ -43,25 +43,25 @@ BansheeFeature - + Banshee Banshee - - + + Error loading Banshee database Ошибка при загрузке базы данных Banshee - + Banshee database file not found at Файл базы данных Banshee не найден на - + There was an error loading your Banshee database at Возникла ошибка при загрузке базы данных Banshee на @@ -71,32 +71,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) - + Add to Auto DJ Queue (top) - + Add to Auto DJ Queue (replace) - + Import Playlist Импорт плейлиста - + Playlist Creation Failed Создание плейлиста не удалось - + An unknown error occurred while creating playlist: Возникла неизвестная ошибка при создании плейлиста: @@ -104,144 +104,144 @@ BasePlaylistFeature - + New Playlist Новый плейлист - + Add to Auto DJ Queue (bottom) - - + + Create New Playlist Создать новый плейлист - + Add to Auto DJ Queue (top) - + Remove Удалить - + Rename Переименовать - + Lock Блокировать - + Duplicate Дублировать - - + + Import Playlist Импорт плейлиста - + Export Track Files Экспорт файлов трека - + Analyze entire Playlist Анализ всего плейлиста - + Enter new name for playlist: Введите новое имя плейлиста: - + Duplicate Playlist Дублировать плейлист - - + + Enter name for new playlist: Введите имя нового плейлиста: - - + + Export Playlist Экспорт плейлиста - + Add to Auto DJ Queue (replace) - + Rename Playlist Переименовать плейлист - - + + Renaming Playlist Failed Переименование плейлиста не удалось - - - + + + A playlist by that name already exists. Плейлист с таким именем уже существует. - - - + + + A playlist cannot have a blank name. Плейлист не может быть безымянным. - + _copy //: Appendix to default name when duplicating a playlist _копия - - - - - - + + + + + + Playlist Creation Failed Создание плейлиста не удалось - - + + An unknown error occurred while creating playlist: Возникла неизвестная ошибка при создании плейлиста: - + M3U Playlist (*.m3u) M3U Playlist (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Невозможно загрузить трек. @@ -514,7 +514,7 @@ - + Computer Компьютер @@ -534,7 +534,7 @@ Сканировать - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -647,12 +647,12 @@ Файл создан - + Mixxx Library Библиотека Mixxx - + Could not load the following file because it is in use by Mixxx or another application. @@ -683,6 +683,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -865,13 +943,13 @@ - + Set to full volume Установить максимальную громкость - + Set to zero volume Убрать громкость @@ -896,13 +974,13 @@ - + Headphone listen button Кнопка прослушивания через наушники - + Mute button @@ -918,25 +996,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -980,36 +1058,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1021,7 +1069,7 @@ - + Toggle keylock mode @@ -1031,199 +1079,199 @@ Эквалайзеры - + Vinyl Control - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 32 - + 64 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library Библиотека @@ -1334,20 +1382,20 @@ - - + + Volume Fader - + Full Volume Максимальная громкость - + Zero Volume Нулевая громкость @@ -1363,7 +1411,7 @@ - + Mute @@ -1374,7 +1422,7 @@ - + Headphone Listen Прослушивание через наушники @@ -1395,25 +1443,25 @@ - + Orientation Ориентация - + Orient Left - + Orient Center - + Orient Right @@ -1512,52 +1560,6 @@ Sync Синхронизация - - - Sync Mode - Режим синхронизации - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - Мастер синхронизации - Beat Sync One-Shot @@ -1574,37 +1576,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1645,466 +1647,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 1/32 - + 1/16 1/16 - + 1/8 1/8 - + 1/4 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) - + Prepend selected track to the Auto DJ Queue - + Load Track Загрузить трек - + Load selected track Загрузить выбранный трек - + Load selected track and play Загрузить и воспроизвести выбранный трек - - + + Record Mix - + Toggle mix recording - + Effects Эффекты - + Quick Effects Быстрые эффекты - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect Быстрый эффект - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next Следующий - + Switch to next effect Переключиться на следующий эффект - + Previous Предыдущий - + Switch to the previous effect Переключиться на предыдущий эффект - + Next or Previous Следующий или Предыдущий - + Switch to either next or previous effect - - + + Parameter Value Значение параметра - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. Показать или скрыть микшер. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2129,93 +2131,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed Увеличить скорость - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed Уменьшить скорость - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2272,806 +2274,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed Скорость - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up Переместить наверх - + Equivalent to pressing the UP key on the keyboard - + Move down Переместить вниз - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down Переместить наверх/вниз - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left Переместить влево - + Equivalent to pressing the LEFT key on the keyboard - + Move right Переместить вправо - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right Переместить влево/вправо - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item Перейти к выбранному элементу - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters Показать параметры эффекта - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off Микрофон вкл/выкл - + Microphone on/off Микрофон вкл/выкл - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ Auto DJ - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface Пользовательский интерфейс - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3160,32 +3228,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3221,133 +3289,133 @@ CrateFeature - + Remove Удалить - - + + Create New Crate - + Rename Переименовать - - + + Lock Блокировать - + Export Crate as Playlist - + Export Track Files Экспорт файлов трека - + Duplicate Дублировать - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates - - + + Import Crate - + Export Crate - + Unlock Разблокировать - + An unknown error occurred while creating crate: - + Rename Crate - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) - + Crates are a great way to help organize the music you want to DJ with. - + Crates let you organize your music however you'd like! - + A crate cannot have a blank name. - + A crate by that name already exists. @@ -3417,37 +3485,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: С помощью: - + And special thanks to: Отдельное спасибо: - + Past Developers Прошлые разработчики - + Past Contributors Прошлые помощники - + Official Website - + Donate @@ -4877,32 +4945,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin Скин - + Tool tips - + Select from different color schemes of a skin if available. - + Color scheme Цветовая схема - + Locales determine country and language specific settings. - + Locale Локаль @@ -4912,52 +4980,42 @@ Apply settings and continue? Настройки интерфейса - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. Изменить размер шрифта, кнопок и других элементов. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode Начать в полноэкранном режиме - + Full-screen mode Полноэкранный режим - + Off Выкл - + Library only - + Library and Skin Библиотека и Скин @@ -5568,39 +5626,39 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information Информация - - Mixxx must be restarted before the new locale setting will take effect. - Mixxx должен быть перезапущен до вступления в силу новых настроек локали. + + Mixxx must be restarted before the new locale or scaling settings will take effect. + @@ -5818,62 +5876,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan Сканировать - + Choose a music directory - + Confirm Directory Removal Подтвердить удаление директории - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks Скрыть треки - + Delete Track Metadata Удалить метаданные трека - + Leave Tracks Unchanged Оставить треки неизмененными - + Relink music directory to new location - + Select Library Font Выбрать шрифт библиотеки @@ -6877,32 +6935,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV HSV - + RGB RGB - + OpenGL not available OpenGL недоступен - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7116,72 +7174,72 @@ Select from different types of displays for the waveform, which differ primarily Библиотека - + Interface Интерфейс - + Waveforms - + Auto DJ Auto DJ - + Equalizers Эквалайзеры - + Decks - + Colors Цвета - + Crossfader - + Effects Эффекты - + LV2 Plugins Плагины LV2 - + Recording Запись - + Beat Detection - + Key Detection Обнаружение ключа - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7191,12 +7249,12 @@ Select from different types of displays for the waveform, which differ primarily - + Live Broadcasting - + Modplug Decoder @@ -7337,123 +7395,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track Трек - - + + Year Год - + Title Название - - + + Artist Исполнитель - - + + Album Альбом - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. Mixxx не смог найти этот трек в базе данных MusicBrainz. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. Получить API-ключ - + Submit Submits audio fingerprints to the MusicBrainz database. Отправить - + New Column Новый столбец - + New Item Новый элемент - + &Previous &Предыдущий - + &Next &Следующий - + &Apply &Применить - + &Close &Закрыть - + Status: %1 Статус: %1 - + HTTP Status: %1 HTTP-статус: %1 - + Code: %1 Код: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx не может подключиться к %1 по неизвестной причине. - + Mixxx can't connect to %1. Mixxx не может подключиться к %1. - + Original tags Оригинальные теги - + Suggested tags Предложенные теги @@ -7845,17 +7903,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7956,38 +8014,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes iTunes - - + + Select your iTunes library Выбрать библиотеку iTunes - + (loading) iTunes (загрузка) iTunes - + Use Default Library Использовать библиотеку по умолчанию - + Choose Library... Выбрать библиотеку... - + Error Loading iTunes Library Ошибка при загрузке библиотеки iTunes - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. Возникла ошибка при загрузке библиотеки iTunes. Некоторые треки или плейлисты могут быть не загружены. @@ -7995,13 +8053,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8010,57 +8068,57 @@ support. support. - + activate активировать - + toggle - + right справа - + left слева - + right small - + left small - + up - + down - + up small - + down small - + Shortcut Сокращение @@ -8081,22 +8139,22 @@ support. LibraryFeature - + Import Playlist Импорт плейлиста - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Playlist Files (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? Перезаписать файл? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8107,27 +8165,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Сканер библиотеки - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel Отмена - + Scanning: Сканирование... - + Scanning cover art (safe to cancel) @@ -8243,181 +8301,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. Получить <b>Помощь</b> на Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. <b>Выйти</b> из Mixxx. - + Retry Возобновить - + skin - - + + Reconfigure - + Help Помощь - - + + Exit Выход - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error Ошибка звукового устройства - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue Продолжить - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? Вы уверены, что хотите загрузить новый трек? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file Ошибка в файле скина - + The selected skin cannot be loaded. Выбранный скин не может быть загружен. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Подтвердить выход - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? Отменить все изменения и выйти из Mixxx? @@ -8489,43 +8547,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Блокировать - + Playlists Плейлисты - + Unlock Разблокировать - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist Создать новый плейлист @@ -8533,58 +8591,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Сканировать - + Later Позже - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8768,7 +8826,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9894,12 +9952,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10037,54 +10095,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox Rekordbox - + Playlists Плейлисты - + Folders Папки - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox (загрузка) Rekordbox @@ -10093,7 +10151,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox Rhythmbox @@ -10144,34 +10202,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks Треки - + Crates - + Check for Serato databases (refresh) - + (loading) Serato (загрузка) Serato @@ -10194,12 +10252,12 @@ Fully right: end of the effect period История - + Unlock Разблокировать - + Lock Блокировать @@ -11158,6 +11216,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12333,11 +12416,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12353,16 +12431,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12378,16 +12446,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12941,22 +12999,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor Traktor - + (loading) Traktor (загрузка) Traktor - + Error Loading Traktor Library Ошибка загрузки библиотеки Traktor - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. Возникла ошибка при загрузке библиотеки Traktor. Некоторые треки или плейлисты могут быть не загружены. @@ -13568,20 +13626,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13752,8 +13810,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Жанр - - Folder + + Directory @@ -13996,155 +14054,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 - + Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Создать новый плейлист - + Enter name for new playlist: Введите имя нового плейлиста: - + New Playlist Новый плейлист - - - + + + Playlist Creation Failed Создание плейлиста не удалось - + A playlist by that name already exists. Плейлист с таким именем уже существует - + A playlist cannot have a blank name. Плейлист не может быть безымянным. - + An unknown error occurred while creating playlist: Возникла неизвестная ошибка при создании плейлиста: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14152,7 +14215,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus ESC @@ -14189,128 +14252,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects.(GL ES) - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database Невозможно открыть базу данных - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14386,7 +14376,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14443,62 +14433,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: @@ -14516,7 +14506,7 @@ Click OK to exit. No effect loaded. - + Не загружено эффектов. \ No newline at end of file diff --git a/res/translations/mixxx_si.ts b/res/translations/mixxx_si.ts index 0584c6bf2e9..0a8598f6692 100644 --- a/res/translations/mixxx_si.ts +++ b/res/translations/mixxx_si.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates ඇහුරුම් පෙට්ටිය - + Remove Crate as Track Source - + Auto DJ ස්වයංක්‍රීය DJ - + Add Crate as Track Source පථයක ආකාරයට අහුරුම් එකතු කරන්න @@ -43,24 +43,24 @@ BansheeFeature - + Banshee - - + + Error loading Banshee database - + Banshee database file not found at - + There was an error loading your Banshee database at @@ -69,32 +69,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) ස්වයංක්‍රීය DJ පේලියට එක් කරන්න - + Add to Auto DJ Queue (top) ස්වයංක්‍රීය DJ පේලියෙහි (උඩටම) එක් කරන්න - + Add to Auto DJ Queue (replace) - + Import Playlist වාදන ලැයිස්තුව ආනයනය කරන්න - + Playlist Creation Failed වාදන ලැයිස්තුව හරිහැටි සකස් නොවිණි. - + An unknown error occurred while creating playlist: වාදන ලැයිස්තුව නිර්මාණය කරන අතරතුර අඥාත දෝෂයක් හටගත්තා @@ -102,144 +102,144 @@ BasePlaylistFeature - + New Playlist නව වාදන ලැයිස්තුව - + Add to Auto DJ Queue (bottom) ස්වයංක්‍රීය DJ පේලියට එක් කරන්න - - + + Create New Playlist - + Add to Auto DJ Queue (top) ස්වයංක්‍රීය DJ පේලියෙහි (උඩටම) එක් කරන්න - + Remove ඉවත් කරන්න - + Rename නම වෙනස් කරන්න - + Lock අගුළුලන්න - + Duplicate - - + + Import Playlist වාදන ලැයිස්තුව ආනයනය කරන්න - + Export Track Files - + Analyze entire Playlist මුළු වාදන ලැයිස්තුවම විශ්ලේෂණය කරන්න - + Enter new name for playlist: - + Duplicate Playlist වාදන ලැයිස්තුව පිටපත් කරන්න - - + + Enter name for new playlist: - - + + Export Playlist වාදන ලැයිස්තුව නිර්යාත කරන්න - + Add to Auto DJ Queue (replace) - + Rename Playlist වාදන ලැයිස්තුවේ නම වෙනස් කරන්න - - + + Renaming Playlist Failed වාදන ලැයිස්තුවේ නම වෙනස් කිරීම අසාර්ථකයි - - - + + + A playlist by that name already exists. එම නමින් වාදන ලැයිස්තුවක් දැනටමත් ඇත. - - - + + + A playlist cannot have a blank name. වාදන ලැයිස්තුවක් සඳහා හිස් නමක් තිබිය නොහැක. - + _copy //: Appendix to default name when duplicating a playlist _පිටපත් කරන්න - - - - - - + + + + + + Playlist Creation Failed වාදන ලැයිස්තුව හරිහැටි සකස් නොවිණි. - - + + An unknown error occurred while creating playlist: වාදන ලැයිස්තුව නිර්මාණය කරන අතරතුර අඥාත දෝෂයක් හටගත්තා - + M3U Playlist (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U වර්ගයේ වාදන ලැයිස්තුව (*.m3u);;M3U8 වාදන ලැයිස්තුව (*.m3u8);;PLS වාදන ලැයිස්තුව (*.pls);;වගන්ති CSV (*.csv);;කියැවියහැකි වගන්ති (*.txt) @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. පථය ප්‍රවේශණය කල නොහැක. @@ -512,7 +512,7 @@ - + Computer @@ -532,7 +532,7 @@ - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -645,12 +645,12 @@ - + Mixxx Library Mixxx පුස්තකාලය - + Could not load the following file because it is in use by Mixxx or another application. පහත සඳහන් ගොනු ප්‍රවේශණය කල නොහැක.ඒ මන්දයත් එය MIxxx හෝ වෙනත් නියැලුමක භාවිතා වන හෙයිණි. @@ -681,6 +681,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -863,13 +941,13 @@ - + Set to full volume - + Set to zero volume @@ -894,13 +972,13 @@ - + Headphone listen button - + Mute button @@ -916,25 +994,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -978,36 +1056,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1019,7 +1067,7 @@ - + Toggle keylock mode @@ -1029,199 +1077,199 @@ - + Vinyl Control - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 - + 1 - + 2 - + 4 - + 8 - + 16 - + 32 - + 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library @@ -1332,20 +1380,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1361,7 +1409,7 @@ - + Mute @@ -1372,7 +1420,7 @@ - + Headphone Listen @@ -1393,25 +1441,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1510,52 +1558,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1572,37 +1574,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1643,466 +1645,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) ස්වයංක්‍රීය DJ පේලියට එක් කරන්න - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) ස්වයංක්‍රීය DJ පේලියෙහි (උඩටම) එක් කරන්න - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix - + Toggle mix recording - + Effects - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next - + Switch to next effect - + Previous - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2127,93 +2129,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2270,806 +2272,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ ස්වයංක්‍රීය DJ - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3158,32 +3226,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3219,133 +3287,133 @@ CrateFeature - + Remove ඉවත් කරන්න - - + + Create New Crate - + Rename නම වෙනස් කරන්න - - + + Lock අගුළුලන්න - + Export Crate as Playlist - + Export Track Files - + Duplicate - + Analyze entire Crate සම්පුර්ණ ඇහුරුම විශ්ලේෂණය කිරීම - + Auto DJ Track Source ස්වයං DJ පථ ආකාරය - + Enter new name for crate: - - + + Crates ඇහුරුම් පෙට්ටිය - - + + Import Crate ඇහුරුම ලබාදෙන්න. - + Export Crate ඇහුරුම ලබාගන්න. - + Unlock අගුළු අරින්න - + An unknown error occurred while creating crate: ඇහුරුම නිර්මාණය කරන අතරතුර අඥාත දෝෂයක් හටගත්තා - + Rename Crate අහුරුම් නම වෙනස් කිරීම - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed ඇහුරුම් නම වෙනස් කිරීම අසාර්ථකයි - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U වර්ගයේ වාදන ලැයිස්තුව (*.m3u);;M3U8 වාදන ලැයිස්තුව (*.m3u8);;PLS වාදන ලැයිස්තුව (*.pls);;වගන්ති CSV (*.csv);;කියැවියහැකි වගන්ති (*.txt) - + Crates are a great way to help organize the music you want to DJ with. ඔබට DJ කිරීමට අවශ්‍ය සංගීතය පිළියෙළ කිරීමට ඇහුරුම් පෙට්ටිය මහත් උදව්වකි. - + Crates let you organize your music however you'd like! ඔබගේ සංගීතය ඔබ කැමති ලෙසට පිළියෙළ කිරීමට ඇහුරුම ඔබට ඉඩ දෙයි. - + A crate cannot have a blank name. ඇහුරුමක් සඳහා හිස් නමක් තිබිය නොහැක. - + A crate by that name already exists. එම නමින් ඇහුරුමක් දැනටමත් ඇත. @@ -3415,37 +3483,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4875,32 +4943,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin - + Tool tips - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4910,52 +4978,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off - + Library only - + Library and Skin @@ -5566,38 +5624,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5816,62 +5874,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6875,32 +6933,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7114,72 +7172,72 @@ Select from different types of displays for the waveform, which differ primarily - + Interface - + Waveforms - + Auto DJ ස්වයංක්‍රීය DJ - + Equalizers - + Decks - + Colors - + Crossfader - + Effects - + LV2 Plugins - + Recording - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7189,12 +7247,12 @@ Select from different types of displays for the waveform, which differ primarily - + Live Broadcasting - + Modplug Decoder @@ -7335,123 +7393,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year වර්ෂය - + Title මාතෘකාව - - + + Artist ගායකයා - - + + Album ඇල්බමය - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7843,17 +7901,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7954,38 +8012,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7993,13 +8051,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8007,57 +8065,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8078,22 +8136,22 @@ support. LibraryFeature - + Import Playlist වාදන ලැයිස්තුව ආනයනය කරන්න - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) වාදන ලැයිස්තුවේ ගොනු (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8104,27 +8162,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8240,181 +8298,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry - + skin - - + + Reconfigure - + Help - - + + Exit - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8485,43 +8543,43 @@ Do you want to select an input device? PlaylistFeature - + Lock අගුළුලන්න - + Playlists - + Unlock අගුළු අරින්න - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist @@ -8529,58 +8587,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8764,7 +8822,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9890,12 +9948,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10033,54 +10091,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10089,7 +10147,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10140,34 +10198,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates ඇහුරුම් පෙට්ටිය - + Check for Serato databases (refresh) - + (loading) Serato @@ -10190,12 +10248,12 @@ Fully right: end of the effect period - + Unlock අගුළු අරින්න - + Lock අගුළුලන්න @@ -11154,6 +11212,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12329,11 +12412,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12349,16 +12427,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12374,16 +12442,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12937,22 +12995,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13564,20 +13622,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13748,8 +13806,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.වර්ගය - - Folder + + Directory @@ -13992,155 +14050,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 - + Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist - + Enter name for new playlist: - + New Playlist නව වාදන ලැයිස්තුව - - - + + + Playlist Creation Failed වාදන ලැයිස්තුව හරිහැටි සකස් නොවිණි. - + A playlist by that name already exists. එම නමින් වාදන ලැයිස්තුවක් දැනටමත් ඇත. - + A playlist cannot have a blank name. වාදන ලැයිස්තුවක් සඳහා හිස් නමක් තිබිය නොහැක. - + An unknown error occurred while creating playlist: වාදන ලැයිස්තුව නිර්මාණය කරන අතරතුර අඥාත දෝෂයක් හටගත්තා - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14148,7 +14211,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14185,128 +14248,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14382,7 +14372,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14439,62 +14429,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_sk.ts b/res/translations/mixxx_sk.ts index 1fdaf9cadc6..9a3aa9d1668 100644 --- a/res/translations/mixxx_sk.ts +++ b/res/translations/mixxx_sk.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates DJ bagy - + Remove Crate as Track Source - + Auto DJ Auto DJ - + Add Crate as Track Source @@ -43,24 +43,24 @@ BansheeFeature - + Banshee - - + + Error loading Banshee database - + Banshee database file not found at - + There was an error loading your Banshee database at @@ -69,32 +69,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Pridať na koniec zoznamu Auto DJa - + Add to Auto DJ Queue (top) Pridaj na začiatok zoznamu Auto DJa - + Add to Auto DJ Queue (replace) - + Import Playlist Importovať playlist - + Playlist Creation Failed Chyba pri vytváraní zoznamu skladieb - + An unknown error occurred while creating playlist: Vyskytla sa neznáma chyba pri tvorbe playlistu. @@ -102,144 +102,144 @@ BasePlaylistFeature - + New Playlist Nový playlist - + Add to Auto DJ Queue (bottom) Pridať na koniec zoznamu Auto DJa - - + + Create New Playlist Vytvoriť nový playlist - + Add to Auto DJ Queue (top) Pridaj na začiatok zoznamu Auto DJa - + Remove Odobrať - + Rename Premenovať - + Lock Uzamknúť - + Duplicate Duplikovať - - + + Import Playlist Importovať playlist - + Export Track Files Exportovať stopy - + Analyze entire Playlist Analyzovať celý playlist - + Enter new name for playlist: Zadajte nové meno pre playlist - + Duplicate Playlist Duplikovať playlist - - + + Enter name for new playlist: Zadajte meno pre nový playlist - - + + Export Playlist Exportuj playlist - + Add to Auto DJ Queue (replace) - + Rename Playlist Premenovať playlist - - + + Renaming Playlist Failed Premenovanie playlistu zlyhalo - - - + + + A playlist by that name already exists. Tento názov playlistu už existuje! - - - + + + A playlist cannot have a blank name. Playlist nemôže byť bez názvu! - + _copy //: Appendix to default name when duplicating a playlist _kopíruj - - - - - - + + + + + + Playlist Creation Failed Chyba pri vytváraní zoznamu skladieb - - + + An unknown error occurred while creating playlist: Vyskytla sa neznáma chyba pri tvorbe playlistu. - + M3U Playlist (*.m3u) M3U Playlist (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Súbory zoznamu skladieb typu (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Chyba pri načítaní súboru @@ -512,7 +512,7 @@ - + Computer Počítač @@ -532,7 +532,7 @@ Skenovať - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -645,12 +645,12 @@ - + Mixxx Library Knižnica - + Could not load the following file because it is in use by Mixxx or another application. Nieje možné loadnuť tento súbor lebo je používaný v Mixxe alebo inej aplikácii. @@ -681,6 +681,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -863,13 +941,13 @@ - + Set to full volume Nastaviť plnú hlasitosť - + Set to zero volume Nastaviť zvuk na 0 hodnotu @@ -894,13 +972,13 @@ - + Headphone listen button - + Mute button Vypnúť zvuk @@ -916,25 +994,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left Nastaviť orientáciu MIXu na ľavo - + Set mix orientation to center Nastaviť orientáciu MIXu na stred - + Set mix orientation to right Nastaviť orientáciu MIXu na pravo @@ -978,36 +1056,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1019,7 +1067,7 @@ - + Toggle keylock mode @@ -1029,199 +1077,199 @@ Ekvalizéry - + Vinyl Control - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping Slučka - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 - + 1 - + 2 - + 4 - + 8 - + 16 - + 32 - + 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library Knižnica @@ -1332,20 +1380,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1361,7 +1409,7 @@ - + Mute Vypnúť zvuk @@ -1372,7 +1420,7 @@ - + Headphone Listen @@ -1393,25 +1441,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1510,52 +1558,6 @@ Sync Synchronizovať - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1572,37 +1574,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1643,466 +1645,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) Pridať na koniec zoznamu Auto DJa - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) Pridaj na začiatok zoznamu Auto DJa - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix - + Toggle mix recording - + Effects - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next - + Switch to next effect - + Previous - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2127,93 +2129,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2270,806 +2272,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ Auto DJ - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3158,32 +3226,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3219,133 +3287,133 @@ CrateFeature - + Remove Odobrať - - + + Create New Crate - + Rename Premenovať - - + + Lock Uzamknúť - + Export Crate as Playlist - + Export Track Files Exportovať stopy - + Duplicate Duplikovať - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates DJ bagy - - + + Import Crate Importuj DJ Bag - + Export Crate Exportuj DJ Bag - + Unlock Odomkni - + An unknown error occurred while creating crate: Neznáma chyba pri vytváraní DJ Bagu - + Rename Crate Premenuj DJ Bag - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Súbory zoznamu skladieb typu (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) - + Crates are a great way to help organize the music you want to DJ with. DJ Bagy (zbierky trackov) sú výborný spôsob organizácie hudby, ktorú chceš použiť (podobné k sebe, set pokope...) - + Crates let you organize your music however you'd like! DJ Bagy ti zorganizujú hudbu presne ako to chceš! - + A crate cannot have a blank name. DJ Bag musí mať názov. - + A crate by that name already exists. DJ Bag s týmto názvom už existuje. @@ -3415,37 +3483,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4875,32 +4943,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin - + Tool tips - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4910,52 +4978,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off - + Library only - + Library and Skin @@ -5566,38 +5624,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5816,62 +5874,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added Pridaný hudobný priečinok - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan Skenovať - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6875,32 +6933,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7114,72 +7172,72 @@ Select from different types of displays for the waveform, which differ primarily Knižnica - + Interface - + Waveforms - + Auto DJ Auto DJ - + Equalizers Ekvalizéry - + Decks - + Colors - + Crossfader - + Effects - + LV2 Plugins - + Recording - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7189,12 +7247,12 @@ Select from different types of displays for the waveform, which differ primarily - + Live Broadcasting - + Modplug Decoder @@ -7335,123 +7393,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Rok - + Title Názov - - + + Artist Interprét - - + + Album Album - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7843,17 +7901,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7954,38 +8012,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7993,13 +8051,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8007,57 +8065,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8078,22 +8136,22 @@ support. LibraryFeature - + Import Playlist Importovať playlist - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Súbory zoznamu skladieb (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8104,27 +8162,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8240,181 +8298,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry - + skin - - + + Reconfigure - + Help - - + + Exit - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8485,43 +8543,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Uzamknúť - + Playlists - + Unlock Odomkni - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist Vytvoriť nový playlist @@ -8529,58 +8587,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Skenovať - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8764,7 +8822,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9890,12 +9948,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10033,54 +10091,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10089,7 +10147,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10140,34 +10198,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates DJ bagy - + Check for Serato databases (refresh) - + (loading) Serato @@ -10190,12 +10248,12 @@ Fully right: end of the effect period - + Unlock Odomkni - + Lock Uzamknúť @@ -11154,6 +11212,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12329,11 +12412,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12349,16 +12427,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12374,16 +12442,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12937,22 +12995,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13564,20 +13622,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13748,8 +13806,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Žáner - - Folder + + Directory @@ -13992,155 +14050,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 - + Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Vytvoriť nový playlist - + Enter name for new playlist: Zadajte meno pre nový playlist - + New Playlist Nový playlist - - - + + + Playlist Creation Failed Chyba pri vytváraní zoznamu skladieb - + A playlist by that name already exists. Tento názov playlistu už existuje! - + A playlist cannot have a blank name. Playlist nemôže byť bez názvu! - + An unknown error occurred while creating playlist: Vyskytla sa neznáma chyba pri tvorbe playlistu. - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14148,7 +14211,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14185,128 +14248,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14382,7 +14372,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14439,62 +14429,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_sl.qm b/res/translations/mixxx_sl.qm index 08d8e3c4d63dbd0b12cb052d497019d08daf4fce..51fbac7b5c1671bc84255366f15c8dda29c493bd 100644 GIT binary patch delta 41640 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 diff --git a/res/translations/mixxx_sl.ts b/res/translations/mixxx_sl.ts index 5154042bf89..fdc65139e77 100644 --- a/res/translations/mixxx_sl.ts +++ b/res/translations/mixxx_sl.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Zaboji - + Remove Crate as Track Source Odstrani zaboj kot vir skladb. - + Auto DJ Samodejni DJ - + Add Crate as Track Source Dodaj zaboj kot vir skladb. @@ -43,60 +43,60 @@ BansheeFeature - + Banshee Banshee - - + + Error loading Banshee database Napaka pri nalaganju Banshee podatkovne baze - + Banshee database file not found at Banshee podatkovna baza ni bila najdena v - + There was an error loading your Banshee database at - Zgodila se je napaka pri nalaganju Banshee podatkovne baze v + Zgodila se je napaka pri nalaganju Banshee podatkovne baze iz BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Dodaj v zaporedje samodejnega DJ-a (na dno) - + Add to Auto DJ Queue (top) Dodaj v zaporedje samodejnega DJ-a (na vrh) - + Add to Auto DJ Queue (replace) Dodaj v zaporedje samodejnega DJ-a (zamenjaj) - + Import Playlist Uvozi seznam predvajanja - + Playlist Creation Failed Ustvarjanje seznama predvajanja je spodletelo - + An unknown error occurred while creating playlist: Neznana napaka pri ustvarjanju novega seznama predvajanja: @@ -104,144 +104,144 @@ BasePlaylistFeature - + New Playlist Nov seznam predvajanja - + Add to Auto DJ Queue (bottom) Dodaj v zaporedje samodejnega DJ-a (na dno) - - + + Create New Playlist Ustvari nov seznam predvajanja - + Add to Auto DJ Queue (top) Dodaj v zaporedje samodejnega DJ-a (na vrh) - + Remove Odstrani - + Rename Preimenuj - + Lock Zakleni - + Duplicate Podvoji - - + + Import Playlist Uvozi seznam predvajanja - + Export Track Files Izvozi datoteke skladb - + Analyze entire Playlist Analiziraj celoten seznam predvajanja - + Enter new name for playlist: Vnesi novo ime seznama predvajanja: - + Duplicate Playlist Podvoji seznam predvajanja - - + + Enter name for new playlist: Vnesi ime seznama predvajanja: - - + + Export Playlist Izvozi seznam predvajanja - + Add to Auto DJ Queue (replace) Dodaj v zaporedje samodejnega DJ-a (zamenjaj) - + Rename Playlist Preimenuj seznam predvajanja - - + + Renaming Playlist Failed Napaka pri preimenovanju seznama predvajanja - - - + + + A playlist by that name already exists. Seznam predvajanja s tem imenom že obstaja. - - - + + + A playlist cannot have a blank name. Seznam predvajanja ne more biti brez imena. - + _copy //: Appendix to default name when duplicating a playlist _kopija - - - - - - + + + + + + Playlist Creation Failed Ustvarjanje seznama predvajanja je spodletelo - - + + An unknown error occurred while creating playlist: Neznana napaka pri ustvarjanju novega seznama predvajanja: - + M3U Playlist (*.m3u) M3U seznam predvajanja (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U seznam predvajanja (*.m3u);;M3U8 seznam predvajanja (*.m3u8);;PLS seznam predvajanja (*.pls);;z vejicami ločen tekst (*.csv);;berljiv tekst (*.txt) @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Ne morem naložiti skladbe. @@ -514,7 +514,7 @@ - + Computer Računalnik @@ -534,7 +534,7 @@ Preglej - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. "Računalnik" omogoča izbiranje, pregledovanje in nalaganje skladb iz map na vašem disku ali zunanjih naprav. @@ -647,12 +647,12 @@ Ustvarjanje datoteke - + Mixxx Library Mixxx zbirka - + Could not load the following file because it is in use by Mixxx or another application. Datoteke ni bilo mogoče naložiti, ker jo že uporablja Mixxx ali nek drug program. @@ -683,6 +683,89 @@ Datoteka '%1' je prazna in je ni bilo mogoče naložiti. + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + Zaženi Mixxx preko celega zaslona + + + + Use a custom locale for loading translations. (e.g 'fr') + Uporabi lastne krajevne nastavitve za nalaganje prevodov (npr. 'fr') + + + + Top-level directory where Mixxx should look for settings. Default is: + Vrhnji direktorij v kateremu naj Mixxx, poleg privzetih lokaciji, išče nastavitve. Privzeto je: + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + Vrhnji direktorij v katerem Mixxx išče resurse, kot so MIDI mapiranja. S tem se povozi sicer privzeta lokacija namestitve. + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + Povzroči, da Mixxx prikaže/ beleži vse podatke kontrolerja, ki jih prejme in vse funkcije skript, ki jih naloži. + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + Vklopi razvojni način. Vsebuje dodatne beležke, statistike o zmogljivosti in meni z razvojnimi orodji. + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + Vklopi varni način. Onemogoči OpenGL valovne oblike in prikaz vrtenja gramofonov. Če se Mixxx ne zažene, preizkusite to možnost. + + + + [auto|always|never] Use colors on the console output. + [auto|always|never] Izpis terminala naj uporablja barve. + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + Določi vidnost beležk ukazne vrstice. +critical - zgolj kritično in fatalno +warning - gornje + opozorila +info - gornje + informativna sporočila +debug - gornje + razhroščevalna/razvojna sporočila +trace - gornje + profilirna sporočila + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + Prekine (SIGINT) Mixxx, če je vrednost DEBUG_ASSERT neresnična. V razhroščevalniku je potem mogoče nadaljevati izvajanje. + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + Ob zagonu naloži določene skladbe. Vsaka določena od skladb je naložena v naslednji virtualni predvajalnik. + + ColorPaletteEditor @@ -865,13 +948,13 @@ - + Set to full volume Nastavi na najvišjo glasnost. - + Set to zero volume Nastavi glasnost na nič. @@ -896,13 +979,13 @@ Gumb za vzvratno predvajanje (Censor) - + Headphone listen button Gumb za poslušanje s slušalkami - + Mute button Gumb za utišanje @@ -918,25 +1001,25 @@ - + Mix orientation (e.g. left, right, center) Orientacija mešalke (npr. levo, desno, sredina) - + Set mix orientation to left Usmeri miks v levo - + Set mix orientation to center Usmeri miks v sredino - + Set mix orientation to right Usmeri miks v desno @@ -980,36 +1063,6 @@ Toggle quantize mode Vklop/izklop kvantizacije - - - Increase internal master BPM by 1 - Povečaj interni glavni tempo za 1 BPM - - - - Decrease internal master BPM by 1 - Zmanjšaj interni glavni tempo za 1 BPM - - - - Increase internal master BPM by 0.1 - Povečaj interni glavni tempo za 0,1 BPM - - - - Decrease internal master BPM by 0.1 - Zmanjšaj interni glavni tempo za 0,1 BPM - - - - Toggle sync master - Vklop/izklop glavnega vira za sinhronizacijo - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - Preklop med 3 vrstami sinhronizacije (IZKLOP, SLEDILEC, MASTER) - One-time beat sync (tempo only) @@ -1021,9 +1074,9 @@ Enkratna sinhronizacija ritma (samo faza) - + Toggle keylock mode - Preklopi zaklep + Preklopi zaklep tonalitete @@ -1031,199 +1084,199 @@ Izravnalniki - + Vinyl Control Gramofonsko upravljanje - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) Izberi način obravnave cue iztočnic za gramofonsko upravljanje (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) Izberi vrsto gramofonskega upravljanja (ABS/REL/CONST) - + Pass through external audio into the internal mixer Prepusti zunanji zvok v notranjo mešalko - + Cues Cue iztočnice - + Cue button Gumb cue iztočnice - + Set cue point Postavi cue iztočnico - + Go to cue point Pojdi cue iztočnico - + Go to cue point and play Pojdi na cue iztočnico in predvajaj - + Go to cue point and stop Pojdi na cue iztočnico in ustavi - + Preview from cue point Predposlušaj od cue iztočnice - + Cue button (CDJ mode) Gumb cue iztočnice (CDJ način) - + Stutter cue Jecljava cue iztočnica - + Hotcues Hotcue iztočnice - + Set, preview from or jump to hotcue %1 Postavi, predposlušaj ali skoči na hotcue iztočnico %1 - + Clear hotcue %1 Briši hotcue izotčnico %1 - + Set hotcue %1 Postavi hotcue iztočnico %1 - + Jump to hotcue %1 Skoči na hotcue izotčnico %1 - + Jump to hotcue %1 and stop Skoči na hotcue iztočnice %1 in ustavi - + Jump to hotcue %1 and play Skoči na hotcue iztočnice %1 in predvajaj - + Preview from hotcue %1 Predposlušaj od hotcue iztočnice %1 - - + + Hotcue %1 Hotcue iztočnica %1 - + Looping Ponavljanje v zanki - + Loop In button Gumb V zanko - + Loop Out button Gumb Iz zanke - + Loop Exit button Gumb Zapusti zanko - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 32 - + 64 64 - + Move loop forward by %1 beats Premakni zanko za %1 udarcev naprej - + Move loop backward by %1 beats Premakni zanko za %1 udarcev nazaj - + Create %1-beat loop Ustvari %1-ritmično zanko - + Create temporary %1-beat loop roll Začasno ustvari kotalečo se %1-ritmično-zanko - + Library Zbirka @@ -1334,20 +1387,20 @@ - - + + Volume Fader Regulator glasnosti - + Full Volume Najvišja glasnost - + Zero Volume Ničelna glasnost @@ -1363,7 +1416,7 @@ - + Mute Tiho @@ -1374,7 +1427,7 @@ - + Headphone Listen Predposlušanje preko slušalk @@ -1395,25 +1448,25 @@ - + Orientation Orientacija - + Orient Left Leva orientacija - + Orient Center Sredinska orientacija - + Orient Right Desna orientacija @@ -1512,52 +1565,6 @@ Sync Sinhronizacija - - - Sync Mode - Vrsta sinhronizacije - - - - Internal Sync Master - Master interne sinhornizacije - - - - Toggle Internal Sync Master - Preklopi master interne sinhronizacije - - - - - Internal Master BPM - Interni glavni tempo v BPM - - - - Internal Master BPM +1 - Interni glavni tempo v BPM +1 - - - - Internal Master BPM -1 - Interni glavni tempo v BPM -1 - - - - Internal Master BPM +0.1 - Interni glavni tempo v BPM +0,1 - - - - Internal Master BPM -0.1 - Interni glavni tempo v BPM -0,1 - - - - Sync Master - Master sinhronizacije - Beat Sync One-Shot @@ -1574,49 +1581,49 @@ Enkratna sinhronizacija faze - + Pitch control (does not affect tempo), center is original pitch Kontrola višine (ne vpliva na tempo). Izhodišče je sredina. - + Pitch Adjust Prilagajanje višine - + Adjust pitch from speed slider pitch Prilagajanje višine z drsnikom za hitrost - + Match musical key Ujemi glasbeno tonaliteto - + Match Key Ujemi tonaliteto - + Reset Key Ponastavi tonaliteto - + Resets key to original Ponastavi glasbeno tonaliteto na originalno High EQ - Visoki EQ + Visoki toni Mid EQ - Srednji EQ + Srednji toni @@ -1642,471 +1649,471 @@ Low EQ - Nizki EQ + Nizki toni - + Toggle Vinyl Control Vklop/Izklop gramofonskega upravljanja - + Toggle Vinyl Control (ON/OFF) Gramofonski načina upravljanja (VKLOP/IZKLOP) - + Vinyl Control Mode Način gramofonskega upravljanja - + Vinyl Control Cueing Mode Predposlušanje v gramofonskem načinu - + Vinyl Control Passthrough Gramofonski način prehoda signala - + Vinyl Control Next Deck Gramofonsko upravljanje naslednjega predvajalnika - + Single deck mode - Switch vinyl control to next deck Predaj gramofonsko upravljanje naselednjemu predvajalniku v posamičnem načinu delovanja predvajalnikov - + Cue Cue iztočnica - + Set Cue Postavi cue iztočnico - + Go-To Cue Skoči na cue izotčnico - + Go-To Cue And Play Skoči na cue iztočnico in predvajaj - + Go-To Cue And Stop Skoči na cue-izotčnico in ustavi - + Preview Cue Predposlušanje cue iztočnice - + Cue (CDJ Mode) Cue iztočnica (CDJ način) - + Stutter Cue Jecljava cue iztočnica - + Go to cue point and play after release Pojdi na cue iztočnico in predvajaj potem, ko spustim - + Clear Hotcue %1 Briši hotcue iztočnico %1 - + Set Hotcue %1 Postavi hotcue iztočnico %1 - + Jump To Hotcue %1 Skoči na hotcue iztočnico %1 - + Jump To Hotcue %1 And Stop Skoči na hotcue iztočnico %1 in ustavi - + Jump To Hotcue %1 And Play Skoči na hotcue iztočnico %1 in predvajaj - + Preview Hotcue %1 Predposlušanje hotcue iztočnice %1 - + Loop In V zanko - + Loop Out Iz zanke - + Loop Exit Zapusti zanko - + Reloop/Exit Loop Ponovi zanko/ zapusti zanko - + Loop Halve Polovična zanka - + Loop Double Dvojna zanka - + 1/32 1/32 - + 1/16 1/16 - + 1/8 1/8 - + 1/4 1/4 - + Move Loop +%1 Beats Premakni zanko za +%1 dobo - + Move Loop -%1 Beats Premakni zanko za -%1 dobo - + Loop %1 Beats Ponavljaj %1 dob - + Loop Roll %1 Beats Kotaleča se zanka %1 dob - + Add to Auto DJ Queue (bottom) Dodaj v zaporedje samodejnega DJ-a (na dno) - + Append the selected track to the Auto DJ Queue - Dodaj izbrano skaldbo k zaporedju samodejnega DJ-a + Dodaj izbrano skladbo k zaporedju samodejnega DJ-a - + Add to Auto DJ Queue (top) Dodaj v zaporedje samodejnega DJ-a (na vrh) - + Prepend selected track to the Auto DJ Queue Pripni izbrano skladbo na začetek zaporedja samodejnega DJ-a - + Load Track Naloži skladbo - + Load selected track Naloži označeno skladbo - + Load selected track and play Naloži označeno skladbo in predvajaj - - + + Record Mix Posnemi miks - + Toggle mix recording Preklopi snemanje miksa - + Effects Učinki - + Quick Effects Hitri učinki - + Deck %1 Quick Effect Super Knob Super regulator za hitre učinke za predvajalnik %1 - + Quick Effect Super Knob (control linked effect parameters) Super regulator za hitre učinke (kontrola povezanih parametrov učinka) - - + + Quick Effect Hitri učinek - + Clear effect rack Izprazni regal z učinki - + Clear Effect Rack Izprazni regal z učinki - + Clear Unit Počisti enoto - + Clear effect unit Pobriši učinek - + Toggle Unit Preklopi enoto - + Dry/Wet Surovo/obogateno - + Adjust the balance between the original (dry) and processed (wet) signal. Spremeni razmerje med originalnim (surovim) in procesiranim (obogatenim) signalom. - + Super Knob Super regulator - + Next Chain Naslednja veriga - + Assign Določi - + Clear Počisti - + Clear the current effect Izbriše trenutni učinek - + Toggle Preklopi - + Toggle the current effect Preklopi trenutni učinek - + Next Naslednji - + Switch to next effect Preklopi na naslednji učinek - + Previous Prejšnji - + Switch to the previous effect Preklopi na prejšnji učinek - + Next or Previous Naslednji ali prejšnji - + Switch to either next or previous effect Preklopi na naslednji ali prejšnji učinek - - + + Parameter Value Vrednost parametra - - + + Microphone Ducking Strength Moč redukcije mikrofona - + Microphone Ducking Mode Način redukcije mikrofona - + Gain Jakost - + Gain knob Regulator jakosti - + Shuffle the content of the Auto DJ queue Premešaj skladbe v zaporedju samodejnega DJ-a - + Skip the next track in the Auto DJ queue Preskoči naslednjo skladbo v zaporedju samodejnega DJ-a - + Auto DJ Toggle Preklopi samodejnega DJ-a - + Toggle Auto DJ On/Off Vkopi/izklopi samodejnega DJ-a - + Microphone & Auxiliary Show/Hide Prikaži/skrij mikrofon in pomožno AUX vodilo - + Show/hide the microphone & auxiliary section Prikaži/skrij sekcijo z mikrofoni in pomožnimi vodili - + 4 Effect Units Show/Hide Prikaži/skrij štiri učinke - + Switches between showing 2 and 4 effect units Preklopi med prikazom dveh ali štirih učinkov - + Mixer Show/Hide Mešalka prikaži/skrij - + Show or hide the mixer. Prikaži ali skrij mešalko - + Cover Art Show/Hide (Library) Naslovnica prikaži/skrij (knjižnica) - + Show/hide cover art in the library Prikaži/skrij naslovnico v knjižnici - + Library Maximize/Restore Zbirka celozaslonsko/ponastavi - + Maximize the track library to take up all the available screen space. Poveča zbirko skladb preko celega zaslona - + Effect Rack Show/Hide Prikaži/skrij regal z učinki - + Show/hide the effect rack Prikaže ali skrije regal v katerem so učinki - + Waveform Zoom Out - Valovna oblika odzumiraj + Valovna oblika oddalji @@ -2129,93 +2136,93 @@ Enkratna ritmična sinhronizacija tempa (in faze, če je vklopljena kvantizacija). - + Playback Speed Hitrost predvajanja - + Playback speed control (Vinyl "Pitch" slider) Nadzor hitrosti predvajanja (gramofosnki drsnik za "višino") - + Pitch (Musical key) Višina (glasbena tonaliteta) - + Increase Speed Povečaj hitrost - + Adjust speed faster (coarse) Povečanje hitrosti (grobo) - - + + Increase Speed (Fine) Pospeši (fino) - + Adjust speed faster (fine) Povečanje hitrosti (fino) - + Decrease Speed Upočasni - + Adjust speed slower (coarse) Zmanjšanje hitrosti (grobo) - + Adjust speed slower (fine) Upočasni (fino) - + Temporarily Increase Speed Začasno pospeši - + Temporarily increase speed (coarse) Začasno poveča hitrost (grobo) - + Temporarily Increase Speed (Fine) Začasno pospeši (fino) - + Temporarily increase speed (fine) Začasno poveča hitrost (fino) - + Temporarily Decrease Speed Začasno upočasni - + Temporarily decrease speed (coarse) Začasno zmanjša hitrost (grobo) - + Temporarily Decrease Speed (Fine) Začasno upočasni (fino) - + Temporarily decrease speed (fine) Začasno zmanjša hitrost (fino) @@ -2272,806 +2279,872 @@ Sinhronizacija / Zaklep - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed Hitrost - + Pitch (Musical Key) Višina (glasbena tonaliteta) - + Increase Pitch Zvišaj tonaliteto - + Increases the pitch by one semitone Zniža tonaliteto za pol tona - + Increase Pitch (Fine) Zvišaj tonaliteto (fino) - + Increases the pitch by 10 cents Zviša tonaliteto za 10 centov - + Decrease Pitch Znižaj tonaliteto - + Decreases the pitch by one semitone Zniža tonaliteto za pol tona - + Decrease Pitch (Fine) Znižaj tonaliteto (fino) - + Decreases the pitch by 10 cents Zniža tonaliteto za 10 centov - + Keylock Zaklep tonalitete - + CUP (Cue + Play) CUP (cue iztočnica + predvajaj) - + Shift cue points earlier Premakni iztočnice na prej - + Shift cue points 10 milliseconds earlier Premakni iztočnice za 10 milisekund nazaj - + Shift cue points earlier (fine) Premakni iztočnice nazaj (fino) - + Shift cue points 1 millisecond earlier Premakni iztočnice za 1 milisekundo nazaj - + Shift cue points later Premakni iztočnice na kasneje - + Shift cue points 10 milliseconds later Premakni iztočnice za 10 milisekund naprej - + Shift cue points later (fine) Premakni iztočnice naprej (fino) - + Shift cue points 1 millisecond later Premakni iztočnice za 1 milisekundo naprej - + Hotcues %1-%2 Hotcue iztočnice %1-%2 - + Intro / Outro Markers Uvod / Zaključek oznaki - + Intro Start Marker Oznaka začetka uvoda - + Intro End Marker Oznaka konca uvoda - + Outro Start Marker Outro start oznaka - + Outro End Marker Outro konec oznaka - + intro start marker oznaka začetka uvoda - + intro end marker oznaka konca uvoda - + outro start marker oznaka začetka zaključka - + outro end marker oznaka konca zaključka - + Activate %1 [intro/outro marker Aktiviraj %1 - + Jump to or set the %1 [intro/outro marker Skoči ali določi %1 - + Set %1 [intro/outro marker Postavi %1 - + Set or jump to the %1 [intro/outro marker Postavi ali skoči na %1 - + Clear %1 [intro/outro marker Počisti %1 - + Clear the %1 [intro/outro marker Počisti %1 - + Loop Selected Beats V zanki ponavljaj izbrane dobe - + Create a beat loop of selected beat size Ustvari ritmično zanko iz določenega števila dob - + Loop Roll Selected Beats Kotaleča se zanka določenih dob - + Create a rolling beat loop of selected beat size Ustvari kotalečo se ritmično zanko iz določenega števila dob - + Loop Beats Ritmične zanke - + Loop Roll Beats Kotaleče se ritmične zanke - + Toggle loop on/off and jump to Loop In point if loop is behind play position Vklopi/izklopi zanko in skoči na točko V zanko, če je zanka za položajem predvajanja - + Reloop And Stop Ponovi zanko in ustavi - + Enable loop, jump to Loop In point, and stop Vklopi zanko, skoči na točko V zanko in ustavi - + Halve the loop length Razpolovi dolžino zanke - + Double the loop length Podvoji dolžino zanke - + Beat Jump / Loop Move Skok po ritmu / premakni zanko - + Jump / Move Loop Forward %1 Beats Skok /premakni zanko naprej za %1 dob - + Jump / Move Loop Backward %1 Beats Skok /premakni zanko nazaj za %1 dob - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats Premakni zanko naprej za %1 dobali, če je zanka vklopljena, premakni zanko naprej za %1 dob - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats Premakni zanko nazaj za %1 dobali, če je zanka vklopljena, premakni zanko nazaj za %1 dob - + Beat Jump / Loop Move Forward Selected Beats Skok po ritmu / premakni zanko naprej za izbrano število dob - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats Skoči naprej za izbrano število dob ali, če je vklopljena zanka, premakni zanko naprej za izbrano število dob. - + Beat Jump / Loop Move Backward Selected Beats Skok po ritmu / premakni zanko nazaj za izbrano število dob - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats Skoči nazaj za izbrano število dob ali, če je vklopljena zanka, premakni zanko nazaj za izbrano število dob - + Beat Jump / Loop Move Forward Skok po ritmu / premakni zanko naprej - + Beat Jump / Loop Move Backward Skok po ritmu / premakni zanko nazaj - + Loop Move Forward Premakni zanko naprej - + Loop Move Backward Premakni zanko nazaj - + Navigation Navigacija - + Move up Pomik gor - + Equivalent to pressing the UP key on the keyboard Ustreza tipki GOR na tipkovnici. - + Move down Pomik dol - + Equivalent to pressing the DOWN key on the keyboard Ustreza tipki DOL na tipkovnici - + Move up/down Pomik gor/dol - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys Vertikalni pomik z uporabo vrtljivega gumba, kar ustreza tipkama GOR/DOL - + Scroll Up Drsenje gor - + Equivalent to pressing the PAGE UP key on the keyboard Ustreza tipki PAGE UP na tipkovnici - + Scroll Down Drsenje dol - + Equivalent to pressing the PAGE DOWN key on the keyboard Ustreza tipki PAGE DOWN na tipkovnici - + Scroll up/down Drsenje gor/dol - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys Vertikalno drsenje z uporabo vrtljivega gumba, kar ustreza tipkama PGUP/PGDN - + Move left Pomik levo - + Equivalent to pressing the LEFT key on the keyboard Ustreza tipki LEVO na tipkovnici - + Move right Pomik desno - + Equivalent to pressing the RIGHT key on the keyboard Ustreza tipki DESNO na tipkovnici - + Move left/right Pomik levo/desno - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys Horizontalni pomik z uporabo vrtljivega gumba, kar ustreza tipkama LEVO/DESNO - + Move focus to right pane Premakni fokus na desni pano - + Equivalent to pressing the TAB key on the keyboard Ustreza tipki TAB na tipkovnici - + Move focus to left pane Premakni fokus na levi pano - + Equivalent to pressing the SHIFT+TAB key on the keyboard Ustreza tipkama SHIFT+TAB na tipkovnici - + Move focus to right/left pane Premakni fokus na levi/desni pano - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys Premik fokusa z uporabo vrtljivega gumba, kar ustreza tipkam TAB/SHIFT+TAB - + Go to the currently selected item Pojdi na trenutno izbran element - + Choose the currently selected item and advance forward one pane if appropriate Izbere trenutno označen element in nadaljuje en pano naprej, če je to ustrezno - + Load Track and Play Naloži skladbo in predvajaj - + Add to Auto DJ Queue (replace) Dodaj v zaporedje samodejnega DJ-a (zamenjaj) - + Replace Auto DJ Queue with selected tracks - Zamenjajo seznam samodejnega DJ-a z označenimi skaldbami + Zamenjaj seznam samodejnega DJ-a z označenimi skladbami - + Select next search history Izberi naslednje zgodovino iskanj - + Selects the next search history entry Izbere naslednji zapis v zgodovini iskanj - + Select previous search history Izberi prejšnjo zgodovino iskanj - + Selects the previous search history entry Izbere prejšnji zapis v zgodovini iskanj - + Move selected search entry Premakni izbrani iskalni vnos - + Moves the selected search history item into given direction and steps Premakne izbrani predmet v zgodovini iskanj v izbrano smer za izbrano število korakov - + Deck %1 Quick Effect Enable Button Gumb za vklop hitrega učinka za predvajalnik %1 - + Quick Effect Enable Button Gumb za vklop hitrega učinka - + Enable or disable effect processing Vklopi ali izklopi delovanje učinka - + Super Knob (control effects' Meta Knobs) Super regulator (nadzoruje Meta regulator učinka) - + Mix Mode Toggle Preklapljanje načina miksanja - + Toggle effect unit between D/W and D+W modes Preklapljaj način učinka med D/W in D+W - + Next chain preset Naslednja predloga v verigi - + Previous Chain Predhodna veriga - + Previous chain preset Prejšnja predloga v verigi - + Next/Previous Chain Naslednja/predhodna veriga - + Next or previous chain preset Naslednja ali prejšnja predloga v verigi - - + + Show Effect Parameters Prikaži parametre učinka - + Effect Unit Assignment Določitev učinka - + Meta Knob Meta-regulator - + Effect Meta Knob (control linked effect parameters) Meta-regulator učinka (kontrola povezanih parametrov učinka) - + Meta Knob Mode Način meta-regulatorja - + Set how linked effect parameters change when turning the Meta Knob. Določi kako se spreminjajo povezani parametri učinka, kadar vrtimo meta-regulator. - + Meta Knob Mode Invert Obrnjen meta-regulator - + Invert how linked effect parameters change when turning the Meta Knob. Obrne oz. invertira spreminjanje povezanih parametrov učinka, ko vrtimo meta-regulator. - - + + Button Parameter Value Vrednost parametra gumba - + Microphone / Auxiliary Microphone / pomožno AUX vodilo - + Microphone On/Off Mikrofon vklop/izklop - + Microphone on/off Vklopi/izklopi mikrofon - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) Preklapljanje med načini reduciranja mikrofona (OFF, AUTO, MANUAL) - + Auxiliary On/Off Pomožno AUX vodilo Vklop/izklop - + Auxiliary on/off Pomožno AUX vodilo vklop/izklop - + Auto DJ Samodejni DJ - + Auto DJ Shuffle Samodejni DJ - premešaj - + Auto DJ Skip Next Samodejni DJ - preskoči naslednjo - + Auto DJ Add Random Track V Samodejni DJ dodaj naključno skladbo - + Add a random track to the Auto DJ queue Dodajanje naključne skladbe v čakalno vrsto Samodejnega DJ-a - + Auto DJ Fade To Next Samodejni DJ - prelji v naslednjo - + Trigger the transition to the next track Sproži prelivanje v naslednjo skladbo - + User Interface Uporabniški vmesnik - + Samplers Show/Hide Vzorčevalniki prikaži/skrij - + Show/hide the sampler section Prikaži/skrij razdelek z vzorčevalniki - + Start/Stop Live Broadcasting Začni/ustavi oddajanje v živo - + Stream your mix over the Internet. Prenašajte svoj miks pretočno preko spleta. - + Start/stop recording your mix. Začni/ustavi snemanje miksa. - - + + Samplers Vzorčevalniki - + Vinyl Control Show/Hide Gramofonsko upravljanje prikaži/skrij - + Show/hide the vinyl control section Prikaži/skrij razdelek za gramofonsko upravljanje - + Preview Deck Show/Hide Predogled prikaži/skrij - + Show/hide the preview deck Prikaže ali skrije predvajalnik za predogled - + Toggle 4 Decks Preklopi 4 predvajalnike - + Switches between showing 2 decks and 4 decks. Preklpalja med prikazom 2 ali 4 predvajalnikov. - + Cover Art Show/Hide (Decks) Naslovnica prikaži/skrij (predvajalniki) - + Show/hide cover art in the main decks Prikaži/skrij naslovnico v glavnih predvajalnikih - + Vinyl Spinner Show/Hide Vrtenje gramofona prikaži/skrij - + Show/hide spinning vinyl widget Prikaži ali skrij virtualni garmofon - + Vinyl Spinners Show/Hide (All Decks) Vrtenje gramofonov prikaži/skrij - + Show/Hide all spinnies Prikaži/skrij vrtenje za vse gramofone - + Toggle Waveforms Preklop valovnih oblik - + Show/hide the scrolling waveforms. Prikaži/skrij pomikajoče se valovne oblike - + Waveform zoom - Valovna oblika zumiraj + Valovna oblika povečava - + Waveform Zoom Valovna oblika povečava - + Zoom waveform in - Zumiraj v valovno obliko + Približaj valovno obliko - + Waveform Zoom In - Valovna oblika vzumiraj + Valovna oblika približaj - + Zoom waveform out - Odzumiraj valovno obliko + Oddalji valovno obliko - + Star Rating Up Povečaj število zvezdic - + Increase the track rating by one star Poveča oceno skladbe za eno zvezdico - + Star Rating Down Zmanjšaj število zvezdic - + Decrease the track rating by one star Zmanjša oceno skladbe za eno zvezdico @@ -3160,32 +3233,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. Funkcionalnost, ki jo ponuja to mapiranje kontrolerja, bo onemogočena, dokler težava ne bo razrešena. - + You can ignore this error for this session but you may experience erratic behavior. - To napako lahko ignorirate za čas te seanse, vendar lahko to povzroči nepričakovano obnašanje programa. + To napako lahko ignorirate za čas te seje, vendar lahko to povzroči nepričakovano obnašanje programa. - + Try to recover by resetting your controller. Poskusite odpraviti napako z restiranjem kontrolerja. - + Controller Mapping Error Napaka v mapiranju kontrolerja - + The mapping for your controller "%1" is not working properly. Mapiranje za kontroler "%1" ne deluje pravilno. - + The script code needs to be fixed. Kodo skripte je potrebno popraviti. @@ -3221,133 +3294,133 @@ CrateFeature - + Remove Odstrani - - + + Create New Crate Ustvari nov zaboj - + Rename Preimenuj - - + + Lock Zakleni - + Export Crate as Playlist Izvozi zaboj kot seznam predvajanja - + Export Track Files Izvozi datoteke skladb - + Duplicate Podvoji - + Analyze entire Crate Analiziraj celoten zaboj - + Auto DJ Track Source Samodejni DJ - izvor skladbe - + Enter new name for crate: Vnesi novo ime zaboja: - - + + Crates Zaboji - - + + Import Crate Uvozi zaboj - + Export Crate Izvozi zaboj - + Unlock Odkleni - + An unknown error occurred while creating crate: Neznana napaka pri ustvarjanju zaboja: - + Rename Crate Preimenuj zaboj - - + + Export to Engine Prime Izvozi v Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. Ustvarite zaboj za svoj naslednji nastop - za najljubše electrohouse skladbe ali za najbolj priljubljene komade. - - + + Renaming Crate Failed Premineovanje zaboja ni uspelo - + Crate Creation Failed Ustvarjanje zaboja ni uspelo - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U seznam predvajanja (*.m3u);;M3U8 seznam predvajanja (*.m3u8);;PLS seznam predvajanja (*.pls);;z vejicami ločen tekst (*.csv);;berljiv tekst (*.txt) - + Crates are a great way to help organize the music you want to DJ with. Zaboji so odlična pomoč pri organizaciji glasbe, ki jo bo vrtel DJ. - + Crates let you organize your music however you'd like! Zaboji omogočajo poljuben način razvrščanja in organizacije! - + A crate cannot have a blank name. Zaboj ne more biti brez imena. - + A crate by that name already exists. Zaboj s tem imenom že obstaja. @@ -3417,39 +3490,39 @@ DlgAbout - + Mixxx %1.%2 Development Team - + Mixxx %1.%2 razvojna skupina - + With contributions from: Prispevali so: - + And special thanks to: Posebna zahvala: - + Past Developers Bivši razvijalci - + Past Contributors Bivši sodelujoči - + Official Website Uradna spletna stran - + Donate - + Doniraj @@ -3469,17 +3542,17 @@ Date: - + Dtum: Git Version: - + Git različica: Platform: - + Platforma: @@ -4043,7 +4116,7 @@ Večinoma ustrvarja bolj kakovostno ritmično mrežo, vendar ne deluje dobro s s Keywheel - + Kvintni krog @@ -4198,12 +4271,12 @@ Večinoma ustrvarja bolj kakovostno ritmično mrežo, vendar ne deluje dobro s s HE-AAC - + HE-AAC HE-AACv2 - + HE-AACv2 @@ -4712,7 +4785,7 @@ Potrdim nastavitve in nadaljujem? <font color='#BB0000'><b>If you use this mapping your controller may not work correctly. Please select another mapping or disable the controller.</b></font><br><br>This mapping was designed for a newer Mixxx Controller Engine and cannot be used on your current Mixxx installation.<br>Your Mixxx installation has Controller Engine version %1. This mapping requires a Controller Engine version >= %2.<br><br>For more information visit the wiki page on <a href='https://mixxx.org/wiki/doku.php/controller_engine_versions'>Controller Engine Versions</a>. - + <font color='#BB0000'><b>Če boste uporabili to mapiranje, kontroler morda ne bo deloval pravilno. Izberite drugo mapiranje ali onemogočite kontroler.</b></font><br><br>To mapiranje je bilo ustvarjeno za novejši Mixxx pogon za kontrolerje in ga ni mogoče uporabiti v trenutni Mixxx namestitvi.<br>Vaša Mixxx namestitev uporablja pogon različice %1. To mapiranje potrebuje pogon različice >=%2.<br><br>Več podatkov o tem se nahaja na wiki strani <a href='https://mixxx.org/wiki/doku.php/controller_engine_versions'>Različice pogonov za kontrolerje</a>. @@ -4915,32 +4988,32 @@ Potrdim nastavitve in nadaljujem? DlgPrefControlsDlg - + Skin Preobleka - + Tool tips Namigi za orodja - + Select from different color schemes of a skin if available. Izberite med različnimi barvnim shemami preobleke, če so na voljo. - + Color scheme Barvna shema - + Locales determine country and language specific settings. Lokalno določi posebne nastavitve za državo in jezik. - + Locale Lokalno @@ -4950,52 +5023,42 @@ Potrdim nastavitve in nadaljujem? Nastavitve vmesnika - + HiDPI / Retina scaling HIDPI / Retina izboljšava - + Change the size of text, buttons, and other items. Spremeni velikost teksta, gumbov in drugih elementov. - - Adopt scale factor from the operating system - Prevzemi faktor povečave od operacijskega sistema - - - - Auto Scaling - Samodejna povečava - - - + Screen saver Ohranjevalnik zaslona - + Start in full-screen mode Zaženi v celozaslonskem načinu - + Full-screen mode Celozaslonski način - + Off Izklopljeno - + Library only Zgolj zbirka - + Library and Skin Zbirka in preobleka @@ -5468,7 +5531,7 @@ Vedno lahko skladbe tudi povlečete in sputite, da podvojite nek predvajalnik. Main EQ - + Glavni izravnalnik @@ -5488,22 +5551,22 @@ Vedno lahko skladbe tudi povlečete in sputite, da podvojite nek predvajalnik. Only allow EQ knobs to control EQ-specific effects - Omeji EQ regulatorje, da kontrolirajo zgolj učinke, ki so vezani na izravnalnik. + Omeji regulatorje izravnalnika, da kontrolirajo zgolj učinke, ki so vezani na izravnalnik. Uncheck to allow any effect to be loaded into the EQ knobs. - Odznačite, da dovolite uporabo kateregakoli učinka z EQ regulatorji. + Odznačite, da dovolite uporabo kateregakoli učinka z regulatorji izravnalnika. Use the same EQ filter for all decks - Uporabi ist izravnalni EQ filter za vse predvajalnike + Uporabi isti izravnalni filter za vse predvajalnike Uncheck to allow different decks to use different EQ effects. - Odznačite, da omogočite različnim predvajalnikom uporabo različnih EQ učinkov. + Odznačite, da omogočite različnim predvajalnikom uporabo različnih izravnalnih učinkov. @@ -5549,7 +5612,7 @@ Vedno lahko skladbe tudi povlečete in sputite, da podvojite nek predvajalnik. Bypass EQ effect processing - Obvod delovanja EQ učinka + Obvod delovanja izravnalnega učinka @@ -5629,39 +5692,39 @@ Vedno lahko skladbe tudi povlečete in sputite, da podvojite nek predvajalnik. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. Najmanjša velikost izbrane preobleke je večja od ločljivosti vašega zaslona. - + Allow screensaver to run Dovoli zagon ohranjevalniku zaslona - + Prevent screensaver from running Prepreči delovanje ohranjevalniku zaslona - + Prevent screensaver while playing Prepreči ohranjevalnik zaslona med predvajanjem - + This skin does not support color schemes Ta preobleka ne podpira barvnih shem - + Information Informacija - - Mixxx must be restarted before the new locale setting will take effect. - Mixxx je potrebno ponovno zagnati, da bi nove lokalne nastavitve začele delovati. + + Mixxx must be restarted before the new locale or scaling settings will take effect. + @@ -5880,62 +5943,62 @@ in vam omogoča, da prilagodite njihovo višino za harmonično miksanje. DlgPrefLibrary - + Music Directory Added Mapa z glasbo je bila dodana - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? Dodali ste enega ali več glasbenih direktorijev. Skladbe v teh direktorijih ne bodo na voljo dokler ne boste ponovno pregledali vaše zbirke. Ali bi radi takoj zagnali ponoven pregled? - + Scan Preglej - + Choose a music directory Izberi mapo z glasbo - + Confirm Directory Removal Potrdi odstranitev mape - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. Mixxx ne bo več iskal novih skladb v tej mapi. Kaj bi radi storili s skladbami iz te mape in njenih podmap? <ul><li>Skril vse skladbe iz te mape in njenih podmap.</li><li>Za stalno izbrisal iz Mixxxa vse metapodatke za te skladbe. </li><li>Pustil skladbe brez sprememb v zbirki.</li></ul>Skril skladbe, tako da se ohranijo metapodatki, ki se lahko kasneje spet dodajo. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. Metapodatki so podrobnosti o skladbi (umetnik, naslov, število predvajanj, itd.), kot tudi ritmična mreža, hotcue iztočnice in zanke. Ta izbira se nanaša le na Mixxx zbirko. Nobena datoteka na disku se ne spremeni ali izbriše. - + Hide Tracks Skrij skladbe - + Delete Track Metadata Izbriši matapodatke za skladbo - + Leave Tracks Unchanged - Ohrani skaldbe nespremenjene + Ohrani skladbe nespremenjene - + Relink music directory to new location Preveži glasbeno mapo z novo lokacijo - + Select Library Font Izberi tipografijo zbirke @@ -5996,7 +6059,7 @@ in vam omogoča, da prilagodite njihovo višino za harmonično miksanje. Write Serato Metadata to files (experimental) - + Zapiši Serato metapodatke v datoteko (eksperimentalno) @@ -6011,22 +6074,22 @@ in vam omogoča, da prilagodite njihovo višino za harmonično miksanje. Settings Folder - + Mapa z nastavitvami The Mixxx settings folder contains the library database, various configuration files, log files, track analysis data, as well as custom controller mappings. - + Nastavitve Mixxx vsebujejo podatkovno bazo knjižnice, različne konfiguracijske datoteke, zabeležke, podatke o analizi skladb, kot tudi mapiranja lastnih kontrolerjev. Edit those files only if you know what you are doing and only while Mixxx is not running. - + Te datoteke spremenite le, če veste kaj počnete in če Mixxx ni zagnan. Open Mixxx Settings Folder - + Odprite Mixxx mapo z nastavitvami @@ -6102,7 +6165,7 @@ in vam omogoča, da prilagodite njihovo višino za harmonično miksanje. Add track to Auto DJ queue (bottom) - Dodaj skaldbo v Auto DJ zaporedje (na dno) + Dodaj skladbo v Samodejni DJ zaporedje (na dno) @@ -6417,12 +6480,12 @@ in vam omogoča, da prilagodite njihovo višino za harmonično miksanje. Recording Files - + Snemalne datoteke Directory: - + Mapa: @@ -6498,7 +6561,7 @@ in vam omogoča, da prilagodite njihovo višino za harmonično miksanje. For tracks with ReplayGain, adjust the target loudness to this LUFS value (Loudness Units relative to Full Scale). - Za skaldbe z ReplayGain prilagodi ciljno glasnost na LUFS vrednost (Loudness Units relative to Full Scale) + Za skladbe z ReplayGain prilagodi ciljno glasnost na LUFS vrednost (Loudness Units relative to Full Scale) @@ -6941,32 +7004,32 @@ Ciljna glasnost je približna in predpostavlja, da ostaneta predojačitev in izh DlgPrefWaveform - + Filtered Filtrirano - + HSV HSV - + RGB RGB - + OpenGL not available OpenGL ni na voljo - + dropped frames izpuščenih sličic - + Cached waveforms occupy %1 MiB on disk. Predpomnjene valovne oblike na disku zasedajo %1 MiB. @@ -7007,7 +7070,7 @@ Ciljna glasnost je približna in predpostavlja, da ostaneta predojačitev in izh Default zoom level Waveform zoom - Privzeta stopnja zuma + Privzeta stopnja povečave @@ -7106,12 +7169,12 @@ Izbirajte med različnimi vrstami prikaza valovne oblike, ki se primarno razliku Synchronize zoom level across all waveform displays. - Sinhronizacija povečave vseh prikazovalnikov zvoka. + Sinhronizacija povečave vseh prikazovalnikov valovne oblike. Synchronize zoom level across all waveforms - Sinhroniziraj povečavo vseh prikazov zvoka + Sinhroniziraj povečavo vseh prikazov valovne oblike @@ -7121,7 +7184,7 @@ Izbirajte med različnimi vrstami prikaza valovne oblike, ki se primarno razliku Mixxx caches the waveforms of your tracks on disk the first time you load a track. This reduces CPU usage when you are playing live but requires extra disk space. - Mixxx zapiše valovne oblike vaših skaldb na disk prvič, ko jih naložite. S tem se zmanjaš obremenitev procesorja, kadar predvajate v živo, a se poveča poraba prostora na disku. + Mixxx zapiše valovne oblike vaših skladb na disk prvič, ko jih naložite. S tem se zmanjaš obremenitev procesorja, kadar predvajate v živo, a se poveča poraba prostora na disku. @@ -7182,74 +7245,74 @@ Izbirajte med različnimi vrstami prikaza valovne oblike, ki se primarno razliku Zbirka - + Interface Vmesnik - + Waveforms Valovne oblike - + Auto DJ Samodejni DJ - + Equalizers Izravnalniki - + Decks Predvajalnik - + Colors BarveBarve - + Crossfader Navzkrižni drsnik - + Effects Učinki - + LV2 Plugins LV2 vtičniki - + Recording Snemanje - + Beat Detection Prepoznavanje ritma - + Key Detection Prepoznavanje tonalitete - + Normalization Normalizacija - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> - + <font color='#BB0000'><b>Nekatere nastavitvene strani vsebujejo napake. Za potrditev sprememb najprej odpravite težave.</b></font> @@ -7257,12 +7320,12 @@ Izbirajte med različnimi vrstami prikaza valovne oblike, ki se primarno razliku Gramofonsko upravljanje - + Live Broadcasting Oddajanje v živo - + Modplug Decoder Modplug dekodirnik @@ -7403,123 +7466,123 @@ Izbirajte med različnimi vrstami prikaza valovne oblike, ki se primarno razliku Izberi najboljše možno ujemanje - - + + Track Skladba - - + + Year Leto - + Title Naslov - - + + Artist Izvajalec - - + + Album Album - + Album Artist Izvajalec albuma - + Fetching track data from the MusicBrainz database Pridobi podatke o skladbi iz podatkovne baze MusicBrainz. - + Mixxx could not find this track in the MusicBrainz database. Mixx ni našel podatkovne baze MusicBrainz. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. Pridobi API ključ - + Submit Submits audio fingerprints to the MusicBrainz database. Posreduj - + New Column Nov stolpec - + New Item Nov element - + &Previous &Prejišnji - + &Next &Naslednji - + &Apply &Potrdi - + &Close &Zapri - + Status: %1 Status: %1 - + HTTP Status: %1 HTTP Status: %1 - + Code: %1 Koda: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx se iz neznanega razloga ne more povezati na %1. - + Mixxx can't connect to %1. Mixxx se ne more povezati na %1. - + Original tags Originalne oznake - + Suggested tags Predlagane oznake @@ -7913,17 +7976,17 @@ Večinoma ustrvarja bolj kakovostno ritmično mrežo, vendar ne deluje dobro s s EngineBuffer - + Soundtouch (faster) Soundtouch (hitreje) - + Rubberband (better) Rubberband (bolje) - + Unknown (bad value) Neznano (napačna vrednost) @@ -8024,38 +8087,38 @@ Večinoma ustrvarja bolj kakovostno ritmično mrežo, vendar ne deluje dobro s s ITunesFeature - + iTunes iTunes - - + + Select your iTunes library Izberite svojo iTunes zbirko - + (loading) iTunes (nalaganje) iTunes - + Use Default Library Uporabi privzeto zbirko - + Choose Library... Izberi zbirko... - + Error Loading iTunes Library Napaka pri nalaganju iTunes zbirke - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. Zgodila se je napaka pri nalaganju vaše iTunes zbirke. Nekatere iTunes skladbe ali seznami predvajanja se morda niso naložili. @@ -8063,13 +8126,13 @@ Večinoma ustrvarja bolj kakovostno ritmično mrežo, vendar ne deluje dobro s s LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. Vklopljen je varni način - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8078,57 +8141,57 @@ support. OpenGL. - + activate aktiviraj - + toggle preklopi - + right desno - + left levo - + right small desno malo - + left small levo malo - + up gor - + down dol - + up small gor malo - + down small dol malo - + Shortcut Bližnjica @@ -8149,22 +8212,22 @@ OpenGL. LibraryFeature - + Import Playlist Uvozi seznam predvajanja - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Datoteke seznama predvajanja (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? Prepišem datoteko? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8178,27 +8241,27 @@ Ali bi jo res radi prepisali? LibraryScannerDlg - + Library Scanner Pregledovalnik zbirke - + It's taking Mixxx a minute to scan your music library, please wait... Mixxx potrebuje kakšno minuto za pregled zbirke. Prosimo počakajte... - + Cancel Prekliči - + Scanning: Pregledujem: - + Scanning cover art (safe to cancel) Pregledujem naslovnice (varno za prekinitev) @@ -8315,185 +8378,185 @@ Ali bi jo res radi prepisali? MixxxMainWindow - + Sound Device Busy Zvočna naprava je v rabi - + <b>Retry</b> after closing the other application or reconnecting a sound device <b>Ponovni poskus</b> po zaprtju drugih programov ali ponovne priključitve zvočne naprave - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. <b>Rekonfiguriraj</b> nastavitve zvočne naprave v Mixxx. - - + + Get <b>Help</b> from the Mixxx Wiki. Poišči <b>pomoč</b> z Mixxx Wiki - - - + + + <b>Exit</b> Mixxx. <b>Zapusti</b> Mixxx - + Retry Poskusi znova - + skin preobleka - - + + Reconfigure Ponastavi - + Help Pomoč - - + + Exit Izhod - - + + Mixxx was unable to open all the configured sound devices. Mixxx ni mogel odpreti vseh zvočnih naprav - + Sound Device Error Napaka zvočne naprave - + <b>Retry</b> after fixing an issue <b>Ponoven poskus</b> po odpravi težave - + No Output Devices Ni izhodnih naprav - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. Mixxx je bil konfiguriran brez zvočne naprave. Procesiranje zvoka bo onemogočeno, če ni konfigurirane izhodne naprave. - + <b>Continue</b> without any outputs. <b>Nadaljuj</b> brez izhodnih naprav. - + Continue Nadaljuj - + Load track to Deck %1 Naloži skladbo v predvajalnik %1 - + Deck %1 is currently playing a track. Predvajalnik %1 trenutno predvaja skladbo - + Are you sure you want to load a new track? Ali ste prepričani, da želite naložiti novo skladbo? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. Za izbrano gramofonsko upravljanje ni izbrane vhodne naprave. Izberite najprej vhodno napravo v nastavitvah strojne opreme za zvok. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. Za ta prehod ni izbrana nobena vhodna naprava. Najprej izberite vhodno napravo v nastavitvah strojne opreme za zvok. - + There is no input device selected for this microphone. Do you want to select an input device? Za ta mikrofon ni izbrane vhodne naprave. Ali bi radi izbrali vhodno napravo? - + There is no input device selected for this auxiliary. Do you want to select an input device? Za to pomožnos vodilo ni izbrane vhodne naprave. Ali bi radi izbrali vhodno napravo? - + Error in skin file Napaka v probleki - + The selected skin cannot be loaded. Izbrane preobleke ni mogoče naložiti. - + OpenGL Direct Rendering OpenGL neposredno renderiranje - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. Na vašem računalniku ni vklopljeno strojno pospešeno neposredno upodabljanje oz. direct rendering<br><br>To pomeni, da bo prikazovanje valovnih oblik počasno<br><b>in da lahko močno obremenjuje procesor</b>. Posodobite konfiguracijo i<br>n vklopite neposredno upodabljanje ali pa izklopite <br>prikaz valovnih oblik v nastavitvah Mixxx-a, tako da izberete <br>Prazno kot valovno obliko v razdelku Vmesnik. - - - + + + Confirm Exit Zapustim? - + A deck is currently playing. Exit Mixxx? Eden od predvajalnikov trenutno predvaja. Zapustim Mixxx? - + A sampler is currently playing. Exit Mixxx? Eden od vzorčevalnikov trenutno predvaja. Zapustim Mixxx? - + The preferences window is still open. Okno z nastavitvami je še vedno odprto. - + Discard any changes and exit Mixxx? Zavržem vse spremembe in zapustim Mixxx? @@ -8566,43 +8629,43 @@ Ali bi radi izbrali vhodno napravo? PlaylistFeature - + Lock Zakleni - + Playlists Seznami predvajanja - + Unlock Odkleni - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. Seznami predvajanja so urejeni seznami skladb, ki omogočajo načrtovanje DJ setov. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. Da bi obdržali energijo publike, bo morda potrebno preskočiti katero od vaših skladb ali dodati kakšno drugo. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. Nekateri DJi ustvarijo sezname predvajanja še pred živim nastopom, spet drugi jih ustvarijo sproti. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. Če med DJanjem uporabljate seznam predvajanja, bodite pozorni na odziv publike na vaš izbor glasbe. - + Create New Playlist Ustvari nov seznam predvajanja @@ -8610,59 +8673,59 @@ Ali bi radi izbrali vhodno napravo? QMessageBox - + Upgrading Mixxx Posodobitev Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? Mixxx sedaj podpira naslovnice. Želite pregledati zbirko, da jih najdete? - + Scan Preglej - + Later Kasneje - + Upgrading Mixxx from v1.9.x/1.10.x. Posodobitev Mixxx iz 1.9.x/1.10.x - + Mixxx has a new and improved beat detector. Mixxx ima nov, izboljšan detektor ritma. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. Ko naložite skladbe, jih lahko MIxxx ponovno analizira in ustvari nove, boljše ritmične mreže. To bo izboljšalo zanesljivost samodejne sinhronizacije ritma in zank. - + This does not affect saved cues, hotcues, playlists, or crates. To ne vpliva na shranjene cue iztočnice, hotcue iztočnice, sezname predvajanja ali zaboje. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. Če ne želite, da Mixxx na novo analizira vaše skladbe, izberite "Obdrži trenutne ritmične mreže". To nastavitev lahko kadarkoli spremenite v razdelku "Prepoznavanje ritma" v nastavitvah. - + Keep Current Beatgrids Obdrži trenutne ritmične mreže - + Generate New Beatgrids Generiraj novo ritmične mreže @@ -8846,7 +8909,7 @@ Do you want to scan your library for cover files now? Opus enkoder ne podpira drugih frekvenc vzorčenja kot 48 kHz. Uporabite 48000 Hz ali v nastavitvah "Strojna oprema za zvok" ali uporabite drug enkoder. - + Encoder Kodirnik @@ -8862,7 +8925,11 @@ Do you want to scan your library for cover files now? %1 After clicking OK, you will see a file picker. Please select '%2' to proceed or click Cancel if you don't want to grant Mixxx access and abort this action. - + Za dostop do naslednje lokacije je potrebna vaša privolitev: + +%1 + +Po pritsku na V redu se bo prikazal izbrnik datotek. Izberite '%2' za nadaljevanje ali Prekini, če Mixxxu ne želite dovoliti dostopa in želite prekiniti to dejanje. @@ -10001,36 +10068,36 @@ Popolnoma na desni: konec periode efekta Prelivaj šum s čistim signalom - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + <html>Mixxx ne more snemati ali pretakati v AAC ali HE-AAC brez FDK-AAC kodirnika. Za pretakanje ali snemanje v AAC ali AAC+ je potrebno prenesti <b>libfdk-aac</b> in ga namestiti na sistem. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. - + Nameščena kodirna knjižnica AAC ne podpira HE-AAC, zgolj AAC. V nastavitvah izberite drugačen kodirni format. MP3 encoding is not supported. Lame could not be initialized - + MP3 kodiranje ni podprto. Lame ni bilo mogoče zagnati. OGG recording is not supported. OGG/Vorbis library could not be initialized. - + OGG snemanje ni podprto. OGG/Vorvis knjižnice ni bilo mogoče zagnati. encoder failure - + napaka kodirnika Failed to apply the selected settings. - + Ni bilo mogoče uporabiti izbranih nastavitev. @@ -10144,54 +10211,54 @@ Popolnoma na desni: konec periode efekta RekordboxFeature - - - + + + Rekordbox Rekordbox - + Playlists Seznami predvajanja - + Folders Mape - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: Bere podatkovne baze, ki so bile izvožene za Pioneer CDJ / XDJ predvajalnike z uporabo Rekordbox načina izvažanja. <br/> Rekrodbox lahko izvaža le na USB ali SD naprave s FAT ali HFS datotečnim sistemom. <br/>Mixxx zna brati podatkovne baze s poljubne naprave, ki vsebuje mapi s podatkovno bazo (<tt>PIONEER</tt> in <tt>Contents</tt>).<br/>Podatkovne baze, ki so bile na zunanji nosilec premaknjene preko <br/><i>Preferences > Advanced > Database management ne bodo delovale</i>.<br/><br/>Berejo se naslednji podatki: - + Hot cues Hotcue iztočnice - + Loops (only the first loop is currently usable in Mixxx) Zanke (Mixx lahko trenutno uporablja le prvo zanko) - + Check for attached Rekordbox USB / SD devices (refresh) Išči priključene Rekordbox USB/SD nosilce (osveži) - + Beatgrids Rimitčne mreže - + Memory cues Pomnilniške iztočnice - + (loading) Rekordbox (nalaganje) Rekordbox @@ -10200,7 +10267,7 @@ Popolnoma na desni: konec periode efekta RhythmboxFeature - + Rhythmbox Rhythmbox @@ -10251,34 +10318,34 @@ Popolnoma na desni: konec periode efekta SeratoFeature - - - + + + Serato Serato - + Reads the following from the Serato Music directory and removable devices: Iz imenika Serato in odstranljivih nosilcev prebere naslednje: - + Tracks Skladbe - + Crates Zaboji - + Check for Serato databases (refresh) Poišči podatkovne baze Serato (osveži) - + (loading) Serato (nalagam) Serato @@ -10301,12 +10368,12 @@ Popolnoma na desni: konec periode efekta Zgodovina - + Unlock Odkleni - + Lock Zakleni @@ -10407,17 +10474,17 @@ Popolnoma na desni: konec periode efekta Unknown stream encoding format! - + Neznan format kodiranja pretoka! Use a libshout version with %1 enabled - + Uporabite libshout različico z vklopljenim %1 Error setting stream encoding format! - + Napaka pri nastavljanju formata kodiranja pretoka! @@ -10447,7 +10514,7 @@ Popolnoma na desni: konec periode efekta Error: Shoutcast only supports MP3 and AAC encoders - + Napaka: Shoutcast podpira le MP3 in AAC kodirnike @@ -10628,7 +10695,7 @@ Popolnoma na desni: konec periode efekta Double-click - + Dvojni klik @@ -10688,12 +10755,12 @@ Popolnoma na desni: konec periode efekta Waveform Zoom Out - Valovna oblika odzumiraj + Valovna oblika oddalji Waveform Zoom In - Valovna oblika vzumiraj + Valovna oblika približaj @@ -11265,6 +11332,31 @@ Popolnoma na desni: konec periode efekta Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. Pošlje zvok izbranih kanalov na izhod za slušalke, ki so izbrane v Nastavitve -> Strojna oprema za zvok. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -11273,12 +11365,12 @@ Popolnoma na desni: konec periode efekta Tempo Range Display - + Prikaz razpona tempa Displays the current range of the tempo slider. - + Prikaže trenutni razpon drsnika tempa. @@ -11288,7 +11380,7 @@ Popolnoma na desni: konec periode efekta Opens separate artwork viewer. - + Odpre ločen prikaz naslovnic. @@ -11313,47 +11405,47 @@ Popolnoma na desni: konec periode efekta Main Output Peak Indicator - + Prikazovalnik prebijanja za glavni izhod Indicates when the signal on the main output is clipping, - + Opozarja na prebijanje signala na glavnem izhodu Main Output L Peak Indicator - + Prikazovalnik prebijanja za levi kanal glavnega izhoda Indicates when the left signal on the main output is clipping, - + Opozarja na prebijanje signala za levi kanal glavnega izhoda. Main Output R Peak Indicator - + Prikazovalnik prebijanja za desni kanal glavnega izhoda Indicates when the right signal on the main output is clipping, - + Opozarja na prebijanje signala za desni kanal glavnega izhoda. Main Channel L Volume Meter - + Merilnik glasnosti za levi glavni kanal Shows the current volume for the left channel of the main output. - + Prikazuje trenutno glasnost levega kanala glavnega izhoda. Shows the current volume for the right channel of the main output. - + Prikazuje trenutno glasnost desnega kanala glavnega izhoda. @@ -11365,27 +11457,27 @@ Popolnoma na desni: konec periode efekta Adjusts the main output gain. - + Prilagodi jakost glavnega izhoda. Determines the main output by fading between the left and right channels. - + Določi glavni izhod s prehajanjem med levim in desnim kanalom. Adjusts the left/right channel balance on the main output. - + Prilagodi ravnovesje med levim in desnim kanalom za glavni izhod. Crossfades the headphone output between the main mix and cueing (PFL or Pre-Fader Listening) signal. - + Za izhod slušalk izvede križni prehod izhodom med glavnim miksom in predposlušanjem (PFL ali poslušanje pred drsnikom). If activated, the main mix signal plays in the right channel, while the cueing signal plays in the left channel. - + Če je aktiviran se signal glavnega miska predvaja v desnem kanalu, med tem ko se signal za predposlušanje predvaja v levem kanalu. @@ -11420,7 +11512,7 @@ Popolnoma na desni: konec periode efekta mix microphone input into the main output. - + Meša mikrofonski vhod v glavni izhod. @@ -11482,17 +11574,17 @@ Popolnoma na desni: konec periode efekta Mutes the selected channel's audio in the main output. - + Utiša zvok izbranega kanala za glavni izhod. Main mix enable - + Vklop glavnega miksa Hold or short click for latching to mix this input into the main output. - + Držite ali na kratko kliknite za dodajanje tega vhoda v glavni izhod. @@ -11765,7 +11857,7 @@ To se uporablja za spreminjanje zvoka zgolj z učinki obogatenega signala (wet) Route the main mix through this effect unit. - + Usmeri glavni miks skozi to efekt-enoto. @@ -12410,12 +12502,12 @@ To se uporablja za spreminjanje zvoka zgolj z učinki obogatenega signala (wet) Opens the track properties editor - + Odpre urejevalnik lastnosti skladb Opens the track context menu. - + Odpri kontekstualni meni skladbe @@ -12442,11 +12534,6 @@ To se uporablja za spreminjanje zvoka zgolj z učinki obogatenega signala (wet) Old Synchronize Stara sinhronizacija - - - (This skin should be updated to use Master Sync!) - (Ta preobleka bi morala biti posodobljena, da bi lahko uporabljali master sinhronizacijo!) - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12462,16 +12549,6 @@ To se uporablja za spreminjanje zvoka zgolj z učinki obogatenega signala (wet) Decks can't sync to samplers and samplers can only sync to decks. Predvajalniki se ne morejo sinhronizirati glede na vzorčevalnike in vzorčevalniki se lahko sinhornizirajo le glede na predvajalnike. - - - Enable Master Sync - Vklopi glavno sinhronizacijo - - - - Tap to sync the tempo to other playing tracks or the master clock. - Tapkaj za sinhronizacijo tempa glede na druge predvajane skladbe ali glavno uro. - Hold for at least a second to enable sync lock for this deck. @@ -12487,16 +12564,6 @@ To se uporablja za spreminjanje zvoka zgolj z učinki obogatenega signala (wet) Resets the key to the original track key. Ponastavi tonaliteto na orignalno tonaliteto skladbe. - - - Enable Sync Clock Master - Vklopi glavno uro za sinhronizacijo - - - - When enabled, this device will serve as the master clock for all other decks. - Če je vklopljeno, bo ta naprava služila kot glavna ura za vse ostale predvajalnike. - Speed Control @@ -13050,22 +13117,22 @@ To se uporablja za spreminjanje zvoka zgolj z učinki obogatenega signala (wet) TraktorFeature - + Traktor Traktor - + (loading) Traktor (nalagam) Traktor - + Error Loading Traktor Library Napaka pri nalaganju Traktor zbirke - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. Pri nalaganju Traktor zbirke se je zgodila napaka. Nekatere Traktor skladbe ali seznami predvajanja se morda niso naložili. @@ -13286,12 +13353,12 @@ To se uporablja za spreminjanje zvoka zgolj z učinki obogatenega signala (wet) E&xport Library to Engine Prime - + &Izvozi knjižnico v Engine Prime Export the library to the Engine Prime format - + Izvozi knjižnico v Engine Prime format @@ -13604,19 +13671,19 @@ To se uporablja za spreminjanje zvoka zgolj z učinki obogatenega signala (wet) Show Keywheel menu title - + Prikaži kvintni krog Show keywheel tooltip text - + Prikaže kvintni krog F12 Menubar|View|Show Keywheel - + F12 @@ -13677,20 +13744,20 @@ To se uporablja za spreminjanje zvoka zgolj z učinki obogatenega signala (wet) Prehod - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible Pripravljen za predvajanje, analiziram .. - - + + Loading track... Text on waveform overview when file is cached from source Nalaganje skladbe .. - + Finalizing... Text on waveform overview during finalizing of waveform analysis Zaključujem... @@ -13773,13 +13840,13 @@ To se uporablja za spreminjanje zvoka zgolj z učinki obogatenega signala (wet) Ctrl+Space - + Ctrl+Space Toggle search history Shows/hides the search history entries - + Preklopi zgodovino iskanj @@ -13798,7 +13865,7 @@ To se uporablja za spreminjanje zvoka zgolj z učinki obogatenega signala (wet) Search related Tracks - + Išči sorodne skladbe @@ -13808,7 +13875,7 @@ To se uporablja za spreminjanje zvoka zgolj z učinki obogatenega signala (wet) harmonic with %1 - + harmonične s/z %1 @@ -13818,7 +13885,7 @@ To se uporablja za spreminjanje zvoka zgolj z učinki obogatenega signala (wet) between %1 and %2 - + med %1 in %2 @@ -13861,8 +13928,8 @@ To se uporablja za spreminjanje zvoka zgolj z učinki obogatenega signala (wet) Zvrst - - Folder + + Directory @@ -14105,163 +14172,168 @@ To se uporablja za spreminjanje zvoka zgolj z učinki obogatenega signala (wet) Ponastavi barvo - + + Update ReplayGain from Deck Gain + + + + Deck %1 Predvajalnik %1 - + Sampler %1 Vzorčevalnik %1 - + Importing metadata of %n track(s) from file tags - + Uvažanje metapodatkov %n skladbe iz oznak v datotekahUvažanje metapodatkov %n skladb iz oznak v datotekahUvažanje metapodatkov %n skladb iz oznak v datotekahUvažanje metapodatkov %n skladb iz oznak v datotekah - + Marking metadata of %n track(s) to be exported into file tags - + Označevanje metapodatkov %n skladbe za izvoz v oznake datotekOznačevanje metapodatkov %n skladb za izvoz v oznake datotekOznačevanje metapodatkov %n skladb za izvoz v oznake datotekOznačevanje metapodatkov %n skladb za izvoz v oznake datotek - - + + Create New Playlist Ustvari nov seznam predvajanja - + Enter name for new playlist: Vnesi ime seznama predvajanja: - + New Playlist Nov seznam predvajanja - - - + + + Playlist Creation Failed Ustvarjanje seznama predvajanja je spodletelo - + A playlist by that name already exists. Seznam predvajanja s tem imenom že obstaja. - + A playlist cannot have a blank name. Seznam predvajanja ne more biti brez imena. - + An unknown error occurred while creating playlist: Neznana napaka pri ustvarjanju novega seznama predvajanja: - + Add to New Crate Dodaj v nov zaboj - + Scaling BPM of %n track(s) - + Povečanje BPM %n skladbePovečanje BPM %n skladbPovečanje BPM %n skladbPovečanje BPM %n skladb - + Locking BPM of %n track(s) - + Zaklepanje BPM %n skladbeZaklepanje BPM %n skladbZaklepanje BPM %n skladbZaklepanje BPM %n skladb - + Unlocking BPM of %n track(s) - + Odklepanje BPM %n skladbeOdklepanje BPM %n skladbOdklepanje BPM %n skladbOdklepanje BPM %n skladb - + Setting color of %n track(s) - + Odklepanje BPM %n skladbeOdklepanje BPM %n skladbOdklepanje BPM %n skladbDoločanje barve %n skladb - + Resetting play count of %n track(s) - + Ponastavljanje števca predvajanj %n skladbePonastavljanje števca predvajanj %n skladbPonastavljanje števca predvajanj %n skladbPonastavljanje števca predvajanj %n skladb - + Resetting beats of %n track(s) - + Ponastavljanje ritma %n skladbePonastavljanje ritma %n skladbPonastavljanje ritma %n skladbPonastavljanje ritma %n skladb - + Clearing rating of %n track(s) - + Brisanje ocen za %1 skladboBrisanje ocen za %1 skladbiBrisanje ocen za %1 skladbeBrisanje ocen za %1 skladb - + Removing main cue from %n track(s) - + Odstranjevanje glavne iztočnice %n skladbeOdstranjevanje glavne iztočnice %n skladbOdstranjevanje glavne iztočnice %n skladbOdstranjevanje glavne iztočnice %n skladb - + Removing outro cue from %n track(s) - + Odstranjevanje izstopne iztočnice %n skladbeOdstranjevanje izstopne iztočnice %n skladbOdstranjevanje izstopne iztočnice %n skladbOdstranjevanje izstopne iztočnice %n skladb - + Removing intro cue from %n track(s) - + Odstranjevanje vstopne iztočnice %n skladbeOdstranjevanje vstopne iztočnice %n skladbOdstranjevanje vstopne iztočnice %n skladbOdstranjevanje vstopne iztočnice %n skladb - + Removing loop cues from %n track(s) - + Odstranjevanje iztočnic zank iz %n skladbeOdstranjevanje iztočnic zank iz %n skladbOdstranjevanje iztočnic zank iz %n skladbOdstranjevanje iztočnic zank iz %n skladb - + Removing hot cues from %n track(s) - + Odstranjevanje hotcue iztočnic %n skladbeOdstranjevanje hotcue iztočnic %n skladbOdstranjevanje hotcue iztočnic %n skladbOdstranjevanje hotcue iztočnic %n skladb - + Resetting keys of %n track(s) - + Ponastavljanje ključa %n skladbePonastavljanje ključa %n skladbPonastavljanje ključa %n skladbPonastavljanje ključa %n skladb - + Resetting replay gain of %n track(s) - + Ponastavljanje pojačitve ponovitev %n skladbePonastavljanje pojačitve ponovitev %n skladbPonastavljanje pojačitve ponovitev %n skladbPonastavljanje pojačitve ponovitev %n skladb - + Resetting waveform of %n track(s) - + Ponastavitev valovne oblike %n skladbePonastavitev valovne oblike %n skladbPonastavitev valovne oblike %n skladbPonastavitev valovne oblike %n skladb - + Resetting all performance metadata of %n track(s) - + Ponastavitev vseh metapodatkov o izvajanju %n skladbePonastavitev vseh metapodatkov o izvajanju %n skladbPonastavitev vseh metapodatkov o izvajanju %n skladbPonastavitev vseh metapodatkov o izvajanju %n skladb - + Setting cover art of %n track(s) - + Določitev naslovnice %n sklabeDoločitev naslovnice %n sklabDoločitev naslovnice %n sklabDoločitev naslovnice %n sklab - + Reloading cover art of %n track(s) - + Ponovno nalaganje naslovnice %n skladbePonovno nalaganje naslovnice %n skladbPonovno nalaganje naslovnice %n skladbPonovno nalaganje naslovnice %n skladb WTrackTableView - + ESC Focus ESC @@ -14298,128 +14370,55 @@ To se uporablja za spreminjanje zvoka zgolj z učinki obogatenega signala (wet) (GL ES) - - main - - - Starts Mixxx in full-screen mode - Zaženi Mixxx preko celega zaslona - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - Vrhnji direktorij v katerem Mixxx išče resurse, kot so MIDI mapiranja. S tem se povozi sicer privzeta lokacija namestitve. - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + pisave - + database - + podatkovna baza - + effects učinki - + audio interface - + zvočni vmesnik - + decks predvajalnikov - + library - + knjižnica - + Choose music library directory Izberi mapo glasbene zbirke - + controllers - + kontroler - + Cannot open database Ni možno odpreti baze podatkov. - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14434,12 +14433,12 @@ Pritisnite OK za izhod. Entire music library - + Celotna glasbena knjižnica Selected crates - + Izbrani zabojniki @@ -14449,17 +14448,17 @@ Pritisnite OK za izhod. Export directory - + Izvozna mapa Database version - + Različica podatkovne baze Export - + Izvoz @@ -14469,37 +14468,37 @@ Pritisnite OK za izhod. Export Library to Engine Prime - + &Izvozi knjižnico v Engine Prime Export Library To - + Izvoz knižnice v No Export Directory Chosen - + Za izvažanje ni izbrana mapa No export directory was chosen. Please choose a directory in order to export the music library. - + Nobena mapa ni bila izbrana za izvažanje. Izberite mapo, če želite izvoziti glasbeno knjižnico. A database already exists in the chosen directory, but it is of an unsupported version. Export is not guaranteed to succeed in this situation. - + Podatkovna baza že obstaja v izbrani mapi, vendar njena različica ni podprta. V tem primeru ni mogoče zagotoviti uspešnega izvoza. A database already exists in the chosen directory. Exported tracks will be added into this database. - + Podatkovna baza že obstaja v izbrani mapi. Izvožene mape bodo dodane v to bazo podatkov. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. - + Podatkovna baza že obstaja v izbrani mapi, vendar se je pojavila težava ob njenem nalaganju. V tem primeru ni mogoče zagotoviti uspešnega izvoza. @@ -14520,27 +14519,27 @@ Pritisnite OK za izhod. Export Completed - + Izvoz je končan Exported %1 track(s) and %2 crate(s). - + Izvoženo je bilo %1 skladb in %2 zabojnikov Export Failed - + Izvoz ni uspel Export failed: %1 - + Izvoz ni uspel: %1 Exporting to Engine Prime... - + Izvažanje v Engine Prime @@ -14554,64 +14553,64 @@ Pritisnite OK za izhod. mixxx::hid::DeviceCategory - + HID Interface %1: - + HID vmesnik %1: - + Generic HID Pointer - + Generični HID kazalec - + Generic HID Mouse Generična HID miška - + Generic HID Joystick Generična HID igralna palica - + Generic HID Game Pad - + Generičen HID igralni plošček - + Generic HID Keyboard Generična HID tipkovnica - + Generic HID Keypad - + Generični HID plošček s tipkami - + Generic HID Multi-axis Controller - + Generični HID več-osni kontroler - + Unknown HID Desktop Device: - + Neznana HID namizna naprava - + Apple HID Infrared Control - + Applova HID infrardeča kontrola - + Unknown Apple HID Device: - + Neznana Applova HID naprava: - + Unknown HID Device: - + Neznana HID naprava: @@ -14627,7 +14626,7 @@ Pritisnite OK za izhod. No effect loaded. - + Ni naloženih efektov. \ No newline at end of file diff --git a/res/translations/mixxx_sn.qm b/res/translations/mixxx_sn.qm index 157848ab300f5ab02507d02b4697fb0f36c5db78..8b03bda2a67bbe03c8396922736190f9482c81b7 100644 GIT binary patch delta 4812 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 delta 6058 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 AutoDJFeature - + Crates Homwe - + Remove Crate as Track Source Bvisa homwe iyi senzvimbo yemimhanzi - + Auto DJ Zviridze wega - + Add Crate as Track Source Shandisa homwe iyi senzvimbo yemimhanzi @@ -43,25 +43,25 @@ BansheeFeature - + Banshee Banshee - - + + Error loading Banshee database Tatadza kuvhura bumbiro Banshee - + Banshee database file not found at Bumbiro reBanshee harisi kuwanikwa pa - + There was an error loading your Banshee database at Pane zvanetsa pakuvhura bumbiro reBanshee pa @@ -71,32 +71,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Wedzera pamutsetse wekuzviridza wega (kuzasi) - + Add to Auto DJ Queue (top) Wedzera pamutsetse wekuzviridza wega (kumusoro) - + Add to Auto DJ Queue (replace) - + Import Playlist Unza mutsetse wekuridza - + Playlist Creation Failed Tatadza kugadzira mutsetse wekuridza - + An unknown error occurred while creating playlist: Hameno zvisina kuitika mushe pakugadzira mutsetse wekuridza: @@ -104,144 +104,144 @@ BasePlaylistFeature - + New Playlist Mutsetse mutsva wekuridza - + Add to Auto DJ Queue (bottom) Wedzera pamutsetse wekuzviridza wega (kuzasi) - - + + Create New Playlist Gadzira mutsetse mutsva wekuridza - + Add to Auto DJ Queue (top) Wedzera pamutsetse wekuzviridza wega (kumusoro) - + Remove Bvisa - + Rename Shandura zita - + Lock Kiya - + Duplicate Dzokorora - - + + Import Playlist Unza mutsetse wekuridza - + Export Track Files Buritsa Nziyo - + Analyze entire Playlist Wongorora mutsetse wose - + Enter new name for playlist: Ipa zita ritsva kumutsetse: - + Duplicate Playlist Dzokorora mutsetse uyu - - + + Enter name for new playlist: Ipa zita kumutsetse mutsva: - - + + Export Playlist Buritsa mutsetse - + Add to Auto DJ Queue (replace) - + Rename Playlist Shandura zita remutsetse - - + + Renaming Playlist Failed Tatadza kushandura zita remutsetse - - - + + + A playlist by that name already exists. Pane mumwe mutsetse une zita rakadaro. - - - + + + A playlist cannot have a blank name. Mutsetse haukwanise kushaya zita. - + _copy //: Appendix to default name when duplicating a playlist _wakatedzerwa - - - - - - + + + + + + Playlist Creation Failed Tatadza kugadzira mutsetse wekuridza - - + + An unknown error occurred while creating playlist: Hameno zvisina kuitika mushe pakugadzira mutsetse wekuridza: - + M3U Playlist (*.m3u) Mutsetse weM3U (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Mutsetse weM3U (*.m3u);;Mutsetse weM3U8 (*.m3u8);;Mutsetse wePLS (*.pls);;Mutsetse weText CSV (*.csv);;Mutsetse weText (*.txt) @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Tatadza kuridza rwiyo. @@ -514,7 +514,7 @@ - + Computer Kompiyuta @@ -534,7 +534,7 @@ Wongorora - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. "kompiyuta" ndepekuti ukwanise kuona, kutsvaga nekuridza mimanzi kubva pa hard disk rako kana zvimwe zvawaka bairira pa kompiyuta yako. @@ -647,12 +647,12 @@ Faira Ragadzirwa - + Mixxx Library Library reMixxx - + Could not load the following file because it is in use by Mixxx or another application. Tatadza kuridza faira iri nokuti riri kushandiswa muMixxx kana kuti imwe application. @@ -683,6 +683,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -865,13 +943,13 @@ - + Set to full volume Isa vhoriume kumusoro - + Set to zero volume Nyararidza vhoriume @@ -896,13 +974,13 @@ Bhatani rekudzora kumashure uchiridza (kusensa) - + Headphone listen button Bhatani rekudzwisa kumaHeadphone - + Mute button Bhatani rekunyararidza @@ -918,25 +996,25 @@ - + Mix orientation (e.g. left, right, center) KwekuMixira (sekuti Roboshwe, Kurudyi, Pakati) - + Set mix orientation to left Mixira kuruboshwe - + Set mix orientation to center Mixira pakati - + Set mix orientation to right Mixira kurudyi @@ -980,36 +1058,6 @@ Toggle quantize mode Batidza nangiso - - - Increase internal master BPM by 1 - Wedzera mutinhimira wekunze ne 1 - - - - Decrease internal master BPM by 1 - Dzikisa mutinhimira wekunze ne 1 - - - - Increase internal master BPM by 0.1 - Wedzera mutinhimira wekunze ne 0.1 - - - - Decrease internal master BPM by 0.1 - Dzikisa mutinhimira wekunze ne 0.1 - - - - Toggle sync master - Batidza sync - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - Shandura rudzi rwesync pane 3 aripo (DZIMA, TEDZERA, TEDZERWA) - One-time beat sync (tempo only) @@ -1021,7 +1069,7 @@ Sync yemutinhimira (kuenderana chete) - + Toggle keylock mode Batidza keylock @@ -1031,199 +1079,199 @@ MaEqualizer - + Vinyl Control Shandisa marekodhi - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) Batidza mashandisiro epekutandira parekodhi (DZIMA/KAMWECHETE/PEKUJAMBIRA) - + Toggle vinyl-control mode (ABS/REL/CONST) Batidza mashandisiro emarekodhi (CHAIZVO/ZVINOENDERANA/ZVINOTIENDERANEIWO) - + Pass through external audio into the internal mixer Shandisa mixa yepano kuridza zvekumamwe masource - + Cues Pekutangira kuridza rwiyo - + Cue button Bhatani repekutangira kuridza - + Set cue point Ita pekutangira kuridza - + Go to cue point Enda pekutangira kuridza - + Go to cue point and play Enda pekutangira kuridza uridze - + Go to cue point and stop Enda pekutangira kuridza asi usaridze - + Preview from cue point Teerera kubva pekutangira kuridza - + Cue button (CDJ mode) Bhatani repekutangira kuridza (SeCDJ) - + Stutter cue Pekusikiza kutangira kuridza - + Hotcues Pekujambira uchiridza - + Set, preview from or jump to hotcue %1 Isa, jambira kanakuti teerera kubva pekujambira %1 - + Clear hotcue %1 Dzima pekujambira %1 - + Set hotcue %1 Ita pekujambira %1 - + Jump to hotcue %1 Jambira pekujambira %1 - + Jump to hotcue %1 and stop Jambira pekujambira %1 asi usaridze - + Jump to hotcue %1 and play Jambira pekujambira %1 uridze - + Preview from hotcue %1 Teerera kubva pekujambira %1 - - + + Hotcue %1 Pekujambira %1 - + Looping Kanzwimbo kekudzokorora - + Loop In button Bhatani repekutangira kuridza uchidzokorora - + Loop Out button Bhatani repekugumira kuridza uchidzokorora - + Loop Exit button Bhatani repekuregera kuridza uchidzokorora - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 32 - + 64 64 - + Move loop forward by %1 beats Fambisa dzokororo pamberi ne %1 mabeat - + Move loop backward by %1 beats Dzora dzokororo shure ne %1 mabeat - + Create %1-beat loop Gadzira dzokororo inotedzera %1-beat - + Create temporary %1-beat loop roll Gadzira dzokororo inotedzera %1-beat zveparizvino - + Library Laibhurari @@ -1334,20 +1382,20 @@ - - + + Volume Fader Pekuwedzera nekudzora vhoriume - + Full Volume Vhoriume yakaguma - + Zero Volume Vhoriume yakanyarara @@ -1363,7 +1411,7 @@ - + Mute Nyararidza @@ -1374,7 +1422,7 @@ - + Headphone Listen Teerero yekumaHeadphone @@ -1395,25 +1443,25 @@ - + Orientation Nangiso - + Orient Left Nangisa kuruboshwe - + Orient Center Nangisa pakati - + Orient Right Nangisa kurudyi @@ -1512,52 +1560,6 @@ Sync Sync - - - Sync Mode - Rudzi rweSync - - - - Internal Sync Master - Sync yekutedzerwa nezvose - - - - Toggle Internal Sync Master - Matidza Sync inotedzerwa nezvose - - - - - Internal Master BPM - Mutinhimira wemukati - - - - Internal Master BPM +1 - Mutinhimira wemukati +1 - - - - Internal Master BPM -1 - Mutinhimira wemukati -1 - - - - Internal Master BPM +0.1 - Mutinhimira wemukati +0.1 - - - - Internal Master BPM -0.1 - Mutinhimira wemukati -0.1 - - - - Sync Master - Sync yekutedzerwa nezvose - Beat Sync One-Shot @@ -1574,37 +1576,37 @@ Synca kuenderana paone-shot - + Pitch control (does not affect tempo), center is original pitch Pitch control (haishandure tempo), pakati nepakati ndipo pane yechokwadi - + Pitch Adjust Shandura Pitch - + Adjust pitch from speed slider pitch Shandura pitch kubva pane slider yepitch - + Match musical key Nanganisa key yenziyo - + Match Key Fananidza Key - + Reset Key Gadzirisa Key - + Resets key to original Rinoshandura Key uenda payatangira @@ -1645,466 +1647,466 @@ Bass - + Toggle Vinyl Control Batidza kana Kudzima shandiso yemarekodhi - + Toggle Vinyl Control (ON/OFF) Batidza kana Kudzima shandiso yemarekodhi (ON/OFF) - + Vinyl Control Mode Kamushandisiro kemarekodhi - + Vinyl Control Cueing Mode Mateererero uchishandisa marekodhi - + Vinyl Control Passthrough Ridza kubva kumarekodhi chaiwo - + Vinyl Control Next Deck Shandisa marekodhi padeck rinotevera - + Single deck mode - Switch vinyl control to next deck Shandiso yerekodhi rimwe - Shandisa rekodhi padeck rinotevera - + Cue Bata - + Set Cue Ita pekutangira kuridza - + Go-To Cue Endapo wobata - + Go-To Cue And Play Enda pawabata uridze - + Go-To Cue And Stop Enda pawabata asi usaridze - + Preview Cue Teerera pawabata - + Cue (CDJ Mode) Bata (seCDJ) - + Stutter Cue Sikiza kuridza - + Go to cue point and play after release Enda pekutangira kuridza uridze ndaregedzera - + Clear Hotcue %1 Dzima pekujambira %1 - + Set Hotcue %1 Ita pekujambira %1 - + Jump To Hotcue %1 Jambira pekujambira %1 - + Jump To Hotcue %1 And Stop Jambira pekujambira %1 asi usaridze - + Jump To Hotcue %1 And Play Jambira pekujambira %1 uridze - + Preview Hotcue %1 Teerera kubva pekujambira %1 - + Loop In Pekutangira kuridza uchidzokorora - + Loop Out Pekugumira kuridza uchidzokorora - + Loop Exit Pekuregera kuridza uchidzokorora - + Reloop/Exit Loop Dzokorora/Rekedza Dzokororo - + Loop Halve Dimura dzokororo nepakati - + Loop Double Wedzera dzokororo zvakaenzana - + 1/32 1/32 - + 1/16 1/16 - + 1/8 1/8 - + 1/4 1/4 - + Move Loop +%1 Beats Fambisa dzokororo ne +%1 mabeat - + Move Loop -%1 Beats Fambisa dzokororo ne -%1 mabeat - + Loop %1 Beats Dzokorora %1 Beats - + Loop Roll %1 Beats Dzokorora Roll %1 Beats - + Add to Auto DJ Queue (bottom) Wedzera pamutsetse wekuzviridza wega (kuzasi) - + Append the selected track to the Auto DJ Queue Isa rwiyo rwakasarudzwa kuBumbiro rekuzviridza rega - + Add to Auto DJ Queue (top) Wedzera pamutsetse wekuzviridza wega (kumusoro) - + Prepend selected track to the Auto DJ Queue Isa rwiyo rwakasarudzwa kuBumbiro rekuzviridza rega pekutanga - + Load Track Isa rwiyo - + Load selected track Isa rwiyo rwakasaruwa - + Load selected track and play Isa rwiyo rwakasaruwa nekuridza - - + + Record Mix Rekodha mix - + Toggle mix recording Batidza zvekurekodha mix - + Effects Maeffect - + Quick Effects Maeffects epedo - + Deck %1 Quick Effect Super Knob Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) Quick Effect Super Knob (shandura maparamita akananganiswa) - - + + Quick Effect Quick Effect - + Clear effect rack Bvisa zvose paEffect rack - + Clear Effect Rack Bvisa zvose paEffect Rack - + Clear Unit Dzima zvose zviri paUnit - + Clear effect unit Dzima zvose paEffect Unit - + Toggle Unit Batidza / Dzima Unit - + Dry/Wet Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. Gadzirisa kuenzana pakati perwiyo rusati rwabatwa-batwa (sezvariri) nerusati (rwaiswa maeffect). - + Super Knob Super Knob - + Next Chain Next Chain - + Assign Isa - + Clear Dzima - + Clear the current effect Dzima effect riripo - + Toggle Batidza / Dzima - + Toggle the current effect Batidza / Dzima effect iri - + Next Zvinotevera - + Switch to next effect Enda paEffect rinotevera - + Previous Zvapfuura - + Switch to the previous effect Enda kune effect rapfuura - + Next or Previous Zvinotevera kana Zvabva - + Switch to either next or previous effect Enda kune effect rabva kana kuti rinotevera - - + + Parameter Value Value reParamita - - + + Microphone Ducking Strength Udzamu hwekuitira Microphone - + Microphone Ducking Mode Rudzi rwehudzamu hwekuitira Microphone - + Gain Udzamu - + Gain knob Knob reudzamu - + Shuffle the content of the Auto DJ queue Bvonganisa zviripo panopera zvakarongwa pane zvekuzviridza zvega - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle Batidza / Dzima kuzviridza wega - + Toggle Auto DJ On/Off Zviridze wega On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore Zadzisa / Dzora Bumbiro - + Maximize the track library to take up all the available screen space. Zadzisa bumbiro kuti rivharise pose panokwanisika pascreen. - + Effect Rack Show/Hide Ratidza/Viga maEffect - + Show/hide the effect rack Ratidza/Viga effect rack - + Waveform Zoom Out Dzikisa muonero weWaveform @@ -2129,93 +2131,93 @@ - + Playback Speed Mamhanyiro ekuridza - + Playback speed control (Vinyl "Pitch" slider) Chekushangura mamhanyiro ekuridza (Pitch slider yemarekodhi) - + Pitch (Musical key) Pitch (Musical key) - + Increase Speed Wedzera kumhanya - + Adjust speed faster (coarse) Wedzera kumhanya (zvakangodaro) - - + + Increase Speed (Fine) Wedzera kumhanya (zvakatsetseka) - + Adjust speed faster (fine) Wedzera kumhanya (zvakatsetseka) - + Decrease Speed Dzora kumhanya - + Adjust speed slower (coarse) Dzora kumhanya (zvakadaro) - + Adjust speed slower (fine) Dzora kumhanya (zvakatsetseka) - + Temporarily Increase Speed Wedzera kumhanya mbichana - + Temporarily increase speed (coarse) Wedzera kumhanya mbichana (zvakadaro) - + Temporarily Increase Speed (Fine) Wedzera kumhanya (zvakatsetseka) - + Temporarily increase speed (fine) Wedzera kumhanya (zvakatsetseka) - + Temporarily Decrease Speed Dzora kumhanya - + Temporarily decrease speed (coarse) Dzora kumhanya (zvakadaro) - + Temporarily Decrease Speed (Fine) Dzora kumhanya (zvakatsetseka) - + Temporarily decrease speed (fine) Dzora kumhanya (zvakatsetseka) @@ -2272,806 +2274,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up Kwidza - + Equivalent to pressing the UP key on the keyboard Zvakango fanana nekubaya bhatani rekukwidza paKeyboard - + Move down Dzikisa - + Equivalent to pressing the DOWN key on the keyboard Zvakango fanana nekubaya bhatani rekudzika paKeyboard - + Move up/down Kwidza/Dzikisa - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys Kwidza kana kudzikisa uchishandisa ka knob sekunge ukudzvanya UP/DOWN pa keyboard - + Scroll Up Verenga uchikwidza - + Equivalent to pressing the PAGE UP key on the keyboard Zvakafanana nekudzvanya bhatani re PAGE UP pa keyboard - + Scroll Down Verenga uchidzika - + Equivalent to pressing the PAGE DOWN key on the keyboard Zvakafanana nekudzvanya bhatani re PAGE DOWN pa keyboard - + Scroll up/down Verenga uchikwidza/kudzika - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys Verenga uchikwidza kana kudzikisa uchishandisa ka knob sekunge ukudzvanya UP/DOWN pa keyboard - + Move left Enda kuruboshwe - + Equivalent to pressing the LEFT key on the keyboard Zvakango fanana nekubaya bhatani rekuenda ruboshwe paKeyboard - + Move right Enda kurudyi - + Equivalent to pressing the RIGHT key on the keyboard Zvakango fanana nekubaya bhatani rekuenda kurudyi paKeyboard - + Move left/right Enda kuruboshwe/rudyi - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys Enda rudyi kana ruboshwe uchishandisa ka knob sekunge ukudzvanya LEFT/RIGHT pa keyboard - + Move focus to right pane Shandira necheku rudyi - + Equivalent to pressing the TAB key on the keyboard Zvakango fanana nekubaya bhatani rekuenda kurudyi paKeyboard - + Move focus to left pane Shandira necheku ruboshwe - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing Batika kana kudzima maeffect - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset Next chain preset - + Previous Chain Maeffects abva - + Previous chain preset Maeffects abva agerere aripo - + Next/Previous Chain Maeffects Abva/Anotevera - + Next or previous chain preset Maeffect abva kana anotevera - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary Maikrophone / Auxilari - + Microphone On/Off Maikrophone Dzima/Batidza - + Microphone on/off Maikrophone dzima/batidza - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) Batidza maikrophone ducking mode (Dzima, Auto, Zviitire) - + Auxiliary On/Off Auxilari Batidza/Dzima - + Auxiliary on/off Auxilari dzima/batidza - + Auto DJ Zviridze wega - + Auto DJ Shuffle Zviridze Madiro - + Auto DJ Skip Next Rinotevera paKuzviridza Wega - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next Pinda murwiyo rwuri kutevera - + Trigger the transition to the next track Ita kuti rwiyo runotevera ririre - + User Interface Pekushandira - + Samplers Show/Hide Ratidza/Viga maSampler - + Show/hide the sampler section Ratidza/Dzima panowanikwa maSampler - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide Ratidza/Viga pekushandisa Marekodhi - + Show/hide the vinyl control section Ratidza/Viga panowanikwa pekushandisa Marekodhi - + Preview Deck Show/Hide Ratidza/Viga peNzwisa - + Show/hide the preview deck Ratidza/Viga panowanikwa Nzwisa - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide Ratidza/Viga Rekodhi richispina - + Show/hide spinning vinyl widget Ratidza/Viga panowanikwa rekodhi richispina - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom Zooma weveform - + Waveform Zoom Kwidza Waveform - + Zoom waveform in Pekukwidza waveform uchipinda - + Waveform Zoom In Kwidza muonero weWaveform - + Zoom waveform out Dzikisa muonero weWaveform - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3160,32 +3228,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. Edza kudzima nekubatidza pakare controller yauri kushandisa. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. The script code needs to be fixed. @@ -3221,133 +3289,133 @@ CrateFeature - + Remove Bvisa - - + + Create New Crate Gadzira Homwe Itsva - + Rename Shandura zita - - + + Lock Kiya - + Export Crate as Playlist - + Export Track Files Buritsa Nziyo - + Duplicate Dzokorora - + Analyze entire Crate Wongorora homwe yose - + Auto DJ Track Source Ridza Madiro kwabva Rwiyo - + Enter new name for crate: Ipa zita ritsva kumutsetse: - - + + Crates Homwe - - + + Import Crate Tora kubva kubumbiro rekuridza - + Export Crate Buritsa bumbiro rekuridza - + Unlock Sunungura - + An unknown error occurred while creating crate: Hameno zvisina kuitika mushe pakugadzira bumbiro rekuridza: - + Rename Crate Shandura zita rehomwe - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed Tatadza kushandura zita rehomwe - + Crate Creation Failed Tatadza kugadzira homwe - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Mutsetse weM3U (*.m3u);;Mutsetse weM3U8 (*.m3u8);;Mutsetse wePLS (*.pls);;Mutsetse weText CSV (*.csv);;Mutsetse weText (*.txt) - + Crates are a great way to help organize the music you want to DJ with. Homwe idzi inzira yekuunganidza mimanzi yako nenzira yaungade kuiridza nayo. - + Crates let you organize your music however you'd like! - + A crate cannot have a blank name. - + A crate by that name already exists. @@ -3417,37 +3485,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4877,32 +4945,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin - + Tool tips - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4912,52 +4980,42 @@ Apply settings and continue? Mamiriro eMataridziko - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off - + Library only - + Library and Skin @@ -5568,38 +5626,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5818,62 +5876,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added Nzvimbo ine mumhanzi yawedzerwa - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? Wawedzera nzvimbo inemumhanzi. Nziyo dzirimo hadzisati dzakuonekwa kusvikira tawongorora nzvimbo yacho. Towongorowa here izvozvi? - + Scan Wongorora - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6877,32 +6935,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV HSV - + RGB RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7116,72 +7174,72 @@ Select from different types of displays for the waveform, which differ primarily Laibhurari - + Interface - + Waveforms - + Auto DJ Zviridze wega - + Equalizers MaEqualizer - + Decks - + Colors - + Crossfader Krosfedha - + Effects Maeffect - + LV2 Plugins - + Recording - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7191,12 +7249,12 @@ Select from different types of displays for the waveform, which differ primarily Shandisa marekodhi - + Live Broadcasting - + Modplug Decoder @@ -7337,123 +7395,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Gore - + Title Zita - - + + Artist Muimbi - - + + Album Bhama - + Album Artist Muimbi webhama - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7845,17 +7903,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7956,38 +8014,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7995,13 +8053,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8009,57 +8067,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8080,22 +8138,22 @@ support. LibraryFeature - + Import Playlist Unza mutsetse wekuridza - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Mafaira emutsetse wekuridza (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8106,27 +8164,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8242,183 +8300,183 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry - + skin - - + + Reconfigure - + Help - - + + Exit - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. Hapana chakasarudzwa pane zvinounza signal rekushandisa marekodhi. Tanga wasarudza zvinounza signal rekushandisa marekodhi kuridza kuneMamiriro eZvekuridzisa. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. Hapana chakasarudzwa pane zvekuti ushandise passthough kontrol. Tanga wasarudza zvinounza mumanzi wacho kuneMamiriro eZvekuridzisa. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8489,43 +8547,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Kiya - + Playlists - + Unlock Sunungura - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist Gadzira mutsetse mutsva wekuridza @@ -8533,58 +8591,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Wongorora - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8768,7 +8826,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9894,12 +9952,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10037,54 +10095,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10093,7 +10151,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10144,34 +10202,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates Homwe - + Check for Serato databases (refresh) - + (loading) Serato @@ -10194,12 +10252,12 @@ Fully right: end of the effect period - + Unlock Sunungura - + Lock Kiya @@ -11158,6 +11216,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12333,11 +12416,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12353,16 +12431,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12378,16 +12446,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12941,22 +12999,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13568,20 +13626,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13752,8 +13810,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Rudzi - - Folder + + Directory @@ -13996,155 +14054,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 Mupaka %1 - + Sampler %1 Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Gadzira mutsetse mutsva wekuridza - + Enter name for new playlist: Ipa zita kumutsetse mutsva: - + New Playlist Mutsetse mutsva wekuridza - - - + + + Playlist Creation Failed Tatadza kugadzira mutsetse wekuridza - + A playlist by that name already exists. Pane mumwe mutsetse une zita rakadaro. - + A playlist cannot have a blank name. Mutsetse haukwanise kushaya zita. - + An unknown error occurred while creating playlist: Hameno zvisina kuitika mushe pakugadzira mutsetse wekuridza: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14152,7 +14215,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14189,128 +14252,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14386,7 +14376,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14443,62 +14433,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_sq_AL.ts b/res/translations/mixxx_sq_AL.ts index 3f455ed3f87..2d4da4c13ed 100644 --- a/res/translations/mixxx_sq_AL.ts +++ b/res/translations/mixxx_sq_AL.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Arkat - + Remove Crate as Track Source - + Auto DJ DJ Automatik - + Add Crate as Track Source @@ -43,24 +43,24 @@ BansheeFeature - + Banshee Banshee - - + + Error loading Banshee database - + Banshee database file not found at - + There was an error loading your Banshee database at @@ -69,32 +69,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) - + Add to Auto DJ Queue (top) - + Add to Auto DJ Queue (replace) - + Import Playlist Importo Listën - + Playlist Creation Failed Krijimi i Lisës Dështoi - + An unknown error occurred while creating playlist: Një Gabim i Panjohur Ndodhi Ndërsa po Krijohej Lista @@ -102,144 +102,144 @@ BasePlaylistFeature - + New Playlist Listë e Re - + Add to Auto DJ Queue (bottom) - - + + Create New Playlist Krijo Listë të Re - + Add to Auto DJ Queue (top) - + Remove Hiq - + Rename Riemërto - + Lock Kyç - + Duplicate Dyfisho - - + + Import Playlist Importo Listën - + Export Track Files - + Analyze entire Playlist Analizo të Gjithë Listën - + Enter new name for playlist: - + Duplicate Playlist Dyfisho Lisën - - + + Enter name for new playlist: Zgjidh Emrin e Listës së Re - - + + Export Playlist Eksporto Listën - + Add to Auto DJ Queue (replace) - + Rename Playlist Riemërto Listën - - + + Renaming Playlist Failed Riemërtimi i Listës Dështoi - - - + + + A playlist by that name already exists. Lista me atë Emër Ekziston - - - + + + A playlist cannot have a blank name. Lista Nuk Mund të Ketë Emër Bosh - + _copy //: Appendix to default name when duplicating a playlist _kopje - - - - - - + + + + + + Playlist Creation Failed Krijimi i Lisës Dështoi - - + + An unknown error occurred while creating playlist: Një Gabim i Panjohur Ndodhi Ndërsa po Krijohej Lista - + M3U Playlist (*.m3u) Listë M3U (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. @@ -512,7 +512,7 @@ - + Computer @@ -532,7 +532,7 @@ Këqyr - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -645,12 +645,12 @@ Skeda u Krijua - + Mixxx Library Libraria e Mixxx - + Could not load the following file because it is in use by Mixxx or another application. @@ -681,6 +681,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -863,13 +941,13 @@ - + Set to full volume Ngrije Volumin të Plotë - + Set to zero volume Ule Volumin në Zero @@ -894,13 +972,13 @@ - + Headphone listen button Butoni të Dëgjosh me Kufje - + Mute button Butoni i Heshtjes @@ -916,25 +994,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -978,36 +1056,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1019,7 +1067,7 @@ - + Toggle keylock mode @@ -1029,199 +1077,199 @@ Barazuesit - + Vinyl Control - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues Shenjat - + Cue button Butoni i Shenjës - + Set cue point Vë Pikën e Shenjës - + Go to cue point Shko tek Pika e Shenjës - + Go to cue point and play Shko tek Pika e Shenjës edhe Luaje - + Go to cue point and stop Shko tek Pika e Shenjës edhe Ndalo - + Preview from cue point Inspekto nga Pika e Shenjës - + Cue button (CDJ mode) Butoni i Shenjës (Moda CDJ) - + Stutter cue Belbëzo Shenjën - + Hotcues Shenjat e Shpejta - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 Zbraz Shenjën e Shpejte %1 - + Set hotcue %1 Vë Shenjën e Shpejte %1 - + Jump to hotcue %1 Kërce tek Shenja e Shpejtë %1 - + Jump to hotcue %1 and stop Kërce tek Shenja e Shpejte %1 edhe Ndalo - + Jump to hotcue %1 and play Kërce tek Shenja e Shpejtë %1 edhe Luaje - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 - + 1 - + 2 - + 4 - + 8 - + 16 - + 32 - + 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library @@ -1332,20 +1380,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1361,7 +1409,7 @@ - + Mute @@ -1372,7 +1420,7 @@ - + Headphone Listen @@ -1393,25 +1441,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1510,52 +1558,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1572,37 +1574,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1643,466 +1645,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix - + Toggle mix recording - + Effects - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next - + Switch to next effect - + Previous - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2127,93 +2129,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2270,806 +2272,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ DJ Automatik - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3158,32 +3226,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3219,133 +3287,133 @@ CrateFeature - + Remove Hiq - - + + Create New Crate - + Rename Riemërto - - + + Lock Kyç - + Export Crate as Playlist - + Export Track Files - + Duplicate Dyfisho - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates Arkat - - + + Import Crate - + Export Crate - + Unlock - + An unknown error occurred while creating crate: - + Rename Crate - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) - + Crates are a great way to help organize the music you want to DJ with. - + Crates let you organize your music however you'd like! - + A crate cannot have a blank name. - + A crate by that name already exists. @@ -3415,37 +3483,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4875,32 +4943,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin - + Tool tips - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4910,52 +4978,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off - + Library only - + Library and Skin @@ -5566,38 +5624,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5816,62 +5874,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan Këqyr - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6875,32 +6933,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7114,72 +7172,72 @@ Select from different types of displays for the waveform, which differ primarily - + Interface - + Waveforms - + Auto DJ DJ Automatik - + Equalizers Barazuesit - + Decks - + Colors - + Crossfader Kryqzbehësi - + Effects - + LV2 Plugins - + Recording - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7189,12 +7247,12 @@ Select from different types of displays for the waveform, which differ primarily - + Live Broadcasting - + Modplug Decoder @@ -7335,123 +7393,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Viti - + Title Titulli - - + + Artist Artisti - - + + Album Albumi - + Album Artist Artisti i Albumit - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7843,17 +7901,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7954,38 +8012,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7993,13 +8051,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8007,57 +8065,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8078,22 +8136,22 @@ support. LibraryFeature - + Import Playlist Importo Listën - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8104,27 +8162,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8240,181 +8298,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry - + skin - - + + Reconfigure - + Help - - + + Exit - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8485,43 +8543,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Kyç - + Playlists - + Unlock - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist Krijo Listë të Re @@ -8529,58 +8587,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Këqyr - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8764,7 +8822,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9890,12 +9948,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10033,54 +10091,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10089,7 +10147,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10140,34 +10198,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates Arkat - + Check for Serato databases (refresh) - + (loading) Serato @@ -10190,12 +10248,12 @@ Fully right: end of the effect period - + Unlock - + Lock Kyç @@ -11154,6 +11212,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12329,11 +12412,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12349,16 +12427,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12374,16 +12442,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12937,22 +12995,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13564,20 +13622,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13748,8 +13806,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Xhanrë - - Folder + + Directory @@ -13992,155 +14050,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 Kuverta %1 - + Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Krijo Listë të Re - + Enter name for new playlist: Zgjidh Emrin e Listës së Re - + New Playlist Listë e Re - - - + + + Playlist Creation Failed Krijimi i Lisës Dështoi - + A playlist by that name already exists. Lista me atë Emër Ekziston - + A playlist cannot have a blank name. Lista Nuk Mund të Ketë Emër Bosh - + An unknown error occurred while creating playlist: Një Gabim i Panjohur Ndodhi Ndërsa po Krijohej Lista - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14148,7 +14211,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14185,128 +14248,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14382,7 +14372,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14439,62 +14429,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_sr.qm b/res/translations/mixxx_sr.qm index 317b1d86922560b14e749bfd95d0af3457e07694..934e2c45beb0e72694baa64ab80daf713a826349 100644 GIT binary patch delta 12320 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 delta 13864 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 Sums1MhnBM4hnDhjt^W_E`3{x< diff --git a/res/translations/mixxx_sr.ts b/res/translations/mixxx_sr.ts index 35c227af3b3..6adcf6d7f6e 100644 --- a/res/translations/mixxx_sr.ts +++ b/res/translations/mixxx_sr.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Гајбице - + Remove Crate as Track Source Уклони гајбицу из извора - + Auto DJ Самостални Диџеј - + Add Crate as Track Source Додај сандук у изворе @@ -43,25 +43,25 @@ BansheeFeature - + Banshee Бенши - - + + Error loading Banshee database Не могу да учитам Бенши - + Banshee database file not found at Бенши база не постоји у - + There was an error loading your Banshee database at Неисправна Бенши база @@ -71,32 +71,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Додајте у ред самосталног диџеја (доле) - + Add to Auto DJ Queue (top) Додајте у ред самосталног диџеја (горе) - + Add to Auto DJ Queue (replace) Додај на Ауто-Диџеј листу (рокада) - + Import Playlist Увезите списак нумера - + Playlist Creation Failed Стварање списка нумера није успело - + An unknown error occurred while creating playlist: Дошло је до непознате грешке приликом стварања списка нумера: @@ -104,144 +104,144 @@ BasePlaylistFeature - + New Playlist Нови списак нумера - + Add to Auto DJ Queue (bottom) Додајте у ред самосталног диџеја (доле) - - + + Create New Playlist Састави листу песама - + Add to Auto DJ Queue (top) Додајте у ред самосталног диџеја (горе) - + Remove Уклони - + Rename Преименуј - + Lock Закључај - + Duplicate Дуплирај - - + + Import Playlist Увезите списак нумера - + Export Track Files Направи фајл - + Analyze entire Playlist Анализирај целу листу - + Enter new name for playlist: Ново име за листу песама: - + Duplicate Playlist Удвостручи списак нумера - - + + Enter name for new playlist: Ново име за листу песама: - - + + Export Playlist Извези списак нумера - + Add to Auto DJ Queue (replace) Додај на Ауто-Диџеј листу (рокада) - + Rename Playlist Преименуј списак нумера - - + + Renaming Playlist Failed Преименовање списка нумера није успело - - - + + + A playlist by that name already exists. Већ постоји списак нумера са овим називом. - - - + + + A playlist cannot have a blank name. Назив списка нумера не може бити празан. - + _copy //: Appendix to default name when duplicating a playlist _умножи - - - - - - + + + + + + Playlist Creation Failed Стварање списка нумера није успело - - + + An unknown error occurred while creating playlist: Дошло је до непознате грешке приликом стварања списка нумера: - + M3U Playlist (*.m3u) М3У листа (*.м3у) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) М3У списак нумера (*.m3u);;М3У8 списак нумера (*.m3u8);;ПЛС списак нумера (*.pls);;Текстуални ЦСВ (*.csv);;Читљив текст (*.txt) @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Не могу да учитам нумеру. @@ -517,7 +517,7 @@ - + Computer Рачунар @@ -537,7 +537,7 @@ Скен - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. "Рачунар" је место одакле можете приступити фолдерима на тврдом диску и спољној меморији. @@ -650,12 +650,12 @@ Креирано - + Mixxx Library Библиотека Миксикса - + Could not load the following file because it is in use by Mixxx or another application. Не могу да учитам датотеку јер је тренутно користи Миксикс или неки други програм. @@ -686,6 +686,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -868,13 +946,13 @@ - + Set to full volume Макс. ниво - + Set to zero volume Мин. ниво @@ -899,13 +977,13 @@ Цензура - + Headphone listen button Дугме за слушање слушалицама - + Mute button Пригуши @@ -921,25 +999,25 @@ - + Mix orientation (e.g. left, right, center) Усмерење мешача (тј. лево, десно, на средини) - + Set mix orientation to left Микс на лево - + Set mix orientation to center Микс пола-пола - + Set mix orientation to right Микс на десно @@ -983,36 +1061,6 @@ Toggle quantize mode Окини режим квантизације - - - Increase internal master BPM by 1 - Увећај главни БПМ за 1 - - - - Decrease internal master BPM by 1 - Смањи главни БПМ за 1 - - - - Increase internal master BPM by 0.1 - Увећај главни БПМ за 0.1 - - - - Decrease internal master BPM by 0.1 - Смањи главни БПМ за 0.1 - - - - Toggle sync master - Укачи темпо - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - 3-струки режим качења (БЕЗ, ПРАТИ, ВОДИ) - One-time beat sync (tempo only) @@ -1024,7 +1072,7 @@ Моментално укачи (само) фазу - + Toggle keylock mode Промените режим закључавања тастера @@ -1034,199 +1082,199 @@ Уједначавачи - + Vinyl Control Управљање плочом - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) Окини режим наговештаја управљања плочом (ИСКЉ./ЈЕДАН/БИТАН) - + Toggle vinyl-control mode (ABS/REL/CONST) Окини режим управљања плочом (АБС/РЕЛ/КОНСТ) - + Pass through external audio into the internal mixer Екстерни сигнал у миксер - + Cues Наговештаји - + Cue button Дугме наговештаја - + Set cue point Подеси тачку наговештаја - + Go to cue point Скочи на маркер - + Go to cue point and play Пусти од маркера - + Go to cue point and stop Иди до тачке наговештаја и стани - + Preview from cue point Преслушај од маркера - + Cue button (CDJ mode) Маркер-дугме (ЦДЈ) - + Stutter cue "Муцајући" маркер - + Hotcues Битни наговештаји - + Set, preview from or jump to hotcue %1 Забележи/преслушај/скочи на брзи маркер %1 - + Clear hotcue %1 Очисти битни наговештај %1 - + Set hotcue %1 Забележи брзи маркер %1 - + Jump to hotcue %1 Скочи до битног наговештаја %1 - + Jump to hotcue %1 and stop Скочи до битног наговештаја „%1“ и стани - + Jump to hotcue %1 and play Пусти од брзог маркера %1 - + Preview from hotcue %1 Преслушај од брзог маркера %1 - - + + Hotcue %1 Битни наговештај %1 - + Looping Упетљавање - + Loop In button Дугме за упетљавање - + Loop Out button Дугме за распетљавање - + Loop Exit button Дугме за напуштање петље - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 32 - + 64 64 - + Move loop forward by %1 beats Помакни сегмент унапред за %1 - + Move loop backward by %1 beats Помакни сегмент уназад за %1 - + Create %1-beat loop Направи %1-тактну петљу - + Create temporary %1-beat loop roll Направи привремено %1-тактно правило петље - + Library Библиотека @@ -1337,20 +1385,20 @@ - - + + Volume Fader Клизач нивоа - + Full Volume Макс. ниво - + Zero Volume Мин. ниво @@ -1366,7 +1414,7 @@ - + Mute Пригуши @@ -1377,7 +1425,7 @@ - + Headphone Listen Усмери у слушалице @@ -1398,25 +1446,25 @@ - + Orientation Панорама - + Orient Left Баци на лево - + Orient Center Стави у центар - + Orient Right Баци на десно @@ -1515,52 +1563,6 @@ Sync Синхро - - - Sync Mode - Синхро режим - - - - Internal Sync Master - Унутарњи синхронизер - - - - Toggle Internal Sync Master - Унутарњи синхронизер активан - - - - - Internal Master BPM - Унутарњи темпо - - - - Internal Master BPM +1 - Унутарњи темпо +1 - - - - Internal Master BPM -1 - Унутарњи темпо -1 - - - - Internal Master BPM +0.1 - Унутарњи темпо +0.1 - - - - Internal Master BPM -0.1 - Унутарњи темпо -0.1 - - - - Sync Master - Тип синхронизера - Beat Sync One-Shot @@ -1577,38 +1579,38 @@ Синхро. фазе моментално - + Pitch control (does not affect tempo), center is original pitch Контрола фреквенције (без темпа), центар = оригинал - + Pitch Adjust Подеси фреквенцију - + Adjust pitch from speed slider pitch Фреквенција по клизачу за брзину - + Match musical key Паметно усклади тоналитет - + Match Key Усклади тоналитет - + Reset Key Основни тоналитет - + Resets key to original = Оригинални тоналитет @@ -1649,474 +1651,474 @@ Уједначавач ниских - + Toggle Vinyl Control Активна аналогна контрола - + Toggle Vinyl Control (ON/OFF) Прекидач аналогне контроле (укљ.-искљ.) - + Vinyl Control Mode Режим управљања плочом - + Vinyl Control Cueing Mode Режим аналогне припреме - + Vinyl Control Passthrough Бајпас аналогне контроле - + Vinyl Control Next Deck Аналогна контрола сл. дек - + Single deck mode - Switch vinyl control to next deck Јединствени дек - пребаци аналогну контролу на сл. дек - + Cue Наговештај - + Set Cue Маркер припреме - + Go-To Cue Иди на маркер - + Go-To Cue And Play Иди на маркер и пусти - + Go-To Cue And Stop Иди на маркер и стани - + Preview Cue Провери маркер - + Cue (CDJ Mode) Припрема (CDJ режим) - + Stutter Cue - + Go to cue point and play after release Иди на маркер и пусти по отпуштању - + Clear Hotcue %1 Ослободи брзи маркер %1 - + Set Hotcue %1 Постави брзи маркер %1 - + Jump To Hotcue %1 Скочи на брзи маркер %1 - + Jump To Hotcue %1 And Stop Скочи на брзи маркер %1 и стани - + Jump To Hotcue %1 And Play Скочи на брзи маркер %1 и пусти - + Preview Hotcue %1 Провери брзи маркер %1 - + Loop In Почетак понављања - + Loop Out Крај понављања - + Loop Exit Напусти петљу - + Reloop/Exit Loop Понављај/Настави - + Loop Halve Преполовљавање петље - + Loop Double Удвостручавање петље - + 1/32 1/32 - + 1/16 1/16 - + 1/8 1/8 - + 1/4 1/4 - + Move Loop +%1 Beats Макни понављ. +%1 откуцај/а - + Move Loop -%1 Beats Макни понављ. -%1 откуцај/а - + Loop %1 Beats Понављај %1 откуцај/а - + Loop Roll %1 Beats Клизно понављ. %1 откуцај/а - + Add to Auto DJ Queue (bottom) Додајте у ред самосталног диџеја (доле) - + Append the selected track to the Auto DJ Queue Додај одабир на крај Ауто-Диџеј листе - + Add to Auto DJ Queue (top) Додајте у ред самосталног диџеја (горе) - + Prepend selected track to the Auto DJ Queue Додај одабир на почетак Ауто-Диџеј листе - + Load Track Учитај одабир - + Load selected track Учитајте изабрану нумеру - + Load selected track and play Учитајте изабрану нумеру и пустите је - - + + Record Mix Снимај микс - + Toggle mix recording Снимање микса активно - + Effects Дејства - + Quick Effects Једноставни ефекти - + Deck %1 Quick Effect Super Knob Дек %1 - гл. пот. за ефекте - + Quick Effect Super Knob (control linked effect parameters) Главни потенциометар за ефекте (контрола повезаних параметара) - - + + Quick Effect Једноставан ефекат - + Clear effect rack Ослободи модул ефекта - + Clear Effect Rack Ослободи модул ефекта - + Clear Unit Уклони процесор - + Clear effect unit Уклони процесор из модула - + Toggle Unit Процесор активан - + Dry/Wet Суво-Ефекат - + Adjust the balance between the original (dry) and processed (wet) signal. Постави однос јачине сувог (чистог) сигнала и обрађеног сигнала (ефекта) - + Super Knob Гл. потенциометар - + Next Chain Сл. ланац - + Assign Додели - + Clear Уклони - + Clear the current effect Уклони одабрани ефекат - + Toggle Активација - + Toggle the current effect Прекидач за одабрани ефекат - + Next Даље - + Switch to next effect Одабери сл. ефекат у низу - + Previous Претходно - + Switch to the previous effect Одабери претх. ефекат у низу - + Next or Previous Следећи/претходни - + Switch to either next or previous effect Одабери или сл или претходни ефекат у низу - - + + Parameter Value Вредност параметра - - + + Microphone Ducking Strength Јачина компресије микрофона - + Microphone Ducking Mode Режим компресије микрофона - + Gain Појачање - + Gain knob Дугменце појачања - + Shuffle the content of the Auto DJ queue Промешај листу Ауто-Диџеј-а - + Skip the next track in the Auto DJ queue Прескочи следећу нумеру у Ауто-Диџеј листи - + Auto DJ Toggle Ауто ДиЏеј активан - + Toggle Auto DJ On/Off Прекидач Ауто-Диџеј-а, укљ./искљ. - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore Увећај/смањи бирач нумера - + Maximize the track library to take up all the available screen space. Користи цео екран за одабир нумера - + Effect Rack Show/Hide Приказ ланца ефеката - + Show/hide the effect rack Прикажи или сакриј модул за ефекте - + Waveform Zoom Out Рашири осцилоскоп @@ -2141,94 +2143,94 @@ - + Playback Speed Брзина репродукције - + Playback speed control (Vinyl "Pitch" slider) Контрола брзине пуштања (аналогни "Pitch" клизач) - + Pitch (Musical key) Фрекв. (музикално) - + Increase Speed Увећај брзину - + Adjust speed faster (coarse) Подеси на брже (грубо) - - + + Increase Speed (Fine) Убрзај (фино) - + Adjust speed faster (fine) Подеси на брже (фино) - + Decrease Speed Смањи брзину - + Adjust speed slower (coarse) Подеси на спорије (грубо) - + Adjust speed slower (fine) Подеси на спорије (фино) - + Temporarily Increase Speed Моментално убрзање - + Temporarily increase speed (coarse) Моментално убрзање (грубо) - + Temporarily Increase Speed (Fine) Моментално убрзање (фино) - + Temporarily increase speed (fine) Моментално убрзање (фино) - + Temporarily Decrease Speed Моментално успорење - + Temporarily decrease speed (coarse) Моментално успорење (грубо) - + Temporarily Decrease Speed (Fine) Моментално успорење (фино) - + Temporarily decrease speed (fine) Моментално успорење (фино) @@ -2285,824 +2287,890 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) CUP (Скочи и пусти) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats Понављај одабране откуцаје - + Create a beat loop of selected beat size Активирај понављање са одређеним бројем откуцаја - + Loop Roll Selected Beats Клизно понављање одабраних откуцаја - + Create a rolling beat loop of selected beat size Активирај клизно понављање са одређеним бројем откуцаја - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position Укљ./искљ. понављање и врати на почетак понављања ако је прошао - + Reloop And Stop Понови па стани - + Enable loop, jump to Loop In point, and stop Активирај понављање, скочи на почетак понављања и заустави - + Halve the loop length Преполови дужину понављања - + Double the loop length Удвостручи дужину понављања - + Beat Jump / Loop Move Скок на откуцај / помак понављања - + Jump / Move Loop Forward %1 Beats Скочи / макни понављ. напред за %1 откуцај/а - + Jump / Move Loop Backward %1 Beats Скочи / макни понављ. назад за %1 откуцај/а - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats Скочи унапред %1 откуцај/а, или у случају понављања, помакни унапред %1 откуцај/а - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats Скочи уназад %1 откуцај/а, или у случају понављања, помакни уназад %1 откуцај/а - + Beat Jump / Loop Move Forward Selected Beats Прескочи откуцаје / помакни понављање одабиром - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats Прескочи број откуцаја у одабиру, или у случају понављања, помакни унапред исти број откуцаја - + Beat Jump / Loop Move Backward Selected Beats Врати уназад / помакни понављање по одабиру - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats Скочи на откуцај, или у случају понављања, помакни уназад, по дужини одабира - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up Нагоре - + Equivalent to pressing the UP key on the keyboard Исто што и тастер стрелице на горе - + Move down Надоле - + Equivalent to pressing the DOWN key on the keyboard Исто што и тастер стрелице на доле - + Move up/down Горе/доле - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys Вертикално померање потенциометра, као са тастерима стрелица - + Scroll Up Претходна страна - + Equivalent to pressing the PAGE UP key on the keyboard Исто што и тастер PAGE UP - + Scroll Down Следећа страна - + Equivalent to pressing the PAGE DOWN key on the keyboard Исто што и тастер PAGE DOWN - + Scroll up/down Навигација по странама - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys Груба навигација горе/доле употребом пот-а, исто се постиже тастерима PG UP/PG DN - + Move left Налево - + Equivalent to pressing the LEFT key on the keyboard Исто што и тастер стрелице на лево - + Move right Надесно - + Equivalent to pressing the RIGHT key on the keyboard Исто што и тастер стрелице на десно - + Move left/right Лево/десно - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys Померање лево/десно помоћу пот-а, исто се постиже тастерима стрелица лево/десно - + Move focus to right pane Пребаци се на десни сегмент - + Equivalent to pressing the TAB key on the keyboard Исто што и тастер TAB - + Move focus to left pane Пребаци се на леви сегмент - + Equivalent to pressing the SHIFT+TAB key on the keyboard Исто што и комбинација Shift+TAB - + Move focus to right/left pane Навигација кроз сегменте - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys Померање лево/десно кроз сегменте прозора помоћу пот-а, исто се постиже тастерима ТАВ/Shift+TAB - + Go to the currently selected item Скочи на одабрану ставку - + Choose the currently selected item and advance forward one pane if appropriate Маркирај одабрану ставку и пређи на одговарајући сегмент - + Load Track and Play - + Add to Auto DJ Queue (replace) Додај на Ауто-Диџеј листу (рокада) - + Replace Auto DJ Queue with selected tracks Нова Ауто-Диџеј листа од одабраних нумера - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing Укључи/искључи обраду сигнала - + Super Knob (control effects' Meta Knobs) Главни пот (контролише подесиве пот-е ефеката) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset Сл. меморисани ланац - + Previous Chain Претходни ланац - + Previous chain preset Претходни меморисани ланац - + Next/Previous Chain Сл./претх. меморисани ланац - + Next or previous chain preset Следећи или претходни меморисани ланац процесора - - + + Show Effect Parameters Приказ параметара ефекта - + Effect Unit Assignment - + Meta Knob Подесиви пот. - + Effect Meta Knob (control linked effect parameters) Подесиви пот. ефекта (за везивање параметара више ефеката) - + Meta Knob Mode Режим подесивог пот-а - + Set how linked effect parameters change when turning the Meta Knob. Подешавање реакције везаних пот-а - + Meta Knob Mode Invert Обрни ефекат подесивог пот-а - + Invert how linked effect parameters change when turning the Meta Knob. Наопако реаговање везаних пот-а - - + + Button Parameter Value - + Microphone / Auxiliary Микрофон / Екстерно - + Microphone On/Off Укљ/искљ микрофон - + Microphone on/off Микрофон укљ./искљ. - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) Одабир режима компресије микрофона (искљ., аутоматски, ручно) - + Auxiliary On/Off Укљ. искљ. екстерно - + Auxiliary on/off Активација екстерног сигнала - + Auto DJ Самостални Диџеј - + Auto DJ Shuffle Ауто-Диџеј "шафл" - + Auto DJ Skip Next Ауто-Диџеј - прескочи следеће - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next Ауто-Диџеј - постепено пређи на сл. - + Trigger the transition to the next track Окините прелаз на следећу нумеру - + User Interface Корисничко сучеље - + Samplers Show/Hide Приказ семплера - + Show/hide the sampler section Прикажи/сакриј одељак узорчника - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide Приказ аналогне контроле - + Show/hide the vinyl control section Прикажи/сакриј одељак управљања плочом - + Preview Deck Show/Hide Приказ припремног дека - + Show/hide the preview deck Прикажи/сакриј дек прегледа - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide Приказ индикатора аналогне контроле - + Show/hide spinning vinyl widget Прикажи/сакриј елемент окретања плоче - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom Ширина осцилоскопа - + Waveform Zoom Ширина приказа звука - + Zoom waveform in Сузи осцилоскоп - + Waveform Zoom In Фокусирај осцилоскоп на мањи сегмент - + Zoom waveform out Фокусирај осцилоскоп на шири сегмент - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3191,33 +3259,33 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. Покушајте да средите проблем ресетовањем контролера - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. Изворни код садржи грешке. @@ -3253,133 +3321,133 @@ CrateFeature - + Remove Уклони - - + + Create New Crate Нова гајбица - + Rename Преименуј - - + + Lock Закључај - + Export Crate as Playlist - + Export Track Files Направи фајл - + Duplicate Дуплирај - + Analyze entire Crate Анализирај целу гајбицу - + Auto DJ Track Source Селекција за Ауто-Диџеј-а - + Enter new name for crate: Унесите назив нове гајбице: - - + + Crates Гајбице - - + + Import Crate Увези гајбицу - + Export Crate Извези гајбицу - + Unlock Откључај - + An unknown error occurred while creating crate: Дошло је до непознате грешке приликом стварања гајбице: - + Rename Crate Преименуј гајбицу - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed Нисам успео да преименујем гајбицу - + Crate Creation Failed Креирање гајбице неуспешно - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) М3У списак нумера (*.m3u);;М3У8 списак нумера (*.m3u8);;ПЛС списак нумера (*.pls);;Текстуални ЦСВ (*.csv);;Читљив текст (*.txt) - + Crates are a great way to help organize the music you want to DJ with. Гајбице су одличан начин за испомоћ приликом организовања музике са којом желите да радите у диџеју. - + Crates let you organize your music however you'd like! Гајбице вам омогућавају да организујете вашу музику онако како ви то хоћете! - + A crate cannot have a blank name. Назив гајбице не може бити празан. - + A crate by that name already exists. Већ постоји гајбица са овим називом. @@ -3449,37 +3517,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: Уз допринос: - + And special thanks to: Посебно се захваљујемо: - + Past Developers Претходни програмери - + Past Contributors Претходни доприносиоци - + Official Website - + Donate @@ -4989,34 +5057,34 @@ MIDI учење, за одабрани контролер. DlgPrefControlsDlg - + Skin Маска - + Tool tips Описи алата - + Select from different color schemes of a skin if available. Одабир из селекције боја за ваш стил, ако постоји - + Color scheme Палета боја - + Locales determine country and language specific settings. Регија одређује вашу земљу и скуп језичких својствености. - + Locale Место @@ -5026,53 +5094,43 @@ MIDI учење, за одабрани контролер. Избори управљачке апаратуре - + HiDPI / Retina scaling Увећање за високе резолуције - + Change the size of text, buttons, and other items. Мења величину текста, дугмади и осталих елемената. - - Adopt scale factor from the operating system - Користи системско увећање. - - - - Auto Scaling - Аутоматско увећање - - - + Screen saver Штедња екрана - + Start in full-screen mode Лансирај у режиму испуњеног екрана - + Full-screen mode Режим испуњеног екрана - + Off Искљ. - + Library only Само у бирачу нумера - + Library and Skin Бирач нумера и главна апаратура @@ -5713,42 +5771,41 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. Овај дизајн захтева резолуцију екрана која је већа од тренутне. - + Allow screensaver to run Дозволи штедњу екрана при раду - + Prevent screensaver from running Спречи штедњу екрана - + Prevent screensaver while playing Спречи гашење екрана при репродукцији - + This skin does not support color schemes Овај дизајн не подржава промену палете боја - + Information Обавештење - - Mixxx must be restarted before the new locale setting will take effect. - Миксиксикс ће активирати регионалне -поставке тек након следећег покретања. + + Mixxx must be restarted before the new locale or scaling settings will take effect. + @@ -5969,32 +6026,32 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added Фолдер додат - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? Додали сте неке фолдере у Базу. Песме у овим фолдерима нису доступне док не извршите упит у Базу. Да ли желите то сада? - + Scan Скен - + Choose a music directory Одаберите фолдер са музиком - + Confirm Directory Removal Потврди уклањање фолдера - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. Миксиксикс више неће пратити овај фолдер и његове измене. Шта тачно @@ -6007,7 +6064,7 @@ and allows you to pitch adjust them for harmonic mixing. будете уврстили у дискотеку. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. Мета-подаци се односе на све детаље о нумери (извођач, назив, @@ -6019,28 +6076,28 @@ and allows you to pitch adjust them for harmonic mixing. мењати или брисати. - + Hide Tracks Сакриј нумере - + Delete Track Metadata Уклони мета-податке нумере - + Leave Tracks Unchanged Не мењај ништа - + Relink music directory to new location Пребаците извор Микс-ове дискотеке на неки други фолдер - + Select Library Font Стила текста бирача нумера @@ -7093,32 +7150,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered Издвојено - + HSV ХСВ - + RGB - + OpenGL not available ОпенГЛ није доступан - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7332,72 +7389,72 @@ Select from different types of displays for the waveform, which differ primarily Библиотека - + Interface Сучеље - + Waveforms - + Auto DJ Самостални Диџеј - + Equalizers Уједначавачи - + Decks - + Colors - + Crossfader Постепени прелаз - + Effects Дејства - + LV2 Plugins - + Recording Снимање - + Beat Detection Откривање такта - + Key Detection - + Normalization Нормализација - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7407,12 +7464,12 @@ Select from different types of displays for the waveform, which differ primarily Управљање плочом - + Live Broadcasting Емитовање уживо - + Modplug Decoder @@ -7553,123 +7610,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Година - + Title Наслов - - + + Artist Извођач - - + + Album Албум - + Album Artist Извођач - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous &Претходна - + &Next &Следећа - + &Apply &Примени - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -8061,17 +8118,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -8172,38 +8229,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes ајТјунс - - + + Select your iTunes library Изаберите вашу ајТјунс библиотеку - + (loading) iTunes (учитавам) ајТјунс - + Use Default Library Користи основну библиотеку - + Choose Library... Изабери библиотеку... - + Error Loading iTunes Library Грешка учитавања ајТјунс библиотеке - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. Дошло је до грешке учитавања ваше библиотеке ајТјунса. Неке од ваших нумера ајТјунса или спискови нумера можда нису учитани. @@ -8211,13 +8268,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8225,57 +8282,57 @@ support. - + activate покрени - + toggle окини - + right десно - + left лево - + right small мали десни - + left small мали леви - + up горе - + down доле - + up small мало горе - + down small мало доле - + Shortcut Пречица @@ -8296,22 +8353,22 @@ support. LibraryFeature - + Import Playlist Увезите списак нумера - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Спискови нумера (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8322,27 +8379,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Прегледач библиотека - + It's taking Mixxx a minute to scan your music library, please wait... Миксиксу ће бити потребан минут да прегледа вашу музичку библиотеку, молим сачекајте... - + Cancel Откажи - + Scanning: Прегледам: - + Scanning cover art (safe to cancel) @@ -8458,181 +8515,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy Звучни уређај је заузет - + <b>Retry</b> after closing the other application or reconnecting a sound device <b>Покушајте поново</b> након што затворите други прог или поново прикључите звучни уређај - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. <b>Поново подесите</b> подешавања звучног уређаја Миксикса. - - + + Get <b>Help</b> from the Mixxx Wiki. Нађите <b>Помоћ</b> на Викију Миксикса. - - - + + + <b>Exit</b> Mixxx. <b>Изађите</b> из Миксикса. - + Retry Покушај поново - + skin - - + + Reconfigure Поново подеси - + Help Помоћ - - + + Exit Изађи - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices Нема излазних уређаја - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. Миксикс је подешен без иједног излазног звучног уређаја. Обрада звука ће бити онемогућена без подешеног излазног уређаја. - + <b>Continue</b> without any outputs. <b>Наствите</b> без икаквих излаза. - + Continue Настави - + Load track to Deck %1 Учитај нумеру на носач %1 - + Deck %1 is currently playing a track. Носач %1 тренутно пушта нумеру. - + Are you sure you want to load a new track? Да ли сигурно желите да учитате нову нумеру? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file Грешка у датотеци маске - + The selected skin cannot be loaded. Изабрана маска не може бити учитана. - + OpenGL Direct Rendering Посредно исцртавање ОпенГЛ-а - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Потврди излаз - + A deck is currently playing. Exit Mixxx? Носач тренутно пушта. Да изађем из Миксикса? - + A sampler is currently playing. Exit Mixxx? Узорчник тренутно пушта. Да изађем из Миксикса? - + The preferences window is still open. Прозор поставки је још увек отворен. - + Discard any changes and exit Mixxx? Да одбацим могуће измене и да напустим Миксикс? @@ -8705,43 +8762,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Закључај - + Playlists Списак нумера - + Unlock Откључај - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. Неки диџеји изграде спискове нумера пре него ли обаве изведбу, а неки то раде у току саме представе. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. Када користите списак нумера током живог ДиЏеј скупа, сетите се да увек обратите пажњу на то како ваша публика реагује на музику коју сте изабрали за пуштање. - + Create New Playlist Састави листу песама @@ -8749,58 +8806,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Скен - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. Надограђујем МИксикс са в1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. Миксикс има нови и побољшани откривач такта. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. Ово не утиче на сачуване наговештаје, битне наговештаје, спискове нумера или гајбице. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. Ако не желите да Миксикс поново обради ваше нумере, изаберите „Задржи тренутне мреже тактова“. Ово подешавање можете да измените било када у одељку „Откривање такта“ у поставкама. - + Keep Current Beatgrids Задржи тренутне мреже тактова - + Generate New Beatgrids Створи нове мреже тактова @@ -8984,7 +9041,7 @@ Do you want to scan your library for cover files now? - + Encoder Кодер @@ -10110,12 +10167,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10253,54 +10310,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists Списак нумера - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10309,7 +10366,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox Ритам машина @@ -10360,34 +10417,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates Гајбице - + Check for Serato databases (refresh) - + (loading) Serato @@ -10410,12 +10467,12 @@ Fully right: end of the effect period Историјат - + Unlock Откључај - + Lock Закључај @@ -11374,6 +11431,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12549,11 +12631,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12569,16 +12646,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. Носачи могу да се усклађују са узорчницима а узорчници могу само да се усклађују са носачима. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12594,16 +12661,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -13157,22 +13214,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor Трактор - + (loading) Traktor (учитавам) Трактор - + Error Loading Traktor Library Грешка учитавања библиотеке Трактора - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. Дошло је до грешке учитавања ваше библиотеке Трактора. Неке од ваших нумера Трактора или спискови нумера можда нису учитани. @@ -13784,20 +13841,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Пропуштање - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13968,8 +14025,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Жанр - - Folder + + Directory @@ -14212,155 +14269,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 Палуба %1 - + Sampler %1 Узорник %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Састави листу песама - + Enter name for new playlist: Ново име за листу песама: - + New Playlist Нови списак нумера - - - + + + Playlist Creation Failed Стварање списка нумера није успело - + A playlist by that name already exists. Већ постоји списак нумера са овим називом. - + A playlist cannot have a blank name. Назив списка нумера не може бити празан. - + An unknown error occurred while creating playlist: Дошло је до непознате грешке приликом стварања списка нумера: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14368,7 +14430,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14405,128 +14467,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory Изаберите директоријум музичке библиотеке - + controllers - + Cannot open database Не могу да отворим базу података - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14605,7 +14594,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14662,62 +14651,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse Општи ХИД миш - + Generic HID Joystick Општи ХИД џојстик - + Generic HID Game Pad - + Generic HID Keyboard Општа ХИД тастатура - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_sv.qm b/res/translations/mixxx_sv.qm index a7f9f45fd5eed92c279068ef0be9fd3e7049f030..67e661a8ffbfecd93e2b14be84a0efc04227eeb5 100644 GIT binary patch delta 13598 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 AutoDJFeature - + Crates Backar - + Remove Crate as Track Source Avlägsna back som låtkälla - + Auto DJ Auto DJ - + Add Crate as Track Source Lägg till back som låtkälla @@ -43,25 +43,25 @@ BansheeFeature - + Banshee Banshee - - + + Error loading Banshee database Kunde inte ladda Banshee databas - + Banshee database file not found at Kunde inte hitta någon Banshee database i - + There was an error loading your Banshee database at Ett fel uppstod vid laddning av din Banshee databas i @@ -71,32 +71,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Spara till Auto DJ kö (sist) - + Add to Auto DJ Queue (top) Spara till Auto DJ kö (först) - + Add to Auto DJ Queue (replace) - + Import Playlist Importera spellista - + Playlist Creation Failed Spellistan gick inte att skapa - + An unknown error occurred while creating playlist: Ett okänt fel uppstod när spellistan skapades: @@ -104,144 +104,144 @@ BasePlaylistFeature - + New Playlist Ny spellista - + Add to Auto DJ Queue (bottom) Spara till Auto DJ kö (sist) - - + + Create New Playlist Skapa ny spellista - + Add to Auto DJ Queue (top) Spara till Auto DJ kö (först) - + Remove Ta bort - + Rename Byt namn - + Lock Lås - + Duplicate Duplicera - - + + Import Playlist Importera spellista - + Export Track Files Exportera spår-filer - + Analyze entire Playlist Analysera hela spellistan - + Enter new name for playlist: Mata in ett nytt namn för spellistan: - + Duplicate Playlist Duplicera spellista - - + + Enter name for new playlist: Mata in ett namn för ny spellista: - - + + Export Playlist Exportera spellista - + Add to Auto DJ Queue (replace) - + Rename Playlist Byt namn på spellista - - + + Renaming Playlist Failed Namnbyte misslyckades - - - + + + A playlist by that name already exists. En spellista med det namnet finns redan. - - - + + + A playlist cannot have a blank name. En spellista kan inte vara utan namn. - + _copy //: Appendix to default name when duplicating a playlist _kopiera - - - - - - + + + + + + Playlist Creation Failed Spellistan gick inte att skapa - - + + An unknown error occurred while creating playlist: Ett okänt fel uppstod när spellistan skapades: - + M3U Playlist (*.m3u) M3U-spellista (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U spellista (*.m3u);;M3U8 spellista (*.m3u8);;PLS spellista (*.pls);;Text CSV (*.csv);;Läsbar text (*.txt) @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Kunde inte ladda in låt. @@ -514,7 +514,7 @@ - + Computer Dator @@ -534,7 +534,7 @@ Skanna - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -647,12 +647,12 @@ Fil skapad - + Mixxx Library Mixxx-bibliotek - + Could not load the following file because it is in use by Mixxx or another application. Följande fil kunde inte laddas in för att den används av Mixxx eller ett annat program. @@ -683,6 +683,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -865,13 +943,13 @@ - + Set to full volume Ställ in full ljudstyrka - + Set to zero volume Ställ ljudstyrkan till noll @@ -896,13 +974,13 @@ Knapp baklänges-slinga (förhandslyssning) - + Headphone listen button Lyssna-knapp hörlur - + Mute button Tysta-knapp @@ -918,25 +996,25 @@ - + Mix orientation (e.g. left, right, center) Mix-balans (t.ex. vänster, höger, i mitten) - + Set mix orientation to left Sätter mix-balansen åt vänster - + Set mix orientation to center Sätter mix-balansen i mitten - + Set mix orientation to right Sätter mix-balansen åt höger @@ -980,36 +1058,6 @@ Toggle quantize mode Växla kvantiseringssätt - - - Increase internal master BPM by 1 - Öka intern huvud-BPM med 1 - - - - Decrease internal master BPM by 1 - Minska intern huvud-BPM med 1 - - - - Increase internal master BPM by 0.1 - Öka intern huvud-BPM med 0.1 - - - - Decrease internal master BPM by 0.1 - Minska intern huvud-BPM med 0.1 - - - - Toggle sync master - Växla sync-master - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - 3-vägsväljare för synroniseringssätt (AV, FÖLJARE, MASTER) - One-time beat sync (tempo only) @@ -1021,7 +1069,7 @@ Engångs takt-sync (endast fas) - + Toggle keylock mode Växla sätt för tonhöjdslås @@ -1031,199 +1079,199 @@ Equalizers - + Vinyl Control Vinylstyrning - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) Växla markeringssätt för vinylstyrning (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) Växla vinylstyrningssätt (ABS/REL/CONST) - + Pass through external audio into the internal mixer Passera genom externt ljud till den interna mixern - + Cues Markeringar - + Cue button Markeringsknapp - + Set cue point Ange markeringspunkt - + Go to cue point Hoppa till markeringspunkt - + Go to cue point and play Hoppa till markeringspunkt och spela - + Go to cue point and stop Hoppa till markeringspunkt och stoppa - + Preview from cue point Förhandslyssna från markeringspunkt - + Cue button (CDJ mode) Markeringsknapp (CDJ-metod) - + Stutter cue Ryckvis markering - + Hotcues Snabbmarkeringar - + Set, preview from or jump to hotcue %1 Sätt, förhandslyssna från eller hoppa till snabbmarkering %1 - + Clear hotcue %1 Ta bort snabbmarkering %1 - + Set hotcue %1 Sätt snabbmarkering %1 - + Jump to hotcue %1 Hoppa till snabbmarkering %1 - + Jump to hotcue %1 and stop Hoppa till snabbmarkering %1 och stoppa - + Jump to hotcue %1 and play Hoppa till snabbmarkering %1 och spela - + Preview from hotcue %1 Förhandslyssna från snabbmarkering %1 - - + + Hotcue %1 Snabbmarkering %1 - + Looping Slinga - + Loop In button Slinga in-knapp - + Loop Out button Slinga ut-knapp - + Loop Exit button Upprepa Avsluta-knappen - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 32 - + 64 64 - + Move loop forward by %1 beats Flytta slinga framåt med %1 taktslag - + Move loop backward by %1 beats Flytta slinga bakåt med %1 taktslag - + Create %1-beat loop Skapa en %1-taktslags-slinga - + Create temporary %1-beat loop roll Skapa en temporär %1-takts rullande slinga - + Library Bibliotek @@ -1334,20 +1382,20 @@ - - + + Volume Fader Volymfader - + Full Volume Full volym - + Zero Volume Noll volym @@ -1363,7 +1411,7 @@ - + Mute Tysta @@ -1374,7 +1422,7 @@ - + Headphone Listen Hörlurslyssning @@ -1395,25 +1443,25 @@ - + Orientation Balans - + Orient Left Balans till vänster - + Orient Center Balans i mitten - + Orient Right Balans till höger @@ -1512,52 +1560,6 @@ Sync Sync - - - Sync Mode - Synkroniseringssätt - - - - Internal Sync Master - Intern sync-master - - - - Toggle Internal Sync Master - Växla intern sync-master - - - - - Internal Master BPM - Intern huvud-BPM - - - - Internal Master BPM +1 - Intern huvud-BPM +1 - - - - Internal Master BPM -1 - Intern huvud-BPM -1 - - - - Internal Master BPM +0.1 - Intern huvud-BPM +0.1 - - - - Internal Master BPM -0.1 - Intern huvud-BPM -0.1 - - - - Sync Master - Huvud-synkning - Beat Sync One-Shot @@ -1574,37 +1576,37 @@ One-Shot fas-synkning - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust Justera hastighet - + Adjust pitch from speed slider pitch - + Match musical key Matcha tonhöjden - + Match Key Matcha nyckel - + Reset Key Återställningsnyckel - + Resets key to original Återställ nyckel till original @@ -1645,466 +1647,466 @@ Bas-EQ - + Toggle Vinyl Control Växla vinylstyrning - + Toggle Vinyl Control (ON/OFF) Växla vinylstyrning (PÅ/AV) - + Vinyl Control Mode Vinylstyrningssätt - + Vinyl Control Cueing Mode Markeringssätt för vinylstyrning - + Vinyl Control Passthrough Vinylstyrning "släpp igenom" - + Vinyl Control Next Deck Vinylstyrning "nästa tallrik" - + Single deck mode - Switch vinyl control to next deck Entallriksmodus - växla vinylstyrning till nästa tallrik - + Cue Markering - + Set Cue Sätt markering - + Go-To Cue Gå till markering - + Go-To Cue And Play Gå till markering och spela - + Go-To Cue And Stop Gå till markering och stoppa - + Preview Cue Förhandslyssna markering - + Cue (CDJ Mode) Markering (CDJ-metod) - + Stutter Cue Ryckvis markering - + Go to cue point and play after release - + Clear Hotcue %1 Ta bort snabbmarkering %1 - + Set Hotcue %1 Sätt snabbmarkering %1 - + Jump To Hotcue %1 Hoppa till snabbmarkering %1 - + Jump To Hotcue %1 And Stop Hoppa till snabbmarkering %1 och stoppa - + Jump To Hotcue %1 And Play Hoppa till snabbmarkering %1 och spela - + Preview Hotcue %1 Förhandslyssna snabbmarkering %1 - + Loop In Slinga in - + Loop Out Slinga ut - + Loop Exit Avsluta slinga - + Reloop/Exit Loop Repetera/avsluta slinga - + Loop Halve Halv slinga - + Loop Double Dubbel slinga - + 1/32 1/32 - + 1/16 1/16 - + 1/8 1/8 - + 1/4 1/4 - + Move Loop +%1 Beats Förskjut slinga +%1 taktslag - + Move Loop -%1 Beats Förskjut slinga -%1 taktslag - + Loop %1 Beats Kretsa runt %1 taktslag - + Loop Roll %1 Beats Rullande slinga %1 taktslag - + Add to Auto DJ Queue (bottom) Spara till Auto DJ kö (sist) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) Spara till Auto DJ kö (först) - + Prepend selected track to the Auto DJ Queue - + Load Track Ladda låt - + Load selected track Ladda valda låtar - + Load selected track and play Ladda utvald låt och spela - - + + Record Mix Spela in mix - + Toggle mix recording Mix-inspelning på/av - + Effects Effekter - + Quick Effects Snabbeffekter - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect Snabbeffekt - + Clear effect rack Nollställ effektracket - + Clear Effect Rack Nollställ effektracket - + Clear Unit Rensa enhet - + Clear effect unit Nollställ effektenheten - + Toggle Unit Växla enhet - + Dry/Wet Torrt/vått - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob Superknapp - + Next Chain Nästa kedja - + Assign Tilldela - + Clear Rensa - + Clear the current effect Nollställ aktuell effekt - + Toggle Växla - + Toggle the current effect Slå på/av aktuell effekt - + Next Nästa - + Switch to next effect Växla till nästa effekt - + Previous Bakåt - + Switch to the previous effect Växla till föregående effekt - + Next or Previous Nästa eller föregående - + Switch to either next or previous effect Växla till nästa eller föregående effekt - - + + Parameter Value Parameter-värde - - + + Microphone Ducking Strength Styrka mikrofonduckning - + Microphone Ducking Mode Mikrofonducknings-sätt - + Gain Förstärkning - + Gain knob Vred för ökning - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle Växla Auto DJ - + Toggle Auto DJ On/Off Växla Auto DJ på/av - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. Visa eller dölj mixern. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore Bibliotek maximera/återställ - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide Effektrack visa/dölj - + Show/hide the effect rack Visa/dölj effektracket - + Waveform Zoom Out Vågform zooma ut @@ -2129,93 +2131,93 @@ - + Playback Speed Uppspelningshastighet - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed Öka hastighet - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed Sänk hastighet - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed Öka hastighet temporärt - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed Minska hastighet temporärt - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2272,806 +2274,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed Hastighet - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length Halvera looplängden - + Double the loop length Dubbla looplängden - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up Flytta upp - + Equivalent to pressing the UP key on the keyboard - + Move down Flytta ned - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down Flytta upp/ner - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up Scrolla upp - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down Scrolla ner - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down Scrolla upp/ner - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left Flytta vänster - + Equivalent to pressing the LEFT key on the keyboard - + Move right Flytta höger - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right Flytta vänster/höger - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset Nästa kedjeförinställning - + Previous Chain Föregående kedja - + Previous chain preset Föregående kedjeförinställning - + Next/Previous Chain Nästa/föregående kedja - + Next or previous chain preset Nästa eller föregående kedjeförinställning - - + + Show Effect Parameters Visa effektparametrar - + Effect Unit Assignment - + Meta Knob Meta-ratt - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary Mikrofon / Extraingång - + Microphone On/Off Mikrofon på/av - + Microphone on/off Mikrofon på/av - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) Växla mikrofonducknings-sätt (AV, AUTO, MANUELL) - + Auxiliary On/Off Extraingång på/av - + Auxiliary on/off Extraingång på/av - + Auto DJ Auto DJ - + Auto DJ Shuffle Slumpvis Auto DJ - + Auto DJ Skip Next Auto DJ hoppa över nästa - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next Auto DJ tona till nästa - + Trigger the transition to the next track Utlös övergången till nästa låt - + User Interface Användargränssnitt - + Samplers Show/Hide Visa/dölj samplare - + Show/hide the sampler section Visa/dölj samplar-delen - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. Streama din mix över internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide Vinylstyrning visa/dölj - + Show/hide the vinyl control section Visa/dölj vinylstyrningssektionen - + Preview Deck Show/Hide Visa/dölj förhandslyssnings-tallrikar - + Show/hide the preview deck Visa/dölj förhandsgranskningstallriken - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide Visa/dölj vinyl-snurra - + Show/hide spinning vinyl widget Visa/dölj vinylsnurrorna - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom Vågform zoom - + Waveform Zoom Vågform zoom - + Zoom waveform in Vågform zooma in - + Waveform Zoom In Vågform zooma in - + Zoom waveform out Vågform zooma ut - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3160,32 +3228,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. Försök att rädda situationen genom att återställa din styrenhet. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. Skriptkoden måste fixas. @@ -3221,133 +3289,133 @@ CrateFeature - + Remove Ta bort - - + + Create New Crate Skapa ny back - + Rename Byt namn - - + + Lock Lås - + Export Crate as Playlist - + Export Track Files Exportera spår-filer - + Duplicate Duplicera - + Analyze entire Crate Analysera hela backen - + Auto DJ Track Source Låtkälla för Auto DJ - + Enter new name for crate: Ange ett namn för den nya backen: - - + + Crates Backar - - + + Import Crate Importera back - + Export Crate Exportera back - + Unlock Lås upp - + An unknown error occurred while creating crate: Ett okänt fel uppstod vid skapandet av backen - + Rename Crate Döp om back - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed Omdöpning av back misslyckades - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U spellista (*.m3u);;M3U8 spellista (*.m3u8);;PLS spellista (*.pls);;Text CSV (*.csv);;Läsbar text (*.txt) - + Crates are a great way to help organize the music you want to DJ with. Backar är ett utmärkt sätt att hjälpa till att organisera den musik du vill mixa med. - + Crates let you organize your music however you'd like! Med backar kan du organisera din musik hur du vill - + A crate cannot have a blank name. En back kan inte ha ett tomt namn. - + A crate by that name already exists. En back med det namnet finns redan. @@ -3417,37 +3485,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: Med bidrag från: - + And special thanks to: Och speciellt tack till: - + Past Developers Tidigare utvecklare - + Past Contributors Tidigare bidragsgivare - + Official Website - + Donate @@ -4879,32 +4947,32 @@ Spara inställningarna och fortsätt? DlgPrefControlsDlg - + Skin Skal - + Tool tips Verktygstips - + Select from different color schemes of a skin if available. Välja mellan olika färgscheman för skinnet om det finns några, - + Color scheme Färgschema - + Locales determine country and language specific settings. Locales är specifika inställningar för land och språk. - + Locale Lokal @@ -4914,52 +4982,42 @@ Spara inställningarna och fortsätt? Inställningar för gränssnittet - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver Skärmsläckare - + Start in full-screen mode Starta i fullskärmsläge - + Full-screen mode Helskärmsläge - + Off Av - + Library only Bibliotek endast - + Library and Skin @@ -5570,38 +5628,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. Den minsta storleken för det valda skinnet är större än din skärmupplösning. - + Allow screensaver to run Tillåt skärmsläckare att starta - + Prevent screensaver from running Hindra skärmsläckare från att starta - + Prevent screensaver while playing Hindra skärmsläckare vid uppspelning - + This skin does not support color schemes Det här skinnet har inte stöd för färgscheman - + Information Information - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5820,62 +5878,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added Musik-mapp tillagd - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan Skanna - + Choose a music directory Välj en musikmapp - + Confirm Directory Removal Bekräfta borttagning av mapp - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. Mixxx kommer inte längre att övervaka denna mapp och leta efter nya låtar. Vad vill du göra med låtarna i denna mapp och dess undermappar?<ul><li>Göm alla låtar från denna mapp och undermappar.</li><li>Radera permanent alla metadata för dessa låtar i Mixxx.</li><li>Låt låtarna vara kvar oförändrade.</li></ul>Om du gömmer låtarna så sparas metadatan, ifall du vill lägga till dom igen senare. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. Metadata betyder alla låtinformationer (artist, titel, räkneverk, osv.) och taktmönster, snabbmarkeringar och slingor. Bara Mixxx-biblioteket omfattas av urvalet. Inget på hårddisken kommer att förändras eller raderas. - + Hide Tracks Dölj låt - + Delete Track Metadata Radera låt-metadata - + Leave Tracks Unchanged Gör inga låtändringar - + Relink music directory to new location Länka om musikmappen till en ny ort. - + Select Library Font Välj biblioteksfont @@ -6879,32 +6937,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered Filtrerad - + HSV HSV - + RGB RGB - + OpenGL not available OpenGL är inte tillgängligt - + dropped frames tappade frames - + Cached waveforms occupy %1 MiB on disk. @@ -7118,72 +7176,72 @@ Select from different types of displays for the waveform, which differ primarily Bibliotek - + Interface Gränssnitt - + Waveforms Vågformer - + Auto DJ Auto DJ - + Equalizers Equalizers - + Decks - + Colors - + Crossfader Crossfader - + Effects Effekter - + LV2 Plugins - + Recording Inspelning - + Beat Detection Takthittare - + Key Detection Tonartsfinnare - + Normalization Normalisering - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7193,12 +7251,12 @@ Select from different types of displays for the waveform, which differ primarily Vinylstyrning - + Live Broadcasting Livesändning - + Modplug Decoder Modplug-avkodare @@ -7339,123 +7397,123 @@ Select from different types of displays for the waveform, which differ primarily Välj den inställning som passar ihop bäst - - + + Track Låt - - + + Year År - + Title Titel - - + + Artist Artist - - + + Album Album - + Album Artist Album-artist - + Fetching track data from the MusicBrainz database Hämtar låtdata från databasen MusicBrainz - + Mixxx could not find this track in the MusicBrainz database. Mixxx kunde inte hitta denna låt i databasen MusicBrainz. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. Hämta API-nyckel - + Submit Submits audio fingerprints to the MusicBrainz database. Lämna in - + New Column Ny kolumn - + New Item Nytt objekt - + &Previous &Föregående - + &Next &Nästa - + &Apply &Verkställ - + &Close &Stäng - + Status: %1 Status: %1 - + HTTP Status: %1 HTTP-Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx kan inte ansluta till %1 av okänd anledning. - + Mixxx can't connect to %1. Mixxx kan inte ansluta till %1. - + Original tags Ursprungliga taggar - + Suggested tags Föreslagna taggar @@ -7847,17 +7905,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) Soundtouch (snabbare) - + Rubberband (better) Gummiband (bättre) - + Unknown (bad value) Okänd (dåligt värde) @@ -7958,38 +8016,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes iTunes - - + + Select your iTunes library Välj ut ditt iTunes-bibliotek - + (loading) iTunes (laddar) iTunes - + Use Default Library Använd standardbiblioteket - + Choose Library... Välj bibliotek... - + Error Loading iTunes Library Kunde inte ladda iTunes-bibliotek - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. Det uppstod ett fel när ditt iTunes-bibliotek laddades. Vissa av dina iTunes-låtar eller spellistor kanske inte lästes in. @@ -7997,13 +8055,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. Felsäker modus aktiverad - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8012,57 +8070,57 @@ support. stöd. - + activate aktivera - + toggle växla - + right höger - + left vänster - + right small höger liten - + left small vänster liten - + up upp - + down ner - + up small upp liten - + down small ner liten - + Shortcut Genväg @@ -8083,22 +8141,22 @@ stöd. LibraryFeature - + Import Playlist Importera spellista - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Spellistsfiler (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8109,27 +8167,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Biblioteks-scanner - + It's taking Mixxx a minute to scan your music library, please wait... Mixxx behöver en minut för att skanna ditt musikbibliotek, vänligen vänta... - + Cancel Avbryt - + Scanning: Skanning: - + Scanning cover art (safe to cancel) @@ -8246,183 +8304,183 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy Ljudenheten är upptagen - + <b>Retry</b> after closing the other application or reconnecting a sound device <b>Försök igen</b> efter det andra programmet har stängts eller efter att en ljudenhet åter anslutits - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. <b>Konfigurera om</b> Mixxx ljudenhetsinställningar. - - + + Get <b>Help</b> from the Mixxx Wiki. Få <b>Hjälp</b> från Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. <b>Avsluta</b> Mixxx. - + Retry Försök igen - + skin - - + + Reconfigure Konfigurera om - + Help Hjälp - - + + Exit Avsluta - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error Ljudenhetsfel - + <b>Retry</b> after fixing an issue - + No Output Devices Inga utenheter - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. Mixxx konfigurerades utan några enheter för ljudåtergivning. All ljudbehandling är deaktiverad när inga ljudutgångar är konfigurerade. - + <b>Continue</b> without any outputs. <b>Fortsätt</b> utan några utgångar. - + Continue Fortsätt - + Load track to Deck %1 Ladda låt till tallrik %1 - + Deck %1 is currently playing a track. Tallrik %1 spelar en låt just nu. - + Are you sure you want to load a new track? Är du säker på att du vill ladda en nytt låt? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. Ingen enhet för ljudingång är utvald för den här vinylstyrningsenheten. Välj först en ingångsenhet i inställningarna för ljudhårdvara. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. Ingen ingångsenhet utvald för den här genomgångsstyrenheten. Välj först ut en ingångsenhet i inställningarna för ljudhårdvara. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file Fel hittat i skinn-filen - + The selected skin cannot be loaded. Kunde inte ladda in det utvalda skinnet. - + OpenGL Direct Rendering OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Bekräfta avsluta - + A deck is currently playing. Exit Mixxx? En tallrik spelar fortfarande. Vill du avsluta Mixxx? - + A sampler is currently playing. Exit Mixxx? En samplare spelar fortfarande. Vill du avsluta Mixxx? - + The preferences window is still open. Inställningsfönstret är fortfarande öppnat. - + Discard any changes and exit Mixxx? Kassera eventuella ändringar och avsluta Mixxx? @@ -8495,43 +8553,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Lås - + Playlists Spellistor - + Unlock Lås upp - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. En del DJs sätter ihop spellistor innan de uppträder live, medan andra föredrar att sätte ihop dem spontant. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. On du använder en spellista vid ett live-DJ uppträdande, tänk på att kolla hur publiken reagerar på musiken du valt ut. - + Create New Playlist Skapa ny spellista @@ -8539,58 +8597,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx Uppgraderar Miixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Skanna - + Later Senare - + Upgrading Mixxx from v1.9.x/1.10.x. Uppgradering av Mixxx från v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. Mixxx har en ny och förbättrad taktdetektor. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. När du laddar låtar, kan Mixxx analysera om dem och skapa nya, mer exakta taktmönster. Detta gör att automatisk taktsynkning och slingor fungerar bättre. - + This does not affect saved cues, hotcues, playlists, or crates. Detta påverkar varken sparade markeringar, snabbmarkeringar, spellistor eller backar. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. Om du inte vill att Mixxx ska analysera om dina låtar, välj "Behåll aktuella taktmönster". Du kan ändra inställningen när du vill i "Takthittare"-sektionen under Inställningar. - + Keep Current Beatgrids Behåll aktuella Taktmönster - + Generate New Beatgrids Generera nya taktmönster @@ -8774,7 +8832,7 @@ Do you want to scan your library for cover files now? - + Encoder Kodare @@ -9900,12 +9958,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10043,54 +10101,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists Spellistor - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10099,7 +10157,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox Rhythmbox @@ -10150,34 +10208,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks Spår - + Crates Backar - + Check for Serato databases (refresh) - + (loading) Serato @@ -10200,12 +10258,12 @@ Fully right: end of the effect period Historia - + Unlock Lås upp - + Lock Lås @@ -11164,6 +11222,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12339,11 +12422,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize Äldre synkning - - - (This skin should be updated to use Master Sync!) - (Det här skinnet borde aktualisieras för att fungera med Master Sync!) - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12359,16 +12437,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. Tallrikar kan inte synkronisera till samplare och samplare kan endast synkronisera till tallrikar. - - - Enable Master Sync - Aktivera Master Sync - - - - Tap to sync the tempo to other playing tracks or the master clock. - Trumma för att synka tempot med andra låtar som spelas, eller med huvudtaktgivaren. - Hold for at least a second to enable sync lock for this deck. @@ -12384,16 +12452,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - Aktivera huvudtaktgivare för synkning - - - - When enabled, this device will serve as the master clock for all other decks. - Om aktiverad kommer denna utrustning att agera som huvudklocka för alla andra tallrikar. - Speed Control @@ -12947,22 +13005,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor Traktor - + (loading) Traktor (laddar) Traktor - + Error Loading Traktor Library Kunde inte ladda Traktor-bibliotek - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. Det uppstod ett fel när ditt Traktor-bibliotek laddades. Vissa av dina Traktor-låtar eller spellistor kanske inte lästes in. @@ -13574,20 +13632,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13758,8 +13816,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Genre - - Folder + + Directory @@ -14002,155 +14060,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 Tallrik %1 - + Sampler %1 Samplare %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Skapa ny spellista - + Enter name for new playlist: Mata in ett namn för ny spellista: - + New Playlist Ny spellista - - - + + + Playlist Creation Failed Spellistan gick inte att skapa - + A playlist by that name already exists. En spellista med det namnet finns redan. - + A playlist cannot have a blank name. En spellista kan inte vara utan namn. - + An unknown error occurred while creating playlist: Ett okänt fel uppstod när spellistan skapades: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14158,7 +14221,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus ESC @@ -14195,128 +14258,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory Välj mapp för musikbibliotek - + controllers - + Cannot open database Kan inte öppna databasen - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14395,7 +14385,7 @@ Klicka på OK för att avsluta. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14452,62 +14442,62 @@ Klicka på OK för att avsluta. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse Generisk HID-mus - + Generic HID Joystick Generisk HID-joystick - + Generic HID Game Pad - + Generic HID Keyboard Generiskt HID-tangentbord - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: @@ -14525,7 +14515,7 @@ Klicka på OK för att avsluta. No effect loaded. - + Ingen effekt laddad. \ No newline at end of file diff --git a/res/translations/mixxx_te.ts b/res/translations/mixxx_te.ts index ed6a51429e2..f15775fccf4 100644 --- a/res/translations/mixxx_te.ts +++ b/res/translations/mixxx_te.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates - + Remove Crate as Track Source - + Auto DJ - + Add Crate as Track Source @@ -43,24 +43,24 @@ BansheeFeature - + Banshee - - + + Error loading Banshee database - + Banshee database file not found at - + There was an error loading your Banshee database at @@ -69,32 +69,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) - + Add to Auto DJ Queue (top) - + Add to Auto DJ Queue (replace) - + Import Playlist పాటలజాబితాను దిగుమతిచేయి - + Playlist Creation Failed - + An unknown error occurred while creating playlist: @@ -102,144 +102,144 @@ BasePlaylistFeature - + New Playlist కొత్త పాటలజాబితా - + Add to Auto DJ Queue (bottom) - - + + Create New Playlist - + Add to Auto DJ Queue (top) - + Remove తీసివేయు - + Rename పేరుమార్చు - + Lock తాళంవేయి - + Duplicate - - + + Import Playlist పాటలజాబితాను దిగుమతిచేయి - + Export Track Files - + Analyze entire Playlist - + Enter new name for playlist: - + Duplicate Playlist - - + + Enter name for new playlist: - - + + Export Playlist పాటలజాబితాను ఎగుమతిచేయి - + Add to Auto DJ Queue (replace) - + Rename Playlist - - + + Renaming Playlist Failed పాటలజాబితా పేరుమార్చుటలో విఫలమైంది - - - + + + A playlist by that name already exists. - - - + + + A playlist cannot have a blank name. - + _copy //: Appendix to default name when duplicating a playlist - - - - - - + + + + + + Playlist Creation Failed - - + + An unknown error occurred while creating playlist: - + M3U Playlist (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. @@ -512,7 +512,7 @@ - + Computer @@ -532,7 +532,7 @@ - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -645,12 +645,12 @@ - + Mixxx Library - + Could not load the following file because it is in use by Mixxx or another application. @@ -681,6 +681,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -863,13 +941,13 @@ - + Set to full volume - + Set to zero volume @@ -894,13 +972,13 @@ - + Headphone listen button - + Mute button @@ -916,25 +994,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -978,36 +1056,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1019,7 +1067,7 @@ - + Toggle keylock mode @@ -1029,199 +1077,199 @@ - + Vinyl Control - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 - + 1 - + 2 - + 4 - + 8 - + 16 - + 32 - + 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library @@ -1332,20 +1380,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1361,7 +1409,7 @@ - + Mute @@ -1372,7 +1420,7 @@ - + Headphone Listen @@ -1393,25 +1441,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1510,52 +1558,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1572,37 +1574,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1643,466 +1645,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix - + Toggle mix recording - + Effects - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next - + Switch to next effect - + Previous - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2127,93 +2129,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2270,806 +2272,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3158,32 +3226,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3219,133 +3287,133 @@ CrateFeature - + Remove తీసివేయు - - + + Create New Crate - + Rename పేరుమార్చు - - + + Lock తాళంవేయి - + Export Crate as Playlist - + Export Track Files - + Duplicate - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates - - + + Import Crate - + Export Crate - + Unlock - + An unknown error occurred while creating crate: - + Rename Crate - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) - + Crates are a great way to help organize the music you want to DJ with. - + Crates let you organize your music however you'd like! - + A crate cannot have a blank name. - + A crate by that name already exists. @@ -3415,37 +3483,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4875,32 +4943,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin - + Tool tips - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4910,52 +4978,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off - + Library only - + Library and Skin @@ -5566,38 +5624,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5816,62 +5874,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6875,32 +6933,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7114,72 +7172,72 @@ Select from different types of displays for the waveform, which differ primarily - + Interface - + Waveforms - + Auto DJ - + Equalizers - + Decks - + Colors - + Crossfader - + Effects - + LV2 Plugins - + Recording - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7189,12 +7247,12 @@ Select from different types of displays for the waveform, which differ primarily - + Live Broadcasting - + Modplug Decoder @@ -7335,123 +7393,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year సంవత్సరం - + Title శీర్షిక - - + + Artist కళాకారి - - + + Album ఆల్బమ్ - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7843,17 +7901,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7954,38 +8012,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7993,13 +8051,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8007,57 +8065,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8078,22 +8136,22 @@ support. LibraryFeature - + Import Playlist పాటలజాబితాను దిగుమతిచేయి - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8104,27 +8162,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8240,181 +8298,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry - + skin - - + + Reconfigure - + Help - - + + Exit - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8485,43 +8543,43 @@ Do you want to select an input device? PlaylistFeature - + Lock తాళంవేయి - + Playlists - + Unlock - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist @@ -8529,58 +8587,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8764,7 +8822,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9890,12 +9948,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10033,54 +10091,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10089,7 +10147,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10140,34 +10198,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates - + Check for Serato databases (refresh) - + (loading) Serato @@ -10190,12 +10248,12 @@ Fully right: end of the effect period - + Unlock - + Lock తాళంవేయి @@ -11154,6 +11212,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12329,11 +12412,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12349,16 +12427,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12374,16 +12442,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12937,22 +12995,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13564,20 +13622,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13748,8 +13806,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.సాహిత్యం - - Folder + + Directory @@ -13992,155 +14050,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 - + Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist - + Enter name for new playlist: - + New Playlist కొత్త పాటలజాబితా - - - + + + Playlist Creation Failed - + A playlist by that name already exists. - + A playlist cannot have a blank name. - + An unknown error occurred while creating playlist: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14148,7 +14211,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14185,128 +14248,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14382,7 +14372,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14439,62 +14429,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_tr.qm b/res/translations/mixxx_tr.qm index 975d59b84147d508e5dacaf3bb9de64bbd689523..bb46d82b3800839954fe32ce944b211b213420a1 100644 GIT binary patch delta 6366 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 HrzQOlQ)yQ^ diff --git a/res/translations/mixxx_tr.ts b/res/translations/mixxx_tr.ts index d40e46688a8..101f4a5d77a 100644 --- a/res/translations/mixxx_tr.ts +++ b/res/translations/mixxx_tr.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Kutular - + Remove Crate as Track Source Kutuyu parça kaynağı olarak kaldır - + Auto DJ Otomatik DJ - + Add Crate as Track Source Kutuyu parça kaynağı olarak ekle @@ -43,25 +43,25 @@ BansheeFeature - + Banshee Banshee - - + + Error loading Banshee database Banshee veritabanı yüklenirken hata oluştu - + Banshee database file not found at Banshee veritabanı dosyası bulunamadı - + There was an error loading your Banshee database at Banshee veritabanınız yüklenirken hata oluştu @@ -71,32 +71,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Otomatik DJ kuyruğuna ekle (alta) - + Add to Auto DJ Queue (top) Otomatik DJ kuyruğuna ekle (üste) - + Add to Auto DJ Queue (replace) - + Import Playlist Çalma listesini içe aktar - + Playlist Creation Failed Çalma Listesi Oluşturulamadı - + An unknown error occurred while creating playlist: Çalma listesi oluşturulurken bilinmeyen bir hata oluştu: @@ -104,144 +104,144 @@ BasePlaylistFeature - + New Playlist Yeni çalma listesi - + Add to Auto DJ Queue (bottom) Otomatik DJ kuyruğuna ekle (alta) - - + + Create New Playlist Yeni çalma listesi oluştur - + Add to Auto DJ Queue (top) Otomatik DJ kuyruğuna ekle (üste) - + Remove Kaldır - + Rename Yeniden adlandır - + Lock Kilitle - + Duplicate Çoğalt - - + + Import Playlist Çalma listesini içe aktar - + Export Track Files Şarkı dosyalarını dışa aktar - + Analyze entire Playlist Tüm çalma listesini analiz et - + Enter new name for playlist: Çalma listesini adlandır - + Duplicate Playlist Çalma Listesini Çoğalt - - + + Enter name for new playlist: Yeni çalma listesini adlandır - - + + Export Playlist Çalma listesini dışa aktar - + Add to Auto DJ Queue (replace) - + Rename Playlist Çalma listesini yeniden adlandır - - + + Renaming Playlist Failed Çalma listesi yeniden adlandırılamadı - - - + + + A playlist by that name already exists. Bu isimde bir çalma listesi zaten var. - - - + + + A playlist cannot have a blank name. Liste ismi boş bırakılamaz - + _copy //: Appendix to default name when duplicating a playlist _kopyala - - - - - - + + + + + + Playlist Creation Failed Çalma Listesi Oluşturulamadı - - + + An unknown error occurred while creating playlist: Çalma listesi oluşturulurken bilinmeyen bir hata oluştu: - + M3U Playlist (*.m3u) M3U Çalma Listesi (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U Çalma Listesi (*.m3u);;M3U8 Çalma Listesi (*.m3u8);;PLS Çalma Listesi (*.pls);;Metin CSV (*.csv);;Okunabilir Metin (*.txt) @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Parça aktarılamadı. @@ -514,7 +514,7 @@ - + Computer Bilgisayar @@ -534,7 +534,7 @@ Tara - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -647,12 +647,12 @@ Dosya yaratıldı - + Mixxx Library Mixxx Kütüphanesi - + Could not load the following file because it is in use by Mixxx or another application. Aşağıdaki dosya silinemedi çünkü Mixxx ya da başka bir uygulama tarafından kullanımda. @@ -683,6 +683,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -866,13 +944,13 @@ - + Set to full volume Sesi sonuna kadar aç - + Set to zero volume Sesi sonuna kadar kapT @@ -897,13 +975,13 @@ - + Headphone listen button Kulaklıktan dinle düğmesi - + Mute button Ses sıfırlama düğmesi @@ -919,25 +997,25 @@ - + Mix orientation (e.g. left, right, center) Karıştırma yönü (örn. sol, sağ, orta) - + Set mix orientation to left Mix yönünü sol olarak belirle - + Set mix orientation to center Mix yönünü mekez olarak belirle - + Set mix orientation to right Mix yönünü sağ olarak belirle @@ -981,36 +1059,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - Dahili ana BPM'i 1 artır - - - - Decrease internal master BPM by 1 - Dahili ana BPM'i 1 düşür - - - - Increase internal master BPM by 0.1 - Dahili ana BPM'i 0,1 artır - - - - Decrease internal master BPM by 0.1 - Dahili ana BPM'i 0,1 düşür - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1022,7 +1070,7 @@ Bir defalık beat senkronizasyonu (sadece faz) - + Toggle keylock mode Tuş Kilitleme Moduna Geç @@ -1032,199 +1080,199 @@ Dengeleyiciler (Ekolayzerler) - + Vinyl Control Vinil Kontrolu - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues İşaretler - + Cue button İşaretleme düğmesi - + Set cue point İşaret noktası koy - + Go to cue point İşaretlenmiş noktaya git - + Go to cue point and play İşaretlenmiş noktaya git ve çal - + Go to cue point and stop İşaretlenmiş noktaya git ve durdur - + Preview from cue point İşaretlenmiş noktadan itibaren önizleme - + Cue button (CDJ mode) İşaretleme düğmesi (CDJ modu) - + Stutter cue Geçici başlama noktasını belirle - + Hotcues Önemli işaretler - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop %1 hotcue git ve durdur - + Jump to hotcue %1 and play - + Preview from hotcue %1 En düşük hotcue %1 önizleme - - + + Hotcue %1 - + Looping Döngü - + Loop In button Döngü giriş düğmesi - + Loop Out button Döngü çıkış düğmesi - + Loop Exit button Döngüden çıkıma düğmesi - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 32 - + 64 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library Kütüphane @@ -1335,20 +1383,20 @@ - - + + Volume Fader Ses Düzeyi - + Full Volume Maksimum ses düzeyi - + Zero Volume Sıfır ses düzeyi @@ -1364,7 +1412,7 @@ - + Mute Ses kapatma @@ -1375,7 +1423,7 @@ - + Headphone Listen Kulaklık dinleme @@ -1396,25 +1444,25 @@ - + Orientation Yönelim - + Orient Left Sağ Yönlen - + Orient Center Merkeze Yönlen - + Orient Right Sağ Yönlen @@ -1513,52 +1561,6 @@ Sync Eşitleme - - - Sync Mode - Senkronizasyon modu - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - Dahili ana BPM - - - - Internal Master BPM +1 - Dahili ana BPM +1 - - - - Internal Master BPM -1 - Dahili ana BPM -1 - - - - Internal Master BPM +0.1 - Dahili ana BPM +0,1 - - - - Internal Master BPM -0.1 - Dahili ana BPM -0,1 - - - - Sync Master - Senkronozasyon - Beat Sync One-Shot @@ -1575,37 +1577,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1646,466 +1648,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue Başlangıç noktası - + Set Cue Başlangıç Noktası belirle - + Go-To Cue Başlangıç noktasına git - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 1/32 - + 1/16 1/16 - + 1/8 1/8 - + 1/4 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) Otomatik DJ kuyruğuna ekle (alta) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) Otomatik DJ kuyruğuna ekle (üste) - + Prepend selected track to the Auto DJ Queue - + Load Track Parçayı yükle - + Load selected track Seçilmiş parçayı yükle - + Load selected track and play Seçilen parçayı yükle ve oynat - - + + Record Mix Mix kaydet - + Toggle mix recording - + Effects Efektler - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack Efekt setini temizle - + Clear Effect Rack Efekt Setini Temizle - + Clear Unit Birimi Temizle - + Clear effect unit Efekt birmini temizle - + Toggle Unit - + Dry/Wet Kuru/Islak - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain Sonraki zincir - + Assign Ata - + Clear Temizle - + Clear the current effect - + Toggle - + Toggle the current effect - + Next Sonraki - + Switch to next effect - + Previous Önceki - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value Parametre değeri - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2130,93 +2132,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2273,806 +2275,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation Navigasyon - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off Mikrofonu aç/kapa - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off Auxiliary Aç/Kapa - + Auxiliary on/off Auxiliary aç/kapa - + Auto DJ Otomatik DJ - + Auto DJ Shuffle Oto DJ karıştır - + Auto DJ Skip Next Oto DJ sonrakini atla - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next Oto DJ sonrakine geçiş yap - + Trigger the transition to the next track - + User Interface Kullanıcı Arayüzü - + Samplers Show/Hide - + Show/hide the sampler section Oynatıcı Kısımlarını Görüntüle/Gizle - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section Vinyl kontrol seçeneklerini göster/gizle - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget Dönen vinyl eklentisini göster/gizle - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom Dalga şekli büyüt - + Waveform Zoom Dalga Şekli Büyüt - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3163,32 +3231,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3224,133 +3292,133 @@ CrateFeature - + Remove Kaldır - - + + Create New Crate Yeni kutu oluştur - + Rename Yeniden adlandır - - + + Lock Kilitle - + Export Crate as Playlist - + Export Track Files Şarkı dosyalarını dışa aktar - + Duplicate Çoğalt - + Analyze entire Crate - + Auto DJ Track Source Oto DJ Parça Kaynağı - + Enter new name for crate: - - + + Crates Kutular - - + + Import Crate Dışardan Kutu Ekle - + Export Crate Kutuyu Dışarı Aktar - + Unlock Kilidi Kaldır - + An unknown error occurred while creating crate: Kutuyu oluştururken bilinmeyen bir hata oluştu: - + Rename Crate Kutuyu Yeniden İsimlendir - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed Kutuyu Yeniden İsimlendirme Başarısız - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U Çalma Listesi (*.m3u);;M3U8 Çalma Listesi (*.m3u8);;PLS Çalma Listesi (*.pls);;Metin CSV (*.csv);;Okunabilir Metin (*.txt) - + Crates are a great way to help organize the music you want to DJ with. Kutular DJ'lik yapmak istediğiniz müzikleri organize etmek için iyi bir yoldur. - + Crates let you organize your music however you'd like! Kutular müziklerinizi istediğiniz şekilde organize etmenizi sağlar - + A crate cannot have a blank name. Bir kutu boş bir isime sahip olamaz - + A crate by that name already exists. Bu adla oluşturulmuş bir müzik kutusu var @@ -3420,37 +3488,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4880,32 +4948,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin Görünüm - + Tool tips Araç önerileri - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale Yerel @@ -4916,52 +4984,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off Kapalı - + Library only - + Library and Skin @@ -5572,38 +5630,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information Bilgi - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5822,62 +5880,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added Müzik dizini eklendi - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? Bir veya daha fazla müzik dizini eklediniz. Bu dizinlerdeki parçalar, müzik kitaplığınızı tekrar tarayana kadar çalmaya hazır olmayacaktır. Şimdi taramak istermisiniz ? - + Scan Tara - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks Parçaları gizle - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6881,32 +6939,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered Filtrelenmiş - + HSV - + RGB - + OpenGL not available OpenGL mevcut değil - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7120,72 +7178,72 @@ Select from different types of displays for the waveform, which differ primarily Kütüphane - + Interface - + Waveforms - + Auto DJ Otomatik DJ - + Equalizers Dengeleyiciler (Ekolayzerler) - + Decks - + Colors - + Crossfader Crossfader - + Effects Efektler - + LV2 Plugins - + Recording Kayıtlar - + Beat Detection - + Key Detection - + Normalization Normalleştirme - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7195,12 +7253,12 @@ Select from different types of displays for the waveform, which differ primarily Vinil Kontrolu - + Live Broadcasting Canlı yayın - + Modplug Decoder @@ -7341,123 +7399,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track Parça - - + + Year Yıl - + Title Başlık - - + + Artist Sanatçı - - + + Album Albüm - + Album Artist Albüm Sanatçısı - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. İlet - + New Column Yeni sütun - + New Item Yeni öğe - + &Previous &önceki - + &Next &sonraki - + &Apply &uygula - + &Close &kapat - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7849,17 +7907,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7960,38 +8018,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7999,13 +8057,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8013,57 +8071,57 @@ support. - + activate - + toggle - + right sağ - + left sol - + right small - + left small - + up yukarı - + down aşağı - + up small - + down small - + Shortcut Kısa yol @@ -8084,22 +8142,22 @@ support. LibraryFeature - + Import Playlist Çalma listesini içe aktar - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Çalma Listesi Dosyaları (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8110,27 +8168,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel Vazgeç - + Scanning: - + Scanning cover art (safe to cancel) @@ -8246,181 +8304,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry Tekrar dene - + skin - - + + Reconfigure - + Help Yardım - - + + Exit Çıkış - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? Yeni bir parça yüklemek istediğinize eminmisiniz? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8491,43 +8549,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Kilitle - + Playlists Çalma Listeleri - + Unlock Kilidi Kaldır - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist Yeni çalma listesi oluştur @@ -8535,58 +8593,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Tara - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8770,7 +8828,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9896,12 +9954,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10039,54 +10097,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists Çalma Listeleri - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10095,7 +10153,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10146,34 +10204,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates Kutular - + Check for Serato databases (refresh) - + (loading) Serato @@ -10196,12 +10254,12 @@ Fully right: end of the effect period Geçmiş - + Unlock Kilidi Kaldır - + Lock Kilitle @@ -11160,6 +11218,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12335,11 +12418,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12355,16 +12433,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12380,16 +12448,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12943,22 +13001,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13570,20 +13628,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13754,8 +13812,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Tür - - Folder + + Directory @@ -13998,155 +14056,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 Dek %1 - + Sampler %1 Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Yeni çalma listesi oluştur - + Enter name for new playlist: Yeni çalma listesini adlandır - + New Playlist Yeni çalma listesi - - - + + + Playlist Creation Failed Çalma Listesi Oluşturulamadı - + A playlist by that name already exists. Bu isimde bir çalma listesi zaten var. - + A playlist cannot have a blank name. Liste ismi boş bırakılamaz - + An unknown error occurred while creating playlist: Çalma listesi oluşturulurken bilinmeyen bir hata oluştu: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14154,7 +14217,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus ESC @@ -14191,128 +14254,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database Veritabanı açılamadı - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14391,7 +14381,7 @@ Mixxx SQLite desteği ile QT gerektirir. Nasıl kurulacağını öğrenmek için - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14448,62 +14438,62 @@ Mixxx SQLite desteği ile QT gerektirir. Nasıl kurulacağını öğrenmek için mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: @@ -14521,7 +14511,7 @@ Mixxx SQLite desteği ile QT gerektirir. Nasıl kurulacağını öğrenmek için No effect loaded. - + Herhangi bir efekt yüklenmedi. \ No newline at end of file diff --git a/res/translations/mixxx_uk.ts b/res/translations/mixxx_uk.ts index de2d27a19a1..e2b5e598371 100644 --- a/res/translations/mixxx_uk.ts +++ b/res/translations/mixxx_uk.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Збірки - + Remove Crate as Track Source - + Auto DJ Авто-DJ - + Add Crate as Track Source @@ -43,24 +43,24 @@ BansheeFeature - + Banshee Banshee - - + + Error loading Banshee database - + Banshee database file not found at - + There was an error loading your Banshee database at @@ -69,32 +69,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Додати до черги Авто-DJ (знизу) - + Add to Auto DJ Queue (top) Додати до черги Авто-DJ (наверх) - + Add to Auto DJ Queue (replace) - + Import Playlist Імпортувати плейлист - + Playlist Creation Failed Не вдалося створити плейлист - + An unknown error occurred while creating playlist: Виникла невідома помилка при створенні плейлиста: @@ -102,144 +102,144 @@ BasePlaylistFeature - + New Playlist Новий Плейлист - + Add to Auto DJ Queue (bottom) Додати до черги Авто-DJ (знизу) - - + + Create New Playlist Створити новий список відтворення - + Add to Auto DJ Queue (top) Додати до черги Авто-DJ (наверх) - + Remove Видалити - + Rename Переіменувати - + Lock Заблокувати - + Duplicate Дублювати - - + + Import Playlist Імпортувати плейлист - + Export Track Files - + Analyze entire Playlist Аналізувати весь список відтворення - + Enter new name for playlist: Введіть нове ім'я для списку відтворення: - + Duplicate Playlist Дублювати список відтворення - - + + Enter name for new playlist: Введіть ім'я для нового списку відтворення: - - + + Export Playlist Експортувати плейлист - + Add to Auto DJ Queue (replace) - + Rename Playlist Переіменування плейлиста - - + + Renaming Playlist Failed Перейменування плейлиста не вдалося - - - + + + A playlist by that name already exists. Плейлист з таким ім'ям вже існує. - - - + + + A playlist cannot have a blank name. Плейлист не може мати пусте ім'я - + _copy //: Appendix to default name when duplicating a playlist _копія - - - - - - + + + + + + Playlist Creation Failed Не вдалося створити плейлист - - + + An unknown error occurred while creating playlist: Виникла невідома помилка при створенні плейлиста: - + M3U Playlist (*.m3u) M3U список відтворення (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U Плейлист (*.m3u);;M3U8 Плейлист (*.m3u8);;PLS Плейлист (*.pls);;Text CSV (*.csv);;Звичайний текст (*.txt) @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Неможливо завантажити трек @@ -512,7 +512,7 @@ - + Computer @@ -532,7 +532,7 @@ Сканування - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -645,12 +645,12 @@ - + Mixxx Library Mixxx бібліотека - + Could not load the following file because it is in use by Mixxx or another application. Не вдається завантажити обраний файл, тому що він використовується в Mixxx або в іншій програмі @@ -681,6 +681,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -863,13 +941,13 @@ - + Set to full volume - + Set to zero volume @@ -894,13 +972,13 @@ - + Headphone listen button - + Mute button @@ -916,25 +994,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -978,36 +1056,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1019,7 +1067,7 @@ - + Toggle keylock mode @@ -1029,199 +1077,199 @@ Еквалайзери - + Vinyl Control Контроль вінілу - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 - + 16 - + 32 - + 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library Бібліотека @@ -1332,20 +1380,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1361,7 +1409,7 @@ - + Mute @@ -1372,7 +1420,7 @@ - + Headphone Listen @@ -1393,25 +1441,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1510,52 +1558,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1572,37 +1574,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1643,466 +1645,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) Додати до черги Авто-DJ (знизу) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) Додати до черги Авто-DJ (наверх) - + Prepend selected track to the Auto DJ Queue - + Load Track Завантажити трек - + Load selected track - + Load selected track and play - - + + Record Mix - + Toggle mix recording - + Effects Ефекти - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next Далі - + Switch to next effect - + Previous Попередній - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2127,93 +2129,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2270,806 +2272,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off Мікрофон вмк/вимк - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ Авто-DJ - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3158,32 +3226,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3219,133 +3287,133 @@ CrateFeature - + Remove Видалити - - + + Create New Crate - + Rename Переіменувати - - + + Lock Заблокувати - + Export Crate as Playlist - + Export Track Files - + Duplicate Дублювати - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates Збірки - - + + Import Crate Імпортувати збірку - + Export Crate Експортувати збірку - + Unlock Розблокувати - + An unknown error occurred while creating crate: Виникла невідома помилка під час створення збірки: - + Rename Crate Переіменувати збірку - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed Перейменування збірки не вдалося - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U Плейлист (*.m3u);;M3U8 Плейлист (*.m3u8);;PLS Плейлист (*.pls);;Text CSV (*.csv);;Звичайний текст (*.txt) - + Crates are a great way to help organize the music you want to DJ with. Збірки - чудовий допоміжний засіб для організування музики для ді-джеінгу. - + Crates let you organize your music however you'd like! Збірки дають змогу організовувати Вашу музику так, як Ви бажаєте! - + A crate cannot have a blank name. Збірка повинна мати назву. - + A crate by that name already exists. Збірка з такою назвою вже існує. @@ -3415,37 +3483,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: При сприянні: - + And special thanks to: І особлива подяка: - + Past Developers Попередні розробники - + Past Contributors Попередні автори - + Official Website - + Donate @@ -4875,32 +4943,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin Оболонка - + Tool tips Підказки - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4910,52 +4978,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off Вимкн. - + Library only - + Library and Skin @@ -5566,38 +5624,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information Інформація - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5816,62 +5874,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan Сканування - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6875,32 +6933,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available OpenGL не доступно - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7114,72 +7172,72 @@ Select from different types of displays for the waveform, which differ primarily Бібліотека - + Interface Інтерфейс - + Waveforms - + Auto DJ Авто-DJ - + Equalizers Еквалайзери - + Decks - + Colors - + Crossfader Кроссфейдер - + Effects Ефекти - + LV2 Plugins - + Recording Запис - + Beat Detection - + Key Detection - + Normalization Нормалізація - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7189,12 +7247,12 @@ Select from different types of displays for the waveform, which differ primarily Контроль вінілу - + Live Broadcasting Пряма трансляція - + Modplug Decoder @@ -7335,123 +7393,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Рік - + Title Назва - - + + Artist Виконавець - - + + Album Альбом - + Album Artist Виконавець альбому - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply &Застосувати - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7843,17 +7901,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7954,38 +8012,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes iTunes - - + + Select your iTunes library Виберіть свою бібліотеку ITunes - + (loading) iTunes (завантаження) iTunes - + Use Default Library Використовувати бібліотеку за замовчуванням - + Choose Library... Виберіть бібліотеку... - + Error Loading iTunes Library Помилка при завантаженні бібліотеки ITunes - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. Виникла помилка при завантаженні вашої бібліотеки ITunes. Деякі з ваших ITunes треків або плейлистів не можливо завантажити. @@ -7993,13 +8051,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8007,57 +8065,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8078,22 +8136,22 @@ support. LibraryFeature - + Import Playlist Імпортувати плейлист - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Файли Плейлистів (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8104,27 +8162,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Сканер бібліотеки - + It's taking Mixxx a minute to scan your music library, please wait... Mixxx просканує вашу музичну бібліотеку за хвилину, будь ласка, зачекайте ... - + Cancel Скасувати - + Scanning: - + Scanning cover art (safe to cancel) @@ -8240,181 +8298,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy Звуковий пристрій зайнятий - + <b>Retry</b> after closing the other application or reconnecting a sound device <b>Спробувати ще</b> після закриття інших програм або повторного підключення звукового пристрою - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. <b>Змінити</b> налаштування звукових пристроїв у Mixxx. - - + + Get <b>Help</b> from the Mixxx Wiki. Отримайте<b>Допомогу</b> від Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. <b>Вихід</b> з Mixxx. - + Retry Повторити - + skin - - + + Reconfigure Перенастроїти - + Help Допомога - - + + Exit Вихід - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue Продовжити - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Підтвердити Вихід - + A deck is currently playing. Exit Mixxx? Дека в даний час грає. Вийти з Mixxx? - + A sampler is currently playing. Exit Mixxx? Семплер зараз грає. Вийти з Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8487,43 +8545,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Заблокувати - + Playlists Плейлисти - + Unlock Розблокувати - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist Створити новий список відтворення @@ -8531,58 +8589,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Сканування - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8766,7 +8824,7 @@ Do you want to scan your library for cover files now? - + Encoder Кодек @@ -9892,12 +9950,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10035,54 +10093,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists Плейлисти - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10091,7 +10149,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox Rhythmbox @@ -10142,34 +10200,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates Збірки - + Check for Serato databases (refresh) - + (loading) Serato @@ -10192,12 +10250,12 @@ Fully right: end of the effect period Історія - + Unlock Розблокувати - + Lock Заблокувати @@ -11156,6 +11214,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12331,11 +12414,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12351,16 +12429,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12376,16 +12444,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12939,22 +12997,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor Traktor - + (loading) Traktor (завантаження) Traktor - + Error Loading Traktor Library Помилка завантаження бібліотеки Traktor - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. Виникла помилка при завантаженні вашої бібліотеки Traktor. Деякі з ваших треків або плейлисти Traktor не можуть бути завантажені. @@ -13566,20 +13624,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Пересилання - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13750,8 +13808,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Стиль - - Folder + + Directory @@ -13994,155 +14052,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 - + Sampler %1 Семплер %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Створити новий список відтворення - + Enter name for new playlist: Введіть ім'я для нового списку відтворення: - + New Playlist Новий Плейлист - - - + + + Playlist Creation Failed Не вдалося створити плейлист - + A playlist by that name already exists. Плейлист з таким ім'ям вже існує. - + A playlist cannot have a blank name. Плейлист не може мати пусте ім'я - + An unknown error occurred while creating playlist: Виникла невідома помилка при створенні плейлиста: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14150,7 +14213,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14187,128 +14250,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory Виберіть каталог музичної бібліотеки - + controllers - + Cannot open database Не вдається відкрити базу даних - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14387,7 +14377,7 @@ Mixxx необхідно QT з підтримкою SQLite. Будь ласка, - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14444,62 +14434,62 @@ Mixxx необхідно QT з підтримкою SQLite. Будь ласка, mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard Типова HID клавіатура - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_uz.ts b/res/translations/mixxx_uz.ts index 1e4cb36af55..38085efa536 100644 --- a/res/translations/mixxx_uz.ts +++ b/res/translations/mixxx_uz.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Қутилар - + Remove Crate as Track Source - + Auto DJ Авто DJ - + Add Crate as Track Source @@ -43,24 +43,24 @@ BansheeFeature - + Banshee - - + + Error loading Banshee database - + Banshee database file not found at - + There was an error loading your Banshee database at @@ -69,32 +69,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) - + Add to Auto DJ Queue (top) - + Add to Auto DJ Queue (replace) - + Import Playlist Ижро рўйхатини импорт қилиш - + Playlist Creation Failed - + An unknown error occurred while creating playlist: @@ -102,144 +102,144 @@ BasePlaylistFeature - + New Playlist Янги қўшиқ рўйхати - + Add to Auto DJ Queue (bottom) - - + + Create New Playlist - + Add to Auto DJ Queue (top) - + Remove Олиб ташлаш - + Rename Қайта номлаш - + Lock Қулфлаш - + Duplicate - - + + Import Playlist Ижро рўйхатини импорт қилиш - + Export Track Files - + Analyze entire Playlist - + Enter new name for playlist: - + Duplicate Playlist - - + + Enter name for new playlist: - - + + Export Playlist Қўшиқ рўйхатини экспорт қилиш - + Add to Auto DJ Queue (replace) - + Rename Playlist Ижро рўйхатини қайта номлаш - - + + Renaming Playlist Failed - - - + + + A playlist by that name already exists. - - - + + + A playlist cannot have a blank name. - + _copy //: Appendix to default name when duplicating a playlist - - - - - - + + + + + + Playlist Creation Failed - - + + An unknown error occurred while creating playlist: - + M3U Playlist (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Қўшиқ қўшилмади @@ -512,7 +512,7 @@ - + Computer @@ -532,7 +532,7 @@ - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -645,12 +645,12 @@ - + Mixxx Library Микс кутубхонаси - + Could not load the following file because it is in use by Mixxx or another application. Қуйидаги файлни юклаб бўлмади, чунки Микс ёки бошқа дастур томонидан фойдаланилмоқда. @@ -681,6 +681,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -863,13 +941,13 @@ - + Set to full volume - + Set to zero volume @@ -894,13 +972,13 @@ - + Headphone listen button - + Mute button @@ -916,25 +994,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -978,36 +1056,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1019,7 +1067,7 @@ - + Toggle keylock mode @@ -1029,199 +1077,199 @@ - + Vinyl Control - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 - + 1 - + 2 - + 4 - + 8 - + 16 - + 32 - + 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library @@ -1332,20 +1380,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1361,7 +1409,7 @@ - + Mute @@ -1372,7 +1420,7 @@ - + Headphone Listen @@ -1393,25 +1441,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1510,52 +1558,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1572,37 +1574,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1643,466 +1645,466 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix - + Toggle mix recording - + Effects - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next Кейинги - + Switch to next effect - + Previous Олдинги - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2127,93 +2129,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2270,806 +2272,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ Авто DJ - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3158,32 +3226,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3219,133 +3287,133 @@ CrateFeature - + Remove Олиб ташлаш - - + + Create New Crate - + Rename Қайта номлаш - - + + Lock Қулфлаш - + Export Crate as Playlist - + Export Track Files - + Duplicate - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates Қутилар - - + + Import Crate Қутини импорт қилиш - + Export Crate Қутини экспорт қилиш - + Unlock Қулфдан чиқариш - + An unknown error occurred while creating crate: Қути яратилаётганда номаълум зато рўй берди: - + Rename Crate Қутини қайта номлаш - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed Қутини қайта номлаш муваффақиятсиз якунланди - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) - + Crates are a great way to help organize the music you want to DJ with. - + Crates let you organize your music however you'd like! - + A crate cannot have a blank name. Қутида бўш ном бўлмайди - + A crate by that name already exists. Ушбу номли қути аллақачон мавжуд. @@ -3415,37 +3483,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4875,32 +4943,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin - + Tool tips - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4910,52 +4978,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off - + Library only - + Library and Skin @@ -5566,38 +5624,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5816,62 +5874,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6875,32 +6933,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7114,72 +7172,72 @@ Select from different types of displays for the waveform, which differ primarily - + Interface - + Waveforms - + Auto DJ Авто DJ - + Equalizers - + Decks - + Colors - + Crossfader - + Effects - + LV2 Plugins - + Recording - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7189,12 +7247,12 @@ Select from different types of displays for the waveform, which differ primarily - + Live Broadcasting - + Modplug Decoder @@ -7335,123 +7393,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Йил - + Title Сарлавҳа - - + + Artist Санъаткор - - + + Album Альбом - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7843,17 +7901,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7954,38 +8012,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7993,13 +8051,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8007,57 +8065,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8078,22 +8136,22 @@ support. LibraryFeature - + Import Playlist Ижро рўйхатини импорт қилиш - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8104,27 +8162,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8240,181 +8298,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry - + skin - - + + Reconfigure - + Help - - + + Exit - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8485,43 +8543,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Қулфлаш - + Playlists - + Unlock Қулфдан чиқариш - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist @@ -8529,58 +8587,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8764,7 +8822,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9890,12 +9948,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10033,54 +10091,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10089,7 +10147,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10140,34 +10198,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates Қутилар - + Check for Serato databases (refresh) - + (loading) Serato @@ -10190,12 +10248,12 @@ Fully right: end of the effect period - + Unlock Қулфдан чиқариш - + Lock Қулфлаш @@ -11154,6 +11212,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12329,11 +12412,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12349,16 +12427,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12374,16 +12442,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12937,22 +12995,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13564,20 +13622,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13748,8 +13806,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Жанри - - Folder + + Directory @@ -13992,155 +14050,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 - + Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist - + Enter name for new playlist: - + New Playlist Янги қўшиқ рўйхати - - - + + + Playlist Creation Failed - + A playlist by that name already exists. - + A playlist cannot have a blank name. - + An unknown error occurred while creating playlist: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14148,7 +14211,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14185,128 +14248,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14382,7 +14372,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14439,62 +14429,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_vi.qm b/res/translations/mixxx_vi.qm index f8219796cbb31b63ae104ef18ad134111a60642b..bd1fd002fd7a335b5136a3b929ac14e79bec6eef 100644 GIT binary patch delta 13383 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�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 d44fJ`bkfX8et`kbEvYntwnb`#%bvFO2{I delta 15434 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 AutoDJFeature - + Crates Thùng - + Remove Crate as Track Source Loại bỏ thùng như theo dõi nguồn - + Auto DJ Tự động DJ - + Add Crate as Track Source Thêm thùng như theo dõi nguồn @@ -43,25 +43,25 @@ BansheeFeature - + Banshee Banshee - - + + Error loading Banshee database Lỗi tải Banshee cơ sở dữ liệu - + Banshee database file not found at Banshee cơ sở dữ liệu tập tin không tìm thấy tại - + There was an error loading your Banshee database at Đã có lỗi tải của bạn cơ sở dữ liệu Banshee tại @@ -71,32 +71,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) Thêm vào hàng đợi DJ tự động (phía dưới) - + Add to Auto DJ Queue (top) Thêm vào hàng đợi DJ tự động (top) - + Add to Auto DJ Queue (replace) - + Import Playlist Chuyển nhập danh sách phát - + Playlist Creation Failed Sáng tạo danh sách phát đã thất bại - + An unknown error occurred while creating playlist: Lỗi không biết xảy ra trong khi tạo danh sách chơi: @@ -104,144 +104,144 @@ BasePlaylistFeature - + New Playlist Danh sách chơi mới - + Add to Auto DJ Queue (bottom) Thêm vào hàng đợi DJ tự động (phía dưới) - - + + Create New Playlist Tạo danh sách chơi mới - + Add to Auto DJ Queue (top) Thêm vào hàng đợi DJ tự động (top) - + Remove Loại bỏ - + Rename Đổi tên - + Lock Khóa - + Duplicate Bản sao - - + + Import Playlist Chuyển nhập danh sách phát - + Export Track Files - + Analyze entire Playlist Phân tích toàn bộ danh sách phát - + Enter new name for playlist: Nhập tên mới cho danh sách chơi: - + Duplicate Playlist Lặp lại danh sách chơi - - + + Enter name for new playlist: Nhập tên cho danh sách phát mới: - - + + Export Playlist Xuất chuyển danh sách chơi - + Add to Auto DJ Queue (replace) - + Rename Playlist Đổi tên danh sách chơi - - + + Renaming Playlist Failed Đổi tên danh sách phát đã thất bại - - - + + + A playlist by that name already exists. Một danh sách tên đó đã tồn tại. - - - + + + A playlist cannot have a blank name. Một danh sách không thể có một tên trống. - + _copy //: Appendix to default name when duplicating a playlist _copy - - - - - - + + + + + + Playlist Creation Failed Sáng tạo danh sách phát đã thất bại - - + + An unknown error occurred while creating playlist: Lỗi không biết xảy ra trong khi tạo danh sách chơi: - + M3U Playlist (*.m3u) M3U Playlist (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U Playlist (*.m3u); M3U8 danh sách bài hát (*.m3u8); PLS danh sách bài hát (* .pls); Văn bản CSV (*.csv); Có thể đọc được văn bản (*.txt) @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Không thể nạp theo dõi. @@ -514,7 +514,7 @@ - + Computer @@ -534,7 +534,7 @@ Quét - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -647,12 +647,12 @@ Tệp được tạo ra - + Mixxx Library Thư viện Mixxx - + Could not load the following file because it is in use by Mixxx or another application. Không thể nạp tệp sau vì nó đang dùng bởi Mixxx hoặc ứng dụng khác. @@ -683,6 +683,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -865,13 +943,13 @@ - + Set to full volume Thiết lập để khối lượng đầy đủ - + Set to zero volume Thiết lập số không khối lượng @@ -896,13 +974,13 @@ Đảo ngược nút cuộn (kiểm duyệt) - + Headphone listen button Tai nghe nghe nút - + Mute button Nút tắt @@ -918,25 +996,25 @@ - + Mix orientation (e.g. left, right, center) Trộn định hướng (ví dụ: trái, phải, Trung tâm) - + Set mix orientation to left Thiết lập kết hợp định hướng bên trái - + Set mix orientation to center Thiết lập kết hợp định hướng đến Trung tâm - + Set mix orientation to right Thiết lập kết hợp định hướng sang phải @@ -980,36 +1058,6 @@ Toggle quantize mode Bật/tắt quantize chế độ - - - Increase internal master BPM by 1 - Tăng nội bộ tổng thể BPM bằng 1 - - - - Decrease internal master BPM by 1 - Giảm nội bộ tổng thể BPM bằng 1 - - - - Increase internal master BPM by 0.1 - Tăng nội bộ tổng thể BPM bằng 0,1 - - - - Decrease internal master BPM by 0.1 - Giảm nội bộ tổng thể BPM bằng 0,1 - - - - Toggle sync master - Bật tắt đồng bộ tổng thể - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - Đồng bộ hóa chế độ 3-nhà nước chuyển đổi (OFF, đi theo, Thạc sĩ) - One-time beat sync (tempo only) @@ -1021,7 +1069,7 @@ Một lần đánh bại đồng bộ (chỉ giai đoạn) - + Toggle keylock mode Bật tắt chế độ khóa bàn phím @@ -1031,199 +1079,199 @@ Equalizers - + Vinyl Control Vinyl kiểm soát - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) Bật tắt chế độ cueing vinyl kiểm soát (OFF/1/bể) - + Toggle vinyl-control mode (ABS/REL/CONST) Bật tắt chế độ kiểm soát vinyl (ABS/REL/XD) - + Pass through external audio into the internal mixer Đi qua âm thanh bên ngoài vào máy trộn nội bộ - + Cues Tín hiệu - + Cue button Cue nút - + Set cue point Thiết lập cue điểm - + Go to cue point Đi đến cue điểm - + Go to cue point and play Đi đến cue điểm và chơi - + Go to cue point and stop Đi để ghi chú vào điểm và ngừng - + Preview from cue point Xem trước từ cue điểm - + Cue button (CDJ mode) Cue nút (CDJ chế độ) - + Stutter cue Nói lắp cue - + Hotcues Hotcues - + Set, preview from or jump to hotcue %1 Thiết lập, xem trước từ hoặc nhảy để hotcue %1 - + Clear hotcue %1 Rõ ràng hotcue %1 - + Set hotcue %1 Thiết lập hotcue %1 - + Jump to hotcue %1 Chuyển đến hotcue %1 - + Jump to hotcue %1 and stop Chuyển đến hotcue %1 và dừng - + Jump to hotcue %1 and play Chuyển đến hotcue %1 và chơi - + Preview from hotcue %1 Xem trước từ hotcue %1 - - + + Hotcue %1 Hotcue %1 - + Looping Looping - + Loop In button Vòng lặp trong nút - + Loop Out button Vòng lặp trong nút - + Loop Exit button Vòng ra nút - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 32 - + 64 64 - + Move loop forward by %1 beats Di chuyển vòng về phía trước bởi %1 nhịp đập - + Move loop backward by %1 beats Di chuyển vòng quay trở lại bởi nhịp đập %1 - + Create %1-beat loop Tạo đánh bại %1 loop - + Create temporary %1-beat loop roll Tạo tạm thời đánh bại %1 vòng cuộn - + Library Thư viện @@ -1334,20 +1382,20 @@ - - + + Volume Fader Khối lượng đổi - + Full Volume Khối lượng đầy đủ - + Zero Volume Khối lượng không @@ -1363,7 +1411,7 @@ - + Mute Tắt tiếng @@ -1374,7 +1422,7 @@ - + Headphone Listen Tai nghe nghe @@ -1395,25 +1443,25 @@ - + Orientation Định hướng - + Orient Left Định hướng trái - + Orient Center Trung tâm phương đông - + Orient Right Định hướng bên phải @@ -1512,52 +1560,6 @@ Sync Đồng bộ - - - Sync Mode - Chế độ đồng bộ - - - - Internal Sync Master - Nội bộ đồng bộ Master - - - - Toggle Internal Sync Master - Bật tắt nội bộ đồng bộ Master - - - - - Internal Master BPM - Nội bộ Master BPM - - - - Internal Master BPM +1 - Nội bộ Master BPM + 1 - - - - Internal Master BPM -1 - Nội bộ Master BPM -1 - - - - Internal Master BPM +0.1 - Nội bộ Master BPM +0.1 - - - - Internal Master BPM -0.1 - Nội bộ Master BPM-0.1 - - - - Sync Master - Thạc sĩ đồng bộ - Beat Sync One-Shot @@ -1574,37 +1576,37 @@ Giai đoạn đồng bộ một-shot - + Pitch control (does not affect tempo), center is original pitch Sân kiểm soát (không ảnh hưởng đến tiến độ), Trung tâm là ban đầu pitch - + Pitch Adjust Điều chỉnh pitch - + Adjust pitch from speed slider pitch Điều chỉnh pitch từ tốc độ trượt Sân - + Match musical key Phù hợp với âm nhạc khóa - + Match Key Phù hợp với phím - + Reset Key Thiết lập lại phím - + Resets key to original Đặt lại chìa khóa để ban đầu @@ -1645,466 +1647,466 @@ Thấp EQ - + Toggle Vinyl Control Bật tắt Vinyl kiểm soát - + Toggle Vinyl Control (ON/OFF) Bật tắt Vinyl kiểm soát (ON/OFF) - + Vinyl Control Mode Vinyl kiểm soát chế độ - + Vinyl Control Cueing Mode Vinyl kiểm soát Cueing chế độ - + Vinyl Control Passthrough Vinyl kiểm soát Passthrough - + Vinyl Control Next Deck Vinyl kiểm soát tiếp theo sàn - + Single deck mode - Switch vinyl control to next deck Chế độ tầng - chuyển đổi vinyl kiểm soát đến tầng tiếp theo - + Cue Cue - + Set Cue Thiết lập Cue - + Go-To Cue Go To Cue - + Go-To Cue And Play Go To Cue và chơi - + Go-To Cue And Stop Go To Cue và dừng - + Preview Cue Xem trước Cue - + Cue (CDJ Mode) Cue (CDJ chế độ) - + Stutter Cue Nói lắp Cue - + Go to cue point and play after release - + Clear Hotcue %1 Rõ ràng Hotcue %1 - + Set Hotcue %1 Thiết lập Hotcue %1 - + Jump To Hotcue %1 Chuyển đến Hotcue %1 - + Jump To Hotcue %1 And Stop Chuyển đến Hotcue %1 và dừng - + Jump To Hotcue %1 And Play Chuyển đến Hotcue %1 và chơi - + Preview Hotcue %1 Xem trước Hotcue %1 - + Loop In Vòng lặp trong - + Loop Out Vòng lặp trong - + Loop Exit Thoát khỏi vòng lặp - + Reloop/Exit Loop Reloop/thoát khỏi vòng lặp - + Loop Halve Loop giảm một nửa - + Loop Double Vòng lặp đôi - + 1/32 1/32 - + 1/16 1/16 - + 1/8 1/8 - + 1/4 1/4 - + Move Loop +%1 Beats Di chuyển vòng lặp + %1 nhịp đập - + Move Loop -%1 Beats Di chuyển vòng lặp-nhịp đập %1 - + Loop %1 Beats Nhịp đập vòng %1 - + Loop Roll %1 Beats Loop Roll %1 nhịp đập - + Add to Auto DJ Queue (bottom) Thêm vào hàng đợi DJ tự động (phía dưới) - + Append the selected track to the Auto DJ Queue Gắn tiếp theo dõi được chọn vào xếp hàng DJ tự động - + Add to Auto DJ Queue (top) Thêm vào hàng đợi DJ tự động (top) - + Prepend selected track to the Auto DJ Queue Thêm các ca khúc được chọn để xếp hàng DJ tự động - + Load Track Theo dõi tải - + Load selected track Tải được chọn theo dõi - + Load selected track and play Tải được chọn theo dõi và chơi - - + + Record Mix Ghi kết hợp - + Toggle mix recording Chuyển đổi kết hợp ghi âm - + Effects Hiệu ứng - + Quick Effects Tác dụng nhanh chóng - + Deck %1 Quick Effect Super Knob Sàn %1 có hiệu lực nhanh chóng siêu Knob - + Quick Effect Super Knob (control linked effect parameters) Nhanh chóng có hiệu lực Super Knob (điều khiển liên kết có hiệu lực tham số) - - + + Quick Effect Có hiệu lực nhanh chóng - + Clear effect rack Có hiệu lực rõ ràng rack - + Clear Effect Rack Có hiệu lực rõ ràng Rack - + Clear Unit Rõ ràng đơn vị - + Clear effect unit Đơn vị có hiệu lực rõ ràng - + Toggle Unit Chuyển đổi đơn vị - + Dry/Wet Giặt/ướt - + Adjust the balance between the original (dry) and processed (wet) signal. Điều chỉnh sự cân bằng giữa bản gốc (khô) và xử lý tín hiệu (ướt). - + Super Knob Siêu Knob - + Next Chain Tiếp theo chuỗi - + Assign Chỉ định - + Clear Rõ ràng - + Clear the current effect Rõ ràng các hiệu ứng hiện tại - + Toggle Chuyển đổi - + Toggle the current effect Chuyển đổi có hiệu lực hiện tại - + Next Tiếp theo - + Switch to next effect Chuyển sang kế tiếp có hiệu lực - + Previous Trước đó - + Switch to the previous effect Chuyển đổi để có hiệu lực trước đó - + Next or Previous Kế tiếp hoặc trước đó - + Switch to either next or previous effect Chuyển sang kế tiếp hoặc trước đó có hiệu lực - - + + Parameter Value Giá trị tham số - - + + Microphone Ducking Strength Micro Ducking sức mạnh - + Microphone Ducking Mode Micro Ducking chế độ - + Gain Đạt được - + Gain knob Đạt được knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle Tự động bật/tắt DJ - + Toggle Auto DJ On/Off Chuyển đổi tự động DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. Hiện hoặc ẩn bộ trộn. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore Thư viện tối đa hóa/khôi phục lại - + Maximize the track library to take up all the available screen space. Tối đa hóa thư viện theo dõi để mất tất cả không gian màn hình có sẵn. - + Effect Rack Show/Hide Có hiệu lực Rack Hiển thị/ẩn - + Show/hide the effect rack Hiển thị/ẩn các rack có hiệu lực - + Waveform Zoom Out Dạng sóng thu nhỏ @@ -2129,93 +2131,93 @@ - + Playback Speed Tốc độ phát lại - + Playback speed control (Vinyl "Pitch" slider) Kiểm soát tốc độ phát lại (Vinyl "Cắm" trượt) - + Pitch (Musical key) Pitch (âm nhạc phím) - + Increase Speed Tăng tốc độ - + Adjust speed faster (coarse) Điều chỉnh tốc độ nhanh hơn (thô) - - + + Increase Speed (Fine) Tăng tốc độ (Mỹ) - + Adjust speed faster (fine) Điều chỉnh tốc độ nhanh hơn (Mỹ) - + Decrease Speed Giảm tốc độ - + Adjust speed slower (coarse) Điều chỉnh tốc độ chậm hơn (thô) - + Adjust speed slower (fine) Điều chỉnh tốc độ chậm hơn (Mỹ) - + Temporarily Increase Speed Tạm thời tăng tốc độ - + Temporarily increase speed (coarse) Tạm thời tăng tốc độ (thô) - + Temporarily Increase Speed (Fine) Tạm thời tăng tốc độ (Mỹ) - + Temporarily increase speed (fine) Tạm thời tăng tốc độ (Mỹ) - + Temporarily Decrease Speed Tạm thời giảm tốc độ - + Temporarily decrease speed (coarse) Tạm thời giảm tốc độ (thô) - + Temporarily Decrease Speed (Fine) Tạm thời giảm tốc độ (Mỹ) - + Temporarily decrease speed (fine) Tạm thời giảm tốc độ (Mỹ) @@ -2272,806 +2274,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing Kích hoạt hoặc vô hiệu hoá hiệu ứng xử lý - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset Tiếp theo chuỗi cài sẵn - + Previous Chain Chuỗi trước - + Previous chain preset Trước chuỗi cài sẵn - + Next/Previous Chain Kế tiếp/trước Chuỗi - + Next or previous chain preset Kế tiếp hoặc trước đó chuỗi cài sẵn - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary Micro / phụ trợ - + Microphone On/Off Micro baät/taét - + Microphone on/off Micro baät/taét - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) Bật/tắt Micro ducking chế độ (OFF, tự động, hướng dẫn sử dụng) - + Auxiliary On/Off Liên minh baät/taét - + Auxiliary on/off Liên minh baät/taét - + Auto DJ Tự động DJ - + Auto DJ Shuffle Tự động DJ Shuffle - + Auto DJ Skip Next Tự động DJ bỏ qua tiếp theo - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next Tự động DJ phai để tiếp theo - + Trigger the transition to the next track Kích hoạt sự chuyển đổi sang bài hát kế tiếp - + User Interface Giao diện người dùng - + Samplers Show/Hide Samplers Hiển thị/ẩn - + Show/hide the sampler section Hiển thị/ẩn phần sampler - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. Dòng hỗn hợp của bạn qua Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide Vinyl kiểm soát Hiển thị/ẩn - + Show/hide the vinyl control section Hiển thị/ẩn phần kiểm soát vinyl - + Preview Deck Show/Hide Xem trước sàn Hiển thị/ẩn - + Show/hide the preview deck Hiển thị/ẩn tầng xem trước - + Toggle 4 Decks Bật tắt 4 sàn - + Switches between showing 2 decks and 4 decks. Thiết bị chuyển mạch giữa Hiển thị 2 sàn và 4 sàn. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide Vinyl Spinner Hiển thị/ẩn - + Show/hide spinning vinyl widget Hiển thị/ẩn quay vinyl Tiện ích - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom Thu phóng dạng sóng - + Waveform Zoom Thu phóng dạng sóng - + Zoom waveform in Phóng to dạng sóng - + Waveform Zoom In Dạng sóng phóng to - + Zoom waveform out Thu nhỏ dạng sóng - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3160,32 +3228,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. Cố gắng phục hồi bằng cách đặt lại trình điều khiển. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. Mã kịch bản cần phải được cố định. @@ -3221,133 +3289,133 @@ CrateFeature - + Remove Loại bỏ - - + + Create New Crate Tạo mới thùng - + Rename Đổi tên - - + + Lock Khóa - + Export Crate as Playlist - + Export Track Files - + Duplicate Bản sao - + Analyze entire Crate Phân tích toàn bộ thùng - + Auto DJ Track Source Tự động theo dõi DJ nguồn - + Enter new name for crate: Nhập tên mới cho thùng: - - + + Crates Thùng - - + + Import Crate Nhập khẩu thùng - + Export Crate Xuất khẩu thùng - + Unlock Mở khóa - + An unknown error occurred while creating crate: Lỗi không biết xảy ra trong khi tạo thùng: - + Rename Crate Đổi tên thùng - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed Đổi tên thùng thất bại - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U Playlist (*.m3u); M3U8 danh sách bài hát (*.m3u8); PLS danh sách bài hát (* .pls); Văn bản CSV (*.csv); Có thể đọc được văn bản (*.txt) - + Crates are a great way to help organize the music you want to DJ with. Thùng là một cách tuyệt vời để giúp tổ chức nhạc bạn muốn DJ với. - + Crates let you organize your music however you'd like! Thùng cho phép bạn tổ chức âm nhạc của bạn Tuy nhiên bạn muốn! - + A crate cannot have a blank name. Một thùng có thể không có một tên trống. - + A crate by that name already exists. Một thùng tên đó đã tồn tại. @@ -3417,37 +3485,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: Với sự đóng góp của: - + And special thanks to: Và đặc biệt nhờ: - + Past Developers Qua nhà phát triển - + Past Contributors Trong quá khứ những người đóng góp - + Official Website - + Donate @@ -4879,32 +4947,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin Da - + Tool tips Công cụ Mẹo - + Select from different color schemes of a skin if available. Chọn lược đồ màu khác nhau của một làn da nếu có sẵn. - + Color scheme Lược đồ màu - + Locales determine country and language specific settings. Miền địa phương xác định quốc gia và ngôn ngữ cài đặt cụ thể. - + Locale Miền địa phương @@ -4914,52 +4982,42 @@ Apply settings and continue? Tùy chọn giao diện - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off Tắt - + Library only - + Library and Skin @@ -5570,38 +5628,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. Kích thước tối thiểu của vẻ ngoài đã chọn là lớn hơn độ phân giải màn hình của bạn. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes Da này không hỗ trợ phối màu - + Information Thông tin - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5820,62 +5878,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added Âm nhạc thư mục bổ sung - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? Bạn đã thêm vào một hoặc nhiều thư mục âm nhạc. Các bài hát trong những thư mục này sẽ không có sẵn cho đến khi bạn tại thư viện của bạn. Bạn có muốn tại bây giờ không? - + Scan Quét - + Choose a music directory Chọn một thư mục nhạc - + Confirm Directory Removal Xác nhận loại bỏ thư mục - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. Mixxx sẽ không còn xem thư mục này cho bài hát mới. Những gì bạn muốn làm với các bài hát từ thư mục và thư mục con này? <ul><li>Ẩn tất cả các bài hát từ thư mục và thư mục con này.</li> <li>Xóa tất cả siêu dữ liệu cho các bài nhạc từ Mixxx vĩnh viễn.</li> <li>Để lại các bài hát không thay đổi trong thư viện của bạn.</li></ul> Ẩn bài nhạc lưu siêu dữ liệu của họ trong trường hợp bạn tái thêm chúng trong tương lai. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. Siêu dữ liệu có nghĩa là tất cả theo dõi thông tin chi tiết (nghệ sĩ, tiêu đề, playcount, vv) cũng như beatgrids, hotcues, và vòng. Lựa chọn này chỉ ảnh hưởng đến thư viện Mixxx. Không có tập tin trên đĩa sẽ được thay đổi hoặc xóa. - + Hide Tracks Giấu bài nhạc - + Delete Track Metadata Xoá siêu dữ liệu theo dõi - + Leave Tracks Unchanged Để lại bài hát không thay đổi - + Relink music directory to new location Relink âm nhạc thư mục vào vị trí mới - + Select Library Font Chọn phông chữ thư viện @@ -6881,32 +6939,32 @@ Mục tiêu âm sắc là gần đúng và giả định theo dõi sản lượn DlgPrefWaveform - + Filtered Lọc - + HSV HSV - + RGB RGB - + OpenGL not available OpenGL không sẵn dùng - + dropped frames bỏ khung - + Cached waveforms occupy %1 MiB on disk. @@ -7120,72 +7178,72 @@ Select from different types of displays for the waveform, which differ primarily Thư viện - + Interface Giao diện - + Waveforms Waveforms - + Auto DJ Tự động DJ - + Equalizers Equalizers - + Decks - + Colors - + Crossfader Crossfader - + Effects Hiệu ứng - + LV2 Plugins - + Recording Ghi âm - + Beat Detection Đánh bại phát hiện - + Key Detection Phát hiện quan trọng - + Normalization Bình thường hóa - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7195,12 +7253,12 @@ Select from different types of displays for the waveform, which differ primarily Vinyl kiểm soát - + Live Broadcasting Sống phát thanh truyền - + Modplug Decoder Bộ giải mã Modplug @@ -7341,123 +7399,123 @@ Select from different types of displays for the waveform, which differ primarily Chọn phù hợp nhất có thể - - + + Track Theo dõi - - + + Year Năm - + Title Tiêu đề - - + + Artist Nghệ sĩ - - + + Album Album - + Album Artist Album nghệ sĩ - + Fetching track data from the MusicBrainz database Lấy theo dõi dữ liệu từ cơ sở dữ liệu MusicBrainz - + Mixxx could not find this track in the MusicBrainz database. Mixxx không thể tìm thấy điều này theo dõi trong cơ sở dữ liệu MusicBrainz. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. Có được khóa API - + Submit Submits audio fingerprints to the MusicBrainz database. Gửi - + New Column Cột mới - + New Item Khoản mục mới - + &Previous & Trước - + &Next & Tiếp theo - + &Apply & Áp dụng - + &Close & Đóng - + Status: %1 Trạng thái: %1 - + HTTP Status: %1 Trạng thái HTTP: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx không thể kết nối tới %1 do nguyên nhân không rõ. - + Mixxx can't connect to %1. Mixxx không thể kết nối với %1. - + Original tags Ban đầu tags - + Suggested tags Đề nghị tags @@ -7849,17 +7907,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) Soundtouch (nhanh hơn) - + Rubberband (better) Dây Chun (tốt hơn) - + Unknown (bad value) Chưa biết (giá trị xấu) @@ -7960,38 +8018,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes iTunes - - + + Select your iTunes library Chọn thư viện iTunes của bạn - + (loading) iTunes iTunes (tải) - + Use Default Library Sử dụng mặc định thư viện - + Choose Library... Chọn thư viện... - + Error Loading iTunes Library Lỗi tải iTunes thư viện - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. Đã có lỗi khi nạp thư viện iTunes của bạn. Một số bài nhạc iTunes hoặc danh sách phát của bạn không có thể đã nạp. @@ -7999,13 +8057,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. Chế độ an toàn được kích hoạt - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8013,57 +8071,57 @@ support. Không có hỗ trợ OpenGL. - + activate kích hoạt - + toggle chuyển đổi - + right quyền - + left trái - + right small ngay nhỏ - + left small còn nhỏ - + up lên - + down xuống - + up small mặc nhỏ - + down small xuống nhỏ - + Shortcut Lối tắt @@ -8084,22 +8142,22 @@ support. LibraryFeature - + Import Playlist Chuyển nhập danh sách phát - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Tệp danh sách chơi (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8110,27 +8168,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Máy quét thư viện - + It's taking Mixxx a minute to scan your music library, please wait... Nó đang Mixxx một phút để quét thư viện nhạc của bạn, xin vui lòng chờ... - + Cancel Hủy bỏ - + Scanning: Quét: - + Scanning cover art (safe to cancel) Quét bìa (an toàn để hủy bỏ) @@ -8247,183 +8305,183 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy Thiết bị âm thanh bận rộn - + <b>Retry</b> after closing the other application or reconnecting a sound device <b>Thử lại</b> sau khi đóng ứng dụng khác hoặc kết nối lại một thiết bị âm thanh - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. <b>Cấu hình lại</b> Cài đặt thiết bị âm thanh của Mixxx. - - + + Get <b>Help</b> from the Mixxx Wiki. Nhận được <b>Trợ giúp</b> từ Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. <b>Lối ra</b> Mixxx. - + Retry Thử lại - + skin - - + + Reconfigure Cấu hình lại - + Help Trợ giúp - - + + Exit Lối ra - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices Không có thiết bị đầu ra - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. Mixxx được cấu hình mà không có bất kỳ thiết bị âm thanh đầu ra. Âm thanh xử lý sẽ bị vô hiệu hóa mà không có một thiết bị được cấu hình đầu ra. - + <b>Continue</b> without any outputs. <b>Tiếp tục</b> mà không có bất kỳ kết quả đầu ra. - + Continue Tiếp tục - + Load track to Deck %1 Tải ca khúc để boong %1 - + Deck %1 is currently playing a track. Sàn %1 đang phát một ca khúc. - + Are you sure you want to load a new track? Bạn có chắc bạn muốn tải một ca khúc mới không? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. Có là không có thiết bị đầu vào, chọn này kiểm soát vinyl. Xin vui lòng chọn một thiết bị đầu vào trong ưa thích của phần cứng âm thanh đầu tiên. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. Có là không có thiết bị đầu vào, chọn này kiểm soát passthrough. Xin vui lòng chọn một thiết bị đầu vào trong ưa thích của phần cứng âm thanh đầu tiên. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file Lỗi trong tệp vẻ ngoài - + The selected skin cannot be loaded. Vẻ ngoài đã chọn không thể được nạp. - + OpenGL Direct Rendering Trực tiếp OpenGL Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Xác nhận thoát - + A deck is currently playing. Exit Mixxx? Một sân hiện đang phát. Thoát khỏi Mixxx? - + A sampler is currently playing. Exit Mixxx? Một sampler hiện đang phát. Thoát khỏi Mixxx? - + The preferences window is still open. Cửa sổ tùy chọn là vẫn còn mở. - + Discard any changes and exit Mixxx? Loại bỏ bất kỳ thay đổi và thoát Mixxx? @@ -8496,43 +8554,43 @@ Do you want to select an input device? PlaylistFeature - + Lock Khóa - + Playlists Danh sách phát - + Unlock Mở khóa - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. Một số DJ xây dựng danh sách phát trước khi họ thực hiện trực tiếp, nhưng những người khác muốn xây dựng họ on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. Khi sử dụng một danh sách trong bộ DJ sống, hãy nhớ luôn luôn chú ý chặt chẽ đến như thế nào đối tượng của bạn phản ứng với âm nhạc bạn đã chọn để chơi. - + Create New Playlist Tạo danh sách chơi mới @@ -8540,59 +8598,59 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx Nâng cấp Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? Mixxx bây giờ hỗ trợ hình ảnh bìa nghệ thuật. Bạn có muốn quét thư viện của bạn cho tệp bìa bây giờ? - + Scan Quét - + Later Sau đó - + Upgrading Mixxx from v1.9.x/1.10.x. Nâng cấp Mixxx từ v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. Mixxx có một mới và cải tiến phát hiện đánh bại. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. Khi bạn tải bài hát, Mixxx có thể tái phân tích chúng và tạo mới, chính xác hơn beatgrids. Điều này sẽ làm cho tự động beatsync và looping đáng tin cậy hơn. - + This does not affect saved cues, hotcues, playlists, or crates. Điều này hiện không ảnh hưởng đến lưu tín hiệu, hotcues, danh sách phát hoặc thùng. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. Nếu bạn không muốn Mixxx để tái phân tích bài nhạc của bạn, chọn "Giữ hiện tại Beatgrids". Bạn có thể thay đổi cài đặt này bất kỳ lúc nào từ phần "Đánh bại phát hiện" của các ưu đãi. - + Keep Current Beatgrids Giữ hiện tại Beatgrids - + Generate New Beatgrids Tạo mới Beatgrids @@ -8776,7 +8834,7 @@ Bạn có muốn quét thư viện của bạn cho tệp bìa bây giờ? - + Encoder Mã hóa @@ -9902,12 +9960,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10045,54 +10103,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists Danh sách phát - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10101,7 +10159,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox Rhythmbox @@ -10152,34 +10210,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates Thùng - + Check for Serato databases (refresh) - + (loading) Serato @@ -10202,12 +10260,12 @@ Fully right: end of the effect period Lịch sử - + Unlock Mở khóa - + Lock Khóa @@ -11166,6 +11224,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12341,11 +12424,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize Old đồng bộ hóa - - - (This skin should be updated to use Master Sync!) - (Da này nên được Cập Nhật để sử dụng Master Sync!) - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12361,16 +12439,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. Sàn không thể đồng bộ để lấy mẫu và lấy mẫu có thể chỉ đồng bộ với sàn. - - - Enable Master Sync - Bật đồng bộ hóa Master - - - - Tap to sync the tempo to other playing tracks or the master clock. - Bấm vào để đồng bộ theo dõi tiến độ để chơi khác hoặc đồng hồ chủ. - Hold for at least a second to enable sync lock for this deck. @@ -12386,16 +12454,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. Đặt lại chìa khóa đến chính ca khúc ban đầu. - - - Enable Sync Clock Master - Sử đồng bộ đồng hồ chủ - - - - When enabled, this device will serve as the master clock for all other decks. - Khi kích hoạt, thiết bị này sẽ phục vụ như là đồng hồ tổng thể cho tất cả các sàn. - Speed Control @@ -12949,22 +13007,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor Traktor - + (loading) Traktor (tải) Traktor - + Error Loading Traktor Library Lỗi tải Traktor thư viện - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. Đã có lỗi khi nạp thư viện Traktor của bạn. Một số bài nhạc Traktor hoặc danh sách phát của bạn không có thể đã nạp. @@ -13576,20 +13634,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13760,8 +13818,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Thể loại - - Folder + + Directory @@ -14004,155 +14062,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 Sàn %1 - + Sampler %1 Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist Tạo danh sách chơi mới - + Enter name for new playlist: Nhập tên cho danh sách phát mới: - + New Playlist Danh sách chơi mới - - - + + + Playlist Creation Failed Sáng tạo danh sách phát đã thất bại - + A playlist by that name already exists. Một danh sách tên đó đã tồn tại. - + A playlist cannot have a blank name. Một danh sách không thể có một tên trống. - + An unknown error occurred while creating playlist: Lỗi không biết xảy ra trong khi tạo danh sách chơi: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14160,7 +14223,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus ESC @@ -14197,128 +14260,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory Chọn âm nhạc thư viện thư mục - + controllers - + Cannot open database Không thể mở cơ sở dữ liệu - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14397,7 +14387,7 @@ Nhấp vào OK để thoát. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14454,62 +14444,62 @@ Nhấp vào OK để thoát. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse Chung trốn chuột - + Generic HID Joystick Cần điều khiển trốn chung - + Generic HID Game Pad - + Generic HID Keyboard Chung trốn bàn phím - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: @@ -14527,7 +14517,7 @@ Nhấp vào OK để thoát. No effect loaded. - + Không có hiệu lực được nạp. \ No newline at end of file diff --git a/res/translations/mixxx_zh_CN.qm b/res/translations/mixxx_zh_CN.qm index 1ed29fb88d202261c44ca2760ddbdbc2b41530fe..48dd1c981eb01b394e7369815809b05edd2196f5 100644 GIT binary patch delta 18200 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 IK2zEM0MAVoTmS$7 delta 19929 zcmajH1z1&GxA#5fTx;zPyG2w`F|b>)K@c!8P*F<7KqW*Bwj!8_0SKaEp>i7-*nx$C zfr^TSSlEhUCw%|C_VYZ~dB1bc`(9o*zqR&WG3S`0=9qKeg?seJ&gk7b9rmko>BHKD ztF>#K9KG?x!|p^*?TDx@k$weeOO%6SkV#1vPAmYM5%anYHYc*VB9lcrtZ=h3)yc+L zcVcyCf<1`YR0n$!vkd@yf#$m%iPi4|I)QJ&{>0TOM1mt;^gU9MDi3xa) z5RdcaL}C!JIz?bGvB%ZGFk<%`gR{xR>Q=%*B(b_1z5H0nrfaUrB(@WTh^ zh+5S_PwIm<;6f1c<7iN;1~@+iM&lfkYK@-pPvCrF4*w9f!*xP8qE2T10rA2vA_Rwq z+jIpV66N=gyUMIgF}Tgijo7^{G6i8Om`YSULMChRg{U`#lAb10Q2qeTa<~ZMarMz| zXRtvTB9~wi%A&b02hapG6Xe6I5cR?J^%@bm#*x5Q6S-mFzVrm=l8K%`kZx%A1dN=S z>mX2&+d?PYeTkmn!v46SWF?5cmbJ3b>XA&gLMxLmDwZjT{VmjCAO^G~x`*csY!1yh z0k#02fU-&g-=z8hVzvZUK>}=>#5ppJ?7>qO6<5 zZebY4oWo0@mp2W>CqXwSPA7i(HAMTEctHqJ;Up63K{dxFlF;1|mh%j-Q(jv5C5uerHz?cVXC!GbJ~p*UYQ2U?Q^vw=zB1YAi!ynW2$I^2 zCP5cPQpX5Lt~p7LeKE$PWU}F2B=yGdRIX@YoquGqq&hNrXWZ|K4ovzkldnE#!T~fq z5I2H+^#hUyLjoVB%VfQ-lQbri_;*K=#zIo}tC1A6h$zHKCQlhk(zJLC$!3xkZXvG0 z`RWLwYJ+65X0I*0(2JzCJ&BjuK+;A?s&ooTn~3PJsVzy{o)L2yN79bbL<_o-w5K(3 ztC3(2qL@}Pd9?tNPWcm+`(mNBvxRT)Jw9hi17z~fr6m21Br0!Xq4hMGY*8Bv6N6<6 z;xSTe4JR_~OeKYRtT*;1Wusf*R#J}7#aK=z<@8&y;S5r)@j^>SlD5wvBExtKt7pn& zQJpP}ahECZ?^I@1F0oNfsqDKm#2!|oa;dP4!kbh%0TLWNo~rf2(4Bll*6V!WXww+g zDbW#sG?Hvh2}JX^$mC~RQoRh3=+Q4~&;mWGJAfLrf_8gcq6TfD)gJiV6;^PmCN+dI z@>k2K;dNW^G&O|M@z;&15r&k_OSN$E9%|$fMFO>;zHjx_ld`@KL zMoqF?5JQl%9}G$SO(*-I2rYjj$v)Ya$V*R6j|LLIaEqE%IZU+hGPRhQLhR0AYDsm7 zf>ux~a|1hPQmZJik~6h7dwQ=w)LJ&fFlsx-Y_=DuT?2b!o10UIS*9(-GShGXo=mau zG^Y+%5CJ9xTDaC^;kuDBIYNy2d){$Ab$BJfsg$SA*-_|ud2(vC5w83aIjxE(p~`gX zZ3n9|w70POa+%EOtc6kKsJ96huoxTp1A(8W-rp<01=o?uZ7-7Zm^5Mqp5)R9L(r;N zCLdfvF0G@8{b&WQAwJZdT-sphP8=f_Umqf4h=p|=EqtdXmx+UjcX~!Hix(r7)F+oC zi{OYllgZ_1U1BB|a=CyPy>CmdTKI!5%VqMwndItpgjjMTa^tvhQxdt=fLCn4g4{gM zBAEOow{y`%WsX>AHOIoo`((0ZGh_eLXNblwr$Oj3JXfs_Vb4jpp;bRL| z?UX5q(KOsY9e$w$4G%6L-aCMXFF;UPq@@vx#l&hgq!Ilxh&$NQh{#l8f9}zUc?aOy zH_?ds=;(%G8ux*Fy*nkKC{P5kQ}3XFz1mfuK$r#mBhPNOMlkBQn8 zQc?N2{ulmWlStu9{t&-ekHUB4BL2U~q8Yd963_igb0V+60|ry1Una4OP83~r z9JLlPZdP$9CcYyC>1U+e7)Tg_3GGXVp zEc_>v@~trDecI5IS@uYfH_|hID`L;T(W|jp#4B{7w*!#xPVu6*Ga!*4L~oCmCze&2 z-kC-IWFdW;I-J<}B>EBp$?OZKuPZkaZ&gTNpJAx&o|@>p-hud`$MnbiBInce=S&gN z$$C`sDG-tfpwa_~0TsO%3oIe_CXlg5`NXHbU_x^*Vksp|2*D5}c4ATk1A3UuRFi5G zZ~cj>ldXu~&ScsH2x7srWb$>c%<$MieC--m(F4)&uZgotyR(UviDy+RCzGIE&#Emf zB6g%TtG(HdsPhe0_Zl8Fa6hwI6G6N_WA%>W`>f%t(doOyODD3XLrz1>eOS{lu(da9 zrpkdCE@RDKhY-JBjj?>&DuuI7O`z>N@>r*|rU=8U zS*QF0Vy=T&r>9oLBEnhc5u4#^CD!>QwDnjUbgrKy0Ae$sY z>BBh1=aE{%I@=kH*mLuF7U^cx@sQYMKv- z6kRQ>?aX7BOZudQyp*e%C{q?#kw*z=e(vV{`2x!O`(- z;SyV7vp2AXdto&__OoRPm<|2e#+Fb2N&HzWwnB3WW_XXS_=xMT9bp?QnhMcEYqs$p z^endl+q}Yx=*By?vrhrBV0*UH0~hYHV>`zM5G@O4I|E@>u~*o>>8VIsFR_fmnQ*n! z*nzrGs-TPPP$LywtQ!~su4ji}6)Z(ynH^Iw1MkB!o$%adi`ls>BqCK6?7V41FtL#B zEW0?FnC2n7WS(|4P_WB~ki*USz;a$MBf1^Pu5E>#Cr7jEtuGUe=p&OauE?%;L?+XA z47_HhlAF7GM(;SXI1p2~iv*%SBoW51i- zf(MDihn%)pgvHXw@L~x5}=0#p{Jv`LZZoJC-9O5f)@Or!PqV=AGBg14en+d$pHN=3NM!d1^HZkAd z-2PV~bi-XHzdDUK{alB5gMPf(F~kI`RNnGsD+IB1+##kH@iUKkH+OXG+9lrO(L9*D zsT=QAb~BRBUA%WB;{7iJ@8hur$!3X6zI++)w@6LQX$Bv#3c+MoZ$2~$_8soeNA<(! zeGl?co8cF>b>M!bnZ#Wpxc?P&ASIoT^UNgLSil38Eg&{IfsZfzPJGQQu!Q(X2R@-P zByVaSz^C}!L{HA}8O`4zJRaw>59SfQTf zjt31{&ZEvm5`U4(qe~#_t^4@G;jx&gRI{+w9+`r1JYQJqPONMRk7)_cnQYz^zT+M|p=UbZW!npO{)z7u@qOhcZA5ZKl1aZ@S=ap@bfn@M9T$!af<`d@pnA?*FY2_R`N@yLWx)T!mm`ubiUkh zex;8IDbq4Xej^;NRJoSl$o~Ru-Nx_rQbU`E@q1%ph)=1=@0;zmiHSe6T|q3`mp|)J z1m)85LPywfpN72f1g6)2J$T_4c)s=b`HT8JiPsI}Z&wH|dfq5Nmh6r!jE z{&QhAtm6RxX~F?(*I535&6&r4F1EweDV6^`cMf^_0RAf+V|*}+|4OS0N0Q2aKTRjz zVJ9z1A3`khsvyb@@E4@(p~N~J5R@r_#JBbpl-HjUzuH64W45o1zKO(!NP`Ng6}ps z82h?{UqS*2h7-aVn{*^5ZGI|9=3&Hg_6U_({ zg8QMNlkNr}q|O76uS4etr2!fX!+0n!fwTV6qk+*dk$}c*54QQS2v&l=_?$5VGl>-8RJc184SzIG$d|A0 zC_J%-N1V7^c=`-lUb<^;qkrnaUZAEpTBAD5HQN8d9%4@GgO=t?V zxlq($ip5u*63b7tLe8fUt8F|--2H`EeJO%aw_?$1Ev)ENidd^TBsqMCSl6^B3tD|p zv~lWA{P_dXHV~qloGaFAh4^3glvr;T97$=ZSnqrZ@qfmNcB5f7Hy(%$1DuIH$`Knz zBAsqtMQrQ_kJx*c*!Uajz`ehUEl|#7fxcqrK{>>Iaz)4ee~EplEV|Z$l26?!x*J`I zpY;|^9uZp*hu4c9iy)%Wuf@UTB8X=!6bJhj5F1fT92y75(PEqE^&T(C?jVlo5sRQR zP#m-KD=H+H#c{hamS>{GiDAo$CO#1Zn?PeVx5X(Md!pIaV#uc_SZ0V6Lp~$MH2Wb= z%N<6n!eudR&u=)sXC`ra&_$G8i^Lge6;LuM6=&@6g6QU1xLy!vRYoEaxm+~WScpt! zkQil{hwQkPIDa{K>A1LPPbx|*X%<%hDU(HoS{M^8QxH0cF}r;b#*4+6KS4xAd1AaR zbmq6|pqS9Z303LNV&dTE#E#jCNzTU+G!DyT+v>>_D%=)V2g3d>5a{%209Vj*(c9=_saqA!+qL zEbg1)P2{j#%;Ym2SoHMzAHYM4V_V+5Fch>%$+uhPaYK_R%D9LhRz~3WvW;> zzZucy1r~0fEx!DOp*(#^e0M7ziAo>wy=g0=S+tw@aRXfEpekaq$qSRlD6#nR9n}Am z#p0*2SQ+^$etHQJHtQ*VR+@QK{2CcTf^vcQZTkV@v*(H5d*=`z=PLg87*BljJ@M~8 zOuH-3kw{k_`Gl85{htxNJ}OE7z^rRukfbYUz}fqf$$Y^6HkG7DaFt%JGWqi6lA=ip zrpG@ewPYZ6#UN?xG=@ifCuvm4}YOx2?;(w}1EmJEX zk(eR1PQqCKy(qQbTN|m_XsJ#7Mk4RVGWm*QQoG@^uw2t$>e#hD@wPvtj)$ti9809m zejdcDc90xA4OmV4BRM2MnY#;8m$vY@-lL^1et6Cp(+c^3C$^Ki?0_~;Juh`VzM5FC zmQvS`C_FHKsau(A#P)_u-5%aTF{!%L!_S6zO-IQwx*?Lx#ZsS}U5TZwm-;-$_Z8nt zu05ec`xi>C{gIIT87K9fh1u_zM9Cuu9q4E!4UR*DrTfw_uL#WlN9~q8`@og@6i6dS zw?e@%P#WE9C#vGv(r71Fn2V=OHaAZuw=S?S*HIds5rLV}A8GU(EMV=tDfyk%Wr8H*C7NV3$3pciv#)le+D;i4^%=yIVNNJ*#GwT1BaA1#Ma;dj8aXF^jO1(7E zoLKnAOM#1EKI)26(6aql_nRw)4Eu_lZml%EK9bfHM`?OaES78((v0j$m^b9h}k#3}gX@@QRa!w{||3Ri;h?io_i%_~{ z7N$LuVkW?R58-(rPcuj{SDaj9R3m$Z@MXPzbIH&#mM4GHYckrEBDM0+ntNs+UWkX)9Mb_AkhZWh+k z%4C@@rPaS~Bcswt$=*GQy1tc?P0K@25OkH+EKGt6?k!W`4W)J6@gSXtw805Vx%RzG zZW|}1Vm*LY{48y`-JY13Ep4BD7BiZy()J}Vx5~Yx?H5lHJ!mD9dCiu|t6Y(G#EYmS z&XUqKNyMx5kkWhZM`GeDnf51LfI~1y2MS9U(-zQ5a>ldL0^jtbM*aqv`2{L)mU@7YZl702z@t-)E?96+a zyh)mL{!=D#S9g1Hz;$=Hk+9CgpgxLPd0jbgh~l%4NmU^$SQgyIhoVRZ3(m zXQZ2X2%q=vNO|qtiKH?z1?iNO*9l|3CP=z}s}5GTwNidJ2h<66NDqC|iN9GOJwAx+ zxZz0Y=@{I% z>D1>6TJDE+>@WqtjOe|onL_vnRxf%eq%1tI`e23fs$LaDI>1>5#{7NKVISQvqK3KcD3z~3H2!wKNT+Z&LAx?C|qK(X7w;x;o4e><-P+7*Bu6;z*w0)nJWfdG!VZt zS}~|e0cK{i6`n6}ZknqY&MFeyw_GuNB~V$!uEs7+l}Ouf4YOFml^LC{HNT|qI;wHwj2Y(<#aA;v#fgfBt;!?0K}Q-MS* z<*dRqQ-xIS^#g^e<{x4kZz$&c_8~U7p<-_GO`?Dbih1|aFt^+%lW(CVTMQv0hm9r;mZ>vap-x`&ZM8&29UMOU|Q*7(E3NeKgY1K-I zpU+dI*?{++E4JIkVKuItV*A+@*#5FqvHd3_>Z?%f*zZoc9wsp4k!fN_wWxF-#;ff~8 zj!j3vvq{R%Vjto$E0vvRe1h^waqH??ncTI?0Vv|py%^=73E{*7<|_x?L`RO7QF>fB zhsw`L5bf|zR1T?BNP^l&Idn5rCAYV7*pEVD%_}IqP!-@=AC%rRv2OaZfc@7v)rQ&CI*2GIR&pJ?o-! z_OVu&3;&~>YoCjhvp_lbi!G5;Tji1(wTRxAQ7#E;g`gdzTyn|*A?=egX0$oIxuJ}? z&rw0h=!jT-&c7uFqqibs>)MWTO#Nc zD6`JpBGO)!Dd_GhFC?U3=q4#IFv6!r%IoXAvG!hBd24zs z@g=*Jw@trMc)h4n-kJUbG3C7Sj_gsxly}_<2z6>@L33;~8$rrv_1%fSpH{wFxDqqM zlgd|1S`Z%`rFB zRr%vDo^!=f`K#Q1c=(}8)30=l-NoO^(q=ZqzD-b;4)H;d3sJG7P{Q0Cl`sm4*U7RL zp31cFbT^f>YcrOvuB-GNpaZEcDnrmPVjbS7Dy~Y$it{H`WpiTq+*?&84~bpQV^wwQ z(O7LzsjSmpB3~P;vfk?sUD23S*2N#NYFJKXyET>gTnAOX#s;FyAXU94Iarj7Rn>b7 zzx8l{s=fop_CUI-L1;D17RsrbwA%;e+@iAojTgSutD3Hdq>|gInq#jW)n2b^omCep z>H(R|l&Wf@NhOM%qiWZ!g!qPbs`iP4&@q#Ts-rzbDh*XR2o;g11gpB$he%s*mC1+L zsCt}Ogn83wm6M$SH;|_4-K`hO9b{qpHC1n~3q*0}RnBF5A|+j|a=zFT)x?)7_xyAy z?JZS5Z@h3_fvW#jU+9v%%G0d^QPMKih&G|9pKeg7yuNv0jeCL0w_ysjc#SHcqa8eJ zC)LDR=-J_^s!2N_;t~5)flW~LFSA57r862*<&Y})WD&8UnW_*ahHAuV)vPn{KaE$b zW);HEUGJru^T!^Zd#Gw|q&@Ldzg3ag5W?=e%jE7IRgvkru>Vh|RrA(%C$e!-MJr$p zQgu~y3ao*(RYf1^fPA8zYW{Q-^|$1z78IXGu-vR#xHph^Xie2(O(qF^sA};wq`1q< zsbbeb%Zrw&md!;299&f^rVEh7YSqfjB1H3(s+B)5Bu_$B34ITs@KaNjFjau3_V!dI zFUE}*kE_3k18o~cU7bw@(c>MZQvPIcMQ0ekIEsxFTK@AXk# zHr*UaytYww85GL=QC%621~_(5UCBn_HSLD#%KHqgcigjZNd?taA%keTvrN8OR9%fY zhgpV7m1~a|H26PcU3`Els#Y6QavdPPnh>n^@U1^z1pn$_7mU# zxUVw(9u`kL@Pq2lPAK1@>Z-pPIoOKQL(SV{Vv=pE7DmPqJN-o_Z`e;Qgjiu6)Jd&` zHSk(T)!K#6k@RXUtTEWa{A{&uIHnN?7plv~Mqyc`y}Dc{`231z)Rns<$R&HKs~?8I zy8JMyYwUr&*Ns-!oD_(K8E3VX|8Am>PU^Z9t&o+MRo5*>zuo08Y7 zZC3gt=xEgqy4qm-!Zx*?GnDJ=Oqnd=k-G6Y9r1Y&)Xjot5O2Lm-69`j-e88htv514 zX{frLRXnjWrfhY)T595rN2%LS-At@?fV%yDOneGF)!mSP@E#S_Jt96MSkzNH#U8<; ze1Ek|s1?!VeKL9S6tzn}8nSbo+HGtJI+AVS!=q}qJ21P2AJu)!!U`7Us{47svnIr; z`?q#L3A=)N$hiV!YA$x_VL8Dl)HG3h4$2{ZqMh1n(M?QAkEneJ5{OPy`y3yQ6mg{5 z_w933iuPF;|3*D_I3Cbvy?Wd;C{wM+7Ou%qk9QS`)_Ta~w;HL(&rL->;HRFDgvEf# zYt$3f=-95>>WLG#Vg01c8~K2&(q*z`sWJtziaPLg35xIb>YzcOU#vQKYC6%RO6rgy z24eH;sY7xdh+FSdhkwNUWzuH#jKaIvapI~r-GQ>bc2dt>rG;c|EQ~p=o_EDSJbJTw z-c6K8hA&V@1+BzPZBLQ;083cE)e9bH!=p`CFFxc#Y(-1;5;x4P8y~fB?<#dn2qg32 zjyg70kJ`6Ry?hh2yJ4w%ZTU@bsqX4^4XVN{73y_E;17hpF8$Fr=|=bhC^MUSY@ zyTD3JbJZ7X1|q}KsxQq3H|$eish1BC`W{tZtB(f+>($q*^n&kxuD&rj7Cow@zA<$- z@$gG=Cz{!s1Z6YzquA%f_N-AqUpj{P;x6h}gRrw?-5Cql_fWr@VoT&VO8si)WhBi( z>euVjk+_smzd7XvKQUYVCVw+hJ9qWFvB(WK^^z&*uc(U!xa2ig)ZcCv5g!_&{)L^* zZ0{HK@7Q5j)BCReeP|C-sNwz9zpo-{9oDG-dLXf=Swa1GgadX7gsV#?2nD?$y#fu10*)kN<$fin8}UMFr7QG!af>)tTp!Pw%73EIDfi9BYvMr%&VzJ z6Sx=3wG0gTvkw)LhtH$`U1SPJ$n(BIpu>TiL&0>2*wG>UgJL8F+ zYOAT=4M9w_)ifH6?@!LxG;xZ6CvB~+Ew;zR>6oT>^H7u*Y&3n?Gg!xMO`pB^6@hgFjhi2==z~_{9+5+=-vUj) zrqI2o)iuLA7Z7W#(Tq5XvS~Z6@%fO6JvMhWzC$3PmFF}jzfMRTj9WA^Yb>-dgZ5q6j~;YUs){~w{5k&c}ppAKpwHwL1%enu0S z69SQ~(?mXm`5gowFXL+o1s~##{&W85NyBnx#nxAQ6>j+2{Qz zJ0xnBKWj-s)lHftLw7{SV$cUEUy&xsc`ZEWXbTscW@(ac!p_@`k;zQuWpdAjn$^SH zk>Rw}tUe>+*D^;e)ahjk`e@DSdx5a~OPb^|n7Gsk*Cf}$+}5|QCM6F_x+qzb^36;S z&H8mP*N&Yu8@i=Hx0-1-6a|43G#jZHrS4CCaPW!Pr}>(VehAO+eKnhYVGaH5HqDk1 z7^65F%{I@q@Nlg)J8FbrJCs7Rqw^E&I=HXd*%{itN~776gA{CIWzF6_NInBjY4-27 zB6haA=5U*CBvkCCIg*R1X8Rv9+3Wc-1@!^VvEJcu)jUH!AnBon^`6TV6f-rMo=`IP z>6pVq1wlj95vT_E`sP+X>w=$#GE!qbIUfz{C*qFt;P6Y`Fzdoj~LUnq$$Wk z4+2_h9^b2jLdY=9lSJ6>!*I>(Q`n-~!d>&$HJ$kMj+){Jh<+teny+VH!;kFH{FKlj z_syC=p_n0c2-f@^16@krtSJq^bC0~zl%6fYg3>ju)O{nud|$1!!2}T}uGK0gWumOG zSE~;9Cpv)4;|p$Bny1yfLkU~<*OreIuz)*OTk*wvr1jgiRmu)TU3R3l+MN=lcuv|{ zkv$=iy;|#Nr2UE;+9nhCV<-9#ZIgMiST;%4+AnrMm@m<`%rA$DO}@4re(Jy*t+OAI>FmZXR?Vjh0()S&iY}Yrf zYWoaF19mjfx>dV{3eF&{yZQ@;;=Q)NtpRz*Htm2xy|8KEnbyM|{-NZJ)}vVg3b2c` zBjabnF%@Y|qke@Wtv;X~T@`lzW02MdYhnDhUhBKso#>69*7rB5Pg4zc50*-%<_zO>Wds=bClX?4Td0Vb?9li(-vA+mC07+ zX%{wX0nheFyQIZq;(dE-V;tdnSAUktYYo-Ltb^{<=%`)l3Uh4KU%NaAxoE9L+Lgz< zVy-w@8($Wym6bneSJnTD#K$yKn-m&|?FwDBNw1+4clUzu2X~9L$*nNus_LL!>lTFs zBt<4Gx}@D$br=c{U9=m2XA;kI({7f}xps3tdbH=6g_oCGcr{VGb<0!a9mO&Qy-~aK zEE>3bvNnA+{D7%UkaqV0jQyVn+Pw{5U=7?~yDti*<@^}!q4IXv8J29}wixZvd04*u zSWA2S4a_L{m-fUyB&{9ewVCGYACzcMw!(~RQVZ?L+dWXbYNxSB`#${dXB9A28E2?KST}?2p>2&9%V;x4LNaTw(tuue5ph z9Z=c*qP?G-gKYSqHs20Gr^RY*{>l}^TZU=#cNT*x?ITSQlyS565vq8+bqnqD^S6k0 zwAQ{G27gfFt@gvmP+~Xyv>*3WAUb+qTl}jf?7#XD?Wb&*$BsztPd0#f+*$2Uk3A?a z4%7bJ2~iI$)$t9zFy(U631JwjM~=EOrV^|)ebbd$l1XI!R9Eg5YC(2?bu|tCFI|t4io{c9>v~np!T#>vx?ZLbD1rS}ons9< z^r)H6Y4}i#nY+$u#ij_w~82| ztfe~lhG&TV+^8Ec7!9pF+ro4(Nh_ac5jTj%q|%mF&zb@`a! z+|c=3l|WZ2>-_s=5})={H#TY?a>7%(agQ;bcRZmRKNsejYNeZ68;MQxT_#;<1AB~p z58bqZDcGdDMHj{~rsE#!!mPHSNcBn=HW3TCUw-JqO#9(tXXwK6ZW9IE)rFsUjVarB z-OPSaviwNhyvq>j#aP|KokjTV&0Gs>ZqzNl?*&iSQzk#2s#`K79btQrE_MMLo@C0< z#lK1>);?U9V8onoL4t18X56s0vP^#Sn=YB5<+XihwABLU>Zq#j1r6UV(qubO8vvB2E-L_pTP%mgMQ_$_u{Zrck z_U{v{+wl|edEi0a?!OYsZXI=pA1xvpTSa%G%~`BN7<8E~;UtvZs5^ayqXIlwclMb* zHhkXGWpU_88G}sj=_ylCUC>?dev9DpKzGFvxurTvm%A*M_}yq-ZXA@+db94PO*W>6 z$-3J|tx&32k*3RQ?trMbRd;7L5{-SIb$4qlm+ z$)}F)(;ax!jzzj(%^Z;bZ*F2fAlhD2S9%aDI34%tdF%nqd@AVq_QAxdf?f>73!WSF zY9o5SzF4pR2}hC?sn=}1i5)5X^qL>|4V@}hUlu=&pu@-Y6%{^^;Awruj|IeMH`iAx zk6Cv2S^CQB;Wt7)>Z=bzI`4f+Ut_%qsn+i>eT_T)kOy#m%@NSbge-l{^d?v~c%iQ~ z6D^;fqqojPkAI}-Z7U-hP8y`I?+UH%7NT$926J4UWZ}oj`i3Jiknyb3+wX?wY!#tz zsl@%eUg+DzR6vF0guXrM4}A7^7RM@97C0_&5p_!Bl;(vi5GSOBaz1!nj#14(syEh6%Faj66Mw02K@3&+g z3XEy`{#I}}9Z%>7UB!)E{^|$!1JC&Ahn2w9?l`OWf~eW>YkHqyb%>3*t{)R_K$sQu z0Y)scwdtl0aO{Bc-(>yx4doETR_Q0$@e(nS!E@ezn&kTrq!2tbE zJ1hJiVxfL#?qVbuNA&4)8euHY==ZKD#Y81ne`Eu!;cbZi=!6uMV(j#p-Or)HNA)N7 zAsRl5*PrTw`9RP5`cv~-6K~pIpOsV*8@;aUFZahUSsr@ouP;Fn>p(mGot}`i>G&J{ zz2qX|;qLl^v+2Y<>**gEAc?Q_^iQno5*;b8f3g*Mfcs$mv+Q~JHNrjp3;z(J$sYR8 zeNj1WwNn2jEDS|yFa4Loa40Y7zn0WMLq6)im2HWwaewutYAEgDxiVQ@2ZKTj&$`Op zpjZq0r<>aim9D|AT~`}wl|`O^rp8ZsDP-!St@4wh2u8s@T0EVi6C zM4mxkf{z>Knb79wLx!mEMZ}*RF+{gRAa$u{i0%g&7`s}SUt(Ca73*Zh7Y$1iGBK*w zh9$+wm#fAZ;_l$N54swXj^OhSPKM;zL#UV4HY68f9$ewKVO=X*zUJ*+YHy^)x&%?-#oM(U5;0GyZ8=hJu!Jh=dOo zDn*%s%F6KAyfV-=(D3-KJr?Aa8J@m&M~Sks;rTi^-GT;&=Z7C)G5WjV^GZxXqPiG< znerj>eWwh+OCYK)bq#-0pTPBOk;$he8A^`9=XuO9lvW1^cQKS6h1x~jGLm`Se%eGM zZ;i23-ZAn$!%+X8Wt7^Ug>&6+RJxdVFoYOY7YxMetBsn2_lP&?Z`2AcuoSY^sMR1> z`c!H(X;BQJbMZ!9VKhnx{fzqKkU*bcqaMGkrLeC?qxsyqL?#bCV=OZXqMcg7ShjHr z=17-}Wk(=QZMfT5VKGNB=a8{-Pe`CqV`J4C_b~DHH&%aLLfpTMv36K2B=gs3>p2y3 zCXKP)Q8V|Lj14NM6Fu-Z+O_*kl>W=uI1JjmJ7)v6)?aB<9J+ z=JQ$-t0Wj(9Ck-w9cgUsf$uv`Ft%xcD$lG$WBdBhmCV=14h@i9Cb$_p4$j2#RTpE& zfGA=cHW)k3kA?56XyIkkDa*mti^eW-W;1GP>^=u!Y1CMwU#F_rg|gJ>f2Ip6cY-ls z_aHo=P^Q3_8OQH{CA(FWDQL?Z$A9pG4~;iYXcdfk@DSr<306~RW1L*q6}8gY#*pL$ z?0R9wnfn8=fg#*DR{=?yLI)a`jM9=&CCwNkMqqi_Xk4)b+1=nm<0=<>6x>=HS64*x z)iS}jZgx82-BM%9`B3b1h&8T{Kvd~a%eZmebo4aWm>TVYLftasmYn8jn2T}S!9Zdw ze2wYFxPErNad!?R*p-ZXGNE&wS{wJ=Hg7DLd%(EwNd}ggoQ)agM7dG6@j!>qShOiL z9&Ia{m*tGdzadjdh%jcxtC6VhGM==D(oO7cJb4dU-|7V8$!~b@ruW9Ixe$HMTjTlh z7#i-X8^3ZPe0t>gkHQuj-o}8~@%&*Rf*IQ*Q_>Q3~h&DbRjn6wb zF+R(HP966*7PbgO?&E2Ed-5HYFno>Qwt65*D+cR$z@FQI@RnKgqGjwqNUrZT+K7fz+M)ksE#`fFCU4 zzq&pBeS`eHgZ-@o0z>?R0=*|%Px21NQQX_P_1ahZ*AxD?yKDcicW;QZ$+#YQq-^JE zLsJH9_#{@35+6|J%dk zW`@;O|L3`J>%%Hm`ftxcJFT0PSZbn`78I1gLD)8|MS`k|9S1e@IYT{OW(}> z%6J=}-J!Pm+QiREEBZbeJ^4TPX#dYkYg95{HNN&J z&%duhw_BE~`UfYxr>5>X_^)HB`akzIlb<|kvY)?o%O=4g-XZ?hA(O|Bo#=1fps%B2 zV{6C0uC9HD^cv9E+O6BbLA?gV?LAl{qw{q;v6aF6j{l*5)dyMb|6jUUBV+8XZeo)% z|8C)b>ub4x-5+e0&cAg1^d0MrU3Z)M^{ukJ+OiAoIeu6Bj+pg3;?cAylbyfAgj;== z{HH^WyZKF?5@H?f>y18)@%9aw9ArHvX!0cMka7Ojlc)Fxd4~i9ja%WU+-+$eyi%m1ut5`|JQg+RzYgM7@919XN^zC$yWyAZy3Ivh;Mvx{Y3fGVEhfizW@rPvG_I&M-%bS ze4jT>ApgX&TA^xhC%1s<)2CZc3Jngi_VKq4^2gW(h4}m7WX$9s3?h0P=pSZ1ak4Ck zVE+)g+hG9{Ct8PiPw=<)A2Y_^H^hE{wKqFt?afcu9ARCm@`@idaLgC~Jrn$!ni_^W>zty#Zn z+a>m|DwIF;G=e)ctFIZ<^xseY�B_73l4Q0sAjECH9Zxn9D!F$wKfF|Jeta|jpJsI* AutoDJFeature - + Crates 分类列表 - + Remove Crate as Track Source 移除为音轨源的分类列表 - + Auto DJ 自动 DJ - + Add Crate as Track Source 添加为音轨源的分类列表 @@ -43,24 +43,24 @@ BansheeFeature - + Banshee Banshee - - + + Error loading Banshee database 加载Banshee数据库时出错 - + Banshee database file not found at 在下列位置无法找到Banshee数据库 - + There was an error loading your Banshee database at 在下列位置加载Banshee时出错 @@ -69,32 +69,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) 添加至自动 Dj 队列(底部) - + Add to Auto DJ Queue (top) 添加至自动 Dj 队列(顶部) - + Add to Auto DJ Queue (replace) 添加至自动 DJ 队列(替换) - + Import Playlist 导入播放列表 - + Playlist Creation Failed 播放列表创建失败 - + An unknown error occurred while creating playlist: 创建播放列表时发生未知错误: @@ -102,144 +102,144 @@ BasePlaylistFeature - + New Playlist 新建播放列表 - + Add to Auto DJ Queue (bottom) 添加至自动 Dj 队列(底部) - - + + Create New Playlist 新建播放列表 - + Add to Auto DJ Queue (top) 添加至自动 Dj 队列(顶部) - + Remove 删除 - + Rename 重命名 - + Lock 锁定 - + Duplicate 复制 - - + + Import Playlist 导入播放列表 - + Export Track Files 导出轨道文件 - + Analyze entire Playlist 分析所有播放列表 - + Enter new name for playlist: 为播放列表设置新的名称: - + Duplicate Playlist 复制播放列表 - - + + Enter name for new playlist: 输入播放列表的新名称: - - + + Export Playlist 导出播放列表 - + Add to Auto DJ Queue (replace) 添加至自动 DJ 队列(替换) - + Rename Playlist 重命名播放列表 - - + + Renaming Playlist Failed 重命名播放列表失败 - - - + + + A playlist by that name already exists. 使用该名称的播放列表已存在。 - - - + + + A playlist cannot have a blank name. 播放列表名称不能为空。 - + _copy //: Appendix to default name when duplicating a playlist _copy - - - - - - + + + + + + Playlist Creation Failed 播放列表创建失败 - - + + An unknown error occurred while creating playlist: 创建播放列表时发生未知错误: - + M3U Playlist (*.m3u) M3U播放列表 (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U 播放列表(*.m3u);;M3U8 播放列表(*.m3u8);;PLS 播放列表(*.pls);;文本 CSV (*.csv);;可读文本(*.txt) @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. 无法加载音轨。 @@ -512,7 +512,7 @@ - + Computer 我的电脑 @@ -532,7 +532,7 @@ 扫描 - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. “我的电脑”可以让您从您的硬盘及外置设备中浏览、查看、载入音轨 @@ -645,12 +645,12 @@ 文件已创建 - + Mixxx Library Mixxx 音乐库 - + Could not load the following file because it is in use by Mixxx or another application. 不能加载下列文件,因为该文件正被Mixxx或其它软件使用。 @@ -681,6 +681,84 @@ 无法加载空文件'%1'。 + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -863,13 +941,13 @@ - + Set to full volume 音量全满 - + Set to zero volume 设为音量 0 @@ -894,13 +972,13 @@ 倒带(轨)键 - + Headphone listen button 耳机监听键 - + Mute button 静音按钮 @@ -916,25 +994,25 @@ - + Mix orientation (e.g. left, right, center) 声道选择(例如:左声道、右声道、立体声) - + Set mix orientation to left 设置输出声道为左声道 - + Set mix orientation to center 设置输出声道为立体声 - + Set mix orientation to right 设置输出声道为右声道 @@ -978,36 +1056,6 @@ Toggle quantize mode 切换数字模式 - - - Increase internal master BPM by 1 - 增加 1 级内置BPM - - - - Decrease internal master BPM by 1 - 减少 1 级内置BPM - - - - Increase internal master BPM by 0.1 - 增加 0.1 级内置BPM - - - - Decrease internal master BPM by 0.1 - 减少 0.1 级内置BPM - - - - Toggle sync master - 切换同步音频信息 - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - 切换同步模式 3(关闭/从/主) - One-time beat sync (tempo only) @@ -1019,7 +1067,7 @@ 一次性节拍同步(仅相位) - + Toggle keylock mode 切换音调锁模式 @@ -1029,199 +1077,199 @@ 均衡器 - + Vinyl Control 唱盘控制 - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) 唱盘控制cueing模式(关闭/单一/热切) - + Toggle vinyl-control mode (ABS/REL/CONST) 切换唱盘控制模式(绝对/相对/常量) - + Pass through external audio into the internal mixer 从外部音频传给内部混音器 - + Cues 切入点(Cues) - + Cue button 切入(Cue)键 - + Set cue point 设定Cue点 - + Go to cue point 跳到Cue点 - + Go to cue point and play 跳到Cue点并播放 - + Go to cue point and stop 跳到Cue点并停止 - + Preview from cue point 从Cue点开始预览 - + Cue button (CDJ mode) 切入Cue按钮(CDJ模式) - + Stutter cue Stutter切入 - + Hotcues 即时切点 - + Set, preview from or jump to hotcue %1 设置、预览或跳转至热切点 %1 - + Clear hotcue %1 清除热切点 %1 - + Set hotcue %1 设置热切点 %1 - + Jump to hotcue %1 跳转到热切点 %1 - + Jump to hotcue %1 and stop 跳转到热切点 %1 并停止 - + Jump to hotcue %1 and play 跳转到热切点 %1 并播放 - + Preview from hotcue %1 从热切点 %1 开始预览 - - + + Hotcue %1 热切点 %1 - + Looping 循环中 - + Loop In button 开始循环按钮 - + Loop Out button 退出循环按钮 - + Loop Exit button 结束循环按钮 - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 32 - + 64 64 - + Move loop forward by %1 beats 将循环向前移动 %1 拍 - + Move loop backward by %1 beats 将循环向后移动 %1 拍 - + Create %1-beat loop 创建 %1 拍的循环 - + Create temporary %1-beat loop roll 创建临时的 %1 拍循环滚动 - + Library 媒体库 @@ -1332,20 +1380,20 @@ - - + + Volume Fader 音量调节 - + Full Volume 满音量 - + Zero Volume 零音量 @@ -1361,7 +1409,7 @@ - + Mute 静音 @@ -1372,7 +1420,7 @@ - + Headphone Listen 耳机监听 @@ -1393,25 +1441,25 @@ - + Orientation 定向 - + Orient Left 向左 - + Orient Center 向中间 - + Orient Right 向右 @@ -1510,52 +1558,6 @@ Sync 同步 - - - Sync Mode - 同步模式 - - - - Internal Sync Master - 内部主同步 - - - - Toggle Internal Sync Master - 切换内部主同步 - - - - - Internal Master BPM - 级内置BPM - - - - Internal Master BPM +1 - 级内置BPM +1 - - - - Internal Master BPM -1 - 级内置BPM -1 - - - - Internal Master BPM +0.1 - 级内置BPM +0.1 - - - - Internal Master BPM -0.1 - 级内置BPM -0.1 - - - - Sync Master - 同步音频信息 - Beat Sync One-Shot @@ -1572,37 +1574,37 @@ 单次相位同步 - + Pitch control (does not affect tempo), center is original pitch 音高控制(不影响速度),中间位置代表原始音高 - + Pitch Adjust 调整音高 - + Adjust pitch from speed slider pitch 通过速度滑杆来调整音高 - + Match musical key 匹配音调 - + Match Key 匹配音调 - + Reset Key 匹配音调 - + Resets key to original 重设音调 @@ -1643,466 +1645,466 @@ 低 EQ - + Toggle Vinyl Control 唱盘控制开关 - + Toggle Vinyl Control (ON/OFF) 唱盘控制开关 - + Vinyl Control Mode 唱盘控制模式 - + Vinyl Control Cueing Mode 唱盘控制切入(Cueing)模式 - + Vinyl Control Passthrough 唱盘控制直通 - + Vinyl Control Next Deck 唱盘控制下一碟机 - + Single deck mode - Switch vinyl control to next deck 单碟机模式 - 切换唱盘控制器至下一碟机 - + Cue 切入(Cue) - + Set Cue 设置Cue - + Go-To Cue 跳到Cue - + Go-To Cue And Play 跳到Cue并播放 - + Go-To Cue And Stop 跳到Cue并停止 - + Preview Cue 预览Cue - + Cue (CDJ Mode) 切入Cue (CDJ模式) - + Stutter Cue Stutter 切入 - + Go to cue point and play after release 跳到切入点并在释放后播放 - + Clear Hotcue %1 清除热切点 %1 - + Set Hotcue %1 设置热切点 %1 - + Jump To Hotcue %1 跳转到热切点 %1 - + Jump To Hotcue %1 And Stop 跳转到热切点 %1 并停止 - + Jump To Hotcue %1 And Play 跳转到热切点 %1 并播放 - + Preview Hotcue %1 预览热切点 %1 - + Loop In 循环入 - + Loop Out 退出循环 - + Loop Exit 结束循环 - + Reloop/Exit Loop 重新循环/退出循环 - + Loop Halve 循环减半 - + Loop Double 循环加倍 - + 1/32 1/32 - + 1/16 1/16 - + 1/8 1/8 - + 1/4 1/4 - + Move Loop +%1 Beats 移动循环 +%1 拍 - + Move Loop -%1 Beats 移动循环-%1 拍 - + Loop %1 Beats 循环%1 拍 - + Loop Roll %1 Beats 循环滚动 %1 拍 - + Add to Auto DJ Queue (bottom) 添加至自动 Dj 队列(底部) - + Append the selected track to the Auto DJ Queue 将所选音轨追加到自动 Dj 队列 - + Add to Auto DJ Queue (top) 添加至自动 Dj 队列(顶部) - + Prepend selected track to the Auto DJ Queue 将所选音轨前置于自动 Dj 队列 - + Load Track 加载音轨 - + Load selected track 载入选中音轨 - + Load selected track and play 加载并播放所选音轨 - - + + Record Mix 录制混音 - + Toggle mix recording 混音录制开关 - + Effects 效果 - + Quick Effects 快捷效果 - + Deck %1 Quick Effect Super Knob 碟机 %1 快捷效果的超级旋钮 - + Quick Effect Super Knob (control linked effect parameters) 快捷效果超级旋钮(控制关联的效果参数) - - + + Quick Effect 快捷效果 - + Clear effect rack 清除效果器 - + Clear Effect Rack 清除效果器 - + Clear Unit 清除单元 - + Clear effect unit 清除效果单元 - + Toggle Unit 切换单元 - + Dry/Wet 干/湿 - + Adjust the balance between the original (dry) and processed (wet) signal. 调整原始(dry)信号和处理后(wet)信号之间的平衡。 - + Super Knob 超级旋钮 - + Next Chain 下一效果器链 - + Assign 分配 - + Clear 清除 - + Clear the current effect 清除当前效果 - + Toggle 切换 - + Toggle the current effect 切换当前效果 - + Next 下一首 - + Switch to next effect 切换至下一个效果 - + Previous 上一首 - + Switch to the previous effect 切换至之前的效果 - + Next or Previous 下一个或上一个 - + Switch to either next or previous effect 切换至下一个或上一个效果 - - + + Parameter Value 参数值 - - + + Microphone Ducking Strength 麦克风闪避强度 - + Microphone Ducking Mode 麦克风闪避模式 - + Gain 增益 - + Gain knob 增益旋钮 - + Shuffle the content of the Auto DJ queue 随机播放自动 DJ 队列内容 - + Skip the next track in the Auto DJ queue 跳过自动 DJ 队列的下个音轨 - + Auto DJ Toggle 自动 DJ 切换 - + Toggle Auto DJ On/Off 开启/关闭自动 DJ - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. 显示或隐藏混音器。 - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore 音乐库界面最大化/还原 - + Maximize the track library to take up all the available screen space. 最大化音乐库以占用所有可用的屏幕空间。 - + Effect Rack Show/Hide 效果器 显出/隐藏 - + Show/hide the effect rack 显出/隐藏 效果器 - + Waveform Zoom Out 缩小波形 @@ -2127,93 +2129,93 @@ 一次性节拍同步节奏(和启用量化的相位) - + Playback Speed 回放速度 - + Playback speed control (Vinyl "Pitch" slider) 回放速度控制(唱盘音高滑块) - + Pitch (Musical key) 音高 - + Increase Speed 增加速度 - + Adjust speed faster (coarse) 加快速度(粗调) - - + + Increase Speed (Fine) 增加速度 (仔细) - + Adjust speed faster (fine) 加快速度(细调) - + Decrease Speed 降低速度 - + Adjust speed slower (coarse) 减慢速度(粗调) - + Adjust speed slower (fine) 减慢速度(细调) - + Temporarily Increase Speed 暂时增加速度 - + Temporarily increase speed (coarse) 暂时增加速度(粗调) - + Temporarily Increase Speed (Fine) 暂时增加速度(细调) - + Temporarily increase speed (fine) 暂时增加速度(细调) - + Temporarily Decrease Speed 暂时降低速度 - + Temporarily decrease speed (coarse) 暂时降低速度(粗调) - + Temporarily Decrease Speed (Fine) 暂时降低速度(细调) - + Temporarily decrease speed (fine) 暂时降低速度(细调) @@ -2270,806 +2272,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed 速度 - + Pitch (Musical Key) 音高 - + Increase Pitch 升高音调 - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch 降低音调 - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock 音调锁 - + CUP (Cue + Play) 切入(切入 + 播放) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats 循环选中节奏 - + Create a beat loop of selected beat size 创建所选节奏循环 - + Loop Roll Selected Beats 循环选中节奏 - + Create a rolling beat loop of selected beat size 创建所选节奏循环 - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position 打开/关闭循环,跳转循环点 - + Reloop And Stop 再循环和终止 - + Enable loop, jump to Loop In point, and stop 启用循环,跳转循环点 - + Halve the loop length 将当前循环音轨长度折半 - + Double the loop length 将当前循环音轨长度加倍 - + Beat Jump / Loop Move 节拍跳跃/循环移动 - + Jump / Move Loop Forward %1 Beats 跳/移动循环前1拍 - + Jump / Move Loop Backward %1 Beats Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up 向上移动 - + Equivalent to pressing the UP key on the keyboard 此操作的效果与按键盘上的上箭头按键是等效的 - + Move down 向下移动 - + Equivalent to pressing the DOWN key on the keyboard 此操作的效果与按键盘上的下箭头按键是等效的 - + Move up/down 向上/下移动 - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys 使用旋钮上下移动,和按键盘上的上/下箭头效果一致 - + Scroll Up 向上滚动 - + Equivalent to pressing the PAGE UP key on the keyboard 此操作的效果与按键盘上的向上翻页键是等效的 - + Scroll Down 向下滚动 - + Equivalent to pressing the PAGE DOWN key on the keyboard 此操作的效果与按键盘上的向下翻页键是等效的 - + Scroll up/down 向上/下滚动 - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys 使用旋钮上下滚动,和按键盘上的向上/下翻页键效果一致 - + Move left 向左移动 - + Equivalent to pressing the LEFT key on the keyboard 此操作的效果与按键盘上的左箭头按键是等效的 - + Move right 向右移动 - + Equivalent to pressing the RIGHT key on the keyboard 此操作的效果与按键盘上的右箭头按键是等效的 - + Move left/right 向左/右移动 - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys 使用旋钮上下移动,和按键盘上的左/右箭头键效果一致 - + Move focus to right pane 移动焦点到右侧面板 - + Equivalent to pressing the TAB key on the keyboard 此操作的效果与按键盘上的 TAB 键是等效的 - + Move focus to left pane 移动焦点到左侧面板 - + Equivalent to pressing the SHIFT+TAB key on the keyboard 此操作的效果与按键盘上的 SHIFT+TAB 键是等效的 - + Move focus to right/left pane 移动焦点到左/右侧面板 - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys 使用旋钮左右移动焦点,和按键盘上的 TAB/SHIFT+TAB 键效果一致 - + Go to the currently selected item Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) 添加至自动 DJ 队列(替换) - + Replace Auto DJ Queue with selected tracks 使用选中的轨道替换自动 DJ 队列 - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button Quick Effect Enable Button - + Enable or disable effect processing 启用/禁用效果 - + Super Knob (control effects' Meta Knobs) Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes Toggle effect unit between D/W and D+W modes - + Next chain preset 下一预设效果器链 - + Previous Chain 上一效果器链 - + Previous chain preset 上一预设效果器链 - + Next/Previous Chain 下一个/上一个效果器链 - + Next or previous chain preset 下一个/上一个预设效果器链 - - + + Show Effect Parameters 显示效果的参数 - + Effect Unit Assignment - + Meta Knob 元旋钮 - + Effect Meta Knob (control linked effect parameters) Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode 元旋钮模式 - + Set how linked effect parameters change when turning the Meta Knob. 设置调节元旋钮时相关参数的改变方式。 - + Meta Knob Mode Invert 元旋钮模式反转 - + Invert how linked effect parameters change when turning the Meta Knob. Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary 麦克风/辅助物 - + Microphone On/Off 麦克风 开/关 - + Microphone on/off 麦克风 开/关 - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) 切换麦克风闪避模式(关闭/自动/手动) - + Auxiliary On/Off 辅助物 开/关 - + Auxiliary on/off 辅助物 开/关 - + Auto DJ 自动 DJ - + Auto DJ Shuffle 自动 DJ 随机播放 - + Auto DJ Skip Next 自动 DJ 跳至下一首 - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next 自动 Dj 淡出至下一首 - + Trigger the transition to the next track 切换到下一音轨 - + User Interface 用户界面 - + Samplers Show/Hide 显示/隐藏采样器 - + Show/hide the sampler section 显示/隐藏采样器区域 - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. 将您的混音结果以流的形式发送到互联网。 - + Start/stop recording your mix. - - + + Samplers 采样器 - + Vinyl Control Show/Hide 唱盘控制 显示/隐藏 - + Show/hide the vinyl control section 显示/隐藏 唱盘控制界面 - + Preview Deck Show/Hide 预览用碟机 显示/隐藏 - + Show/hide the preview deck 显示/隐藏 预览用碟机 - + Toggle 4 Decks 切换 4 碟机 - + Switches between showing 2 decks and 4 decks. 在 2 碟机视图和 4 碟机视图之间切换。 - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide 唱盘控制 显示/隐藏 - + Show/hide spinning vinyl widget 显示/隐藏 唱盘控制器 - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom 波形缩放 - + Waveform Zoom 波形缩放 - + Zoom waveform in 放大波形 - + Waveform Zoom In 放大波形 - + Zoom waveform out 缩小波形 - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3158,32 +3226,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. 请尝试重置控制器来恢复原先的状态。 - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. 脚本代码需要被修复。 @@ -3219,133 +3287,133 @@ CrateFeature - + Remove 删除 - - + + Create New Crate 新建分类列表 - + Rename 重命名 - - + + Lock 锁定 - + Export Crate as Playlist - + Export Track Files 导出轨道文件 - + Duplicate 复制 - + Analyze entire Crate 分析整个分类列表 - + Auto DJ Track Source 自动 DJ 音轨源 - + Enter new name for crate: 输入分类列表的新名称: - - + + Crates 分类列表 - - + + Import Crate 导入分类列表 - + Export Crate 导出分类列表 - + Unlock 解锁 - + An unknown error occurred while creating crate: 在创建分类列表时发生未知错误: - + Rename Crate 重命名分类列表 - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed 重命名分类列表失败 - + Crate Creation Failed 创建分类列表失败 - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U 播放列表(*.m3u);;M3U8 播放列表(*.m3u8);;PLS 播放列表(*.pls);;文本 CSV (*.csv);;可读文本(*.txt) - + Crates are a great way to help organize the music you want to DJ with. 你可以把要DJ的音乐放进分类列表。 - + Crates let you organize your music however you'd like! 随心所欲管理音乐,就用分类列表! - + A crate cannot have a blank name. 分类列表名不能命名为空。 - + A crate by that name already exists. 已有相同分类列表名。 @@ -3415,37 +3483,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: 贡献人员名单: - + And special thanks to: 特别致谢: - + Past Developers 早期开发者 - + Past Contributors 早期贡献者 - + Official Website - + Donate @@ -4883,32 +4951,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin 皮肤 - + Tool tips 工具提示 - + Select from different color schemes of a skin if available. 选取皮肤的颜色方案(如果可用的话)。 - + Color scheme 颜色方案 - + Locales determine country and language specific settings. 区域设置将影响国家和语言相关的设置。 - + Locale 区域 @@ -4918,52 +4986,42 @@ Apply settings and continue? 界面首选项 - + HiDPI / Retina scaling HiDPI / 视网膜缩放比例 - + Change the size of text, buttons, and other items. 更改字体,按钮和其他项目的大小 - - Adopt scale factor from the operating system - 通过从操作系统的缩放比例 - - - - Auto Scaling - 自动缩放比例 - - - + Screen saver 屏幕保护程序 - + Start in full-screen mode 以全屏模式开启 - + Full-screen mode 全屏模式 - + Off 关闭 - + Library only 只有音乐库 - + Library and Skin 音乐库与皮肤 @@ -5591,39 +5649,39 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. 您的屏幕分辨率太低,无法容纳所选皮肤的最小尺寸。 - + Allow screensaver to run 允许屏幕保护程序运行 - + Prevent screensaver from running 防止屏幕保护程序运行 - + Prevent screensaver while playing 播放时防止屏幕保护程序运行 - + This skin does not support color schemes 该皮肤不支持色彩方案 - + Information 信息 - - Mixxx must be restarted before the new locale setting will take effect. - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. + @@ -5841,32 +5899,32 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added 音乐目录已添加 - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? 您已添加一个或更多音乐目录。这些音轨将在您重新扫描音乐库前不可用。您想立即扫描音乐库吗? - + Scan 扫描 - + Choose a music directory 选择一个音乐目录 - + Confirm Directory Removal 确认移除目录 - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. Mixxx 将不会监视该目录中的新音轨。您希望如何处理该目录(及其子目录)中的音轨? <ul> @@ -5877,32 +5935,32 @@ and allows you to pitch adjust them for harmonic mixing. 隐藏音轨可以保留其元数据,以便您以后再次添加它们。 - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. 元数据即音轨的信息(艺术家、标题、播放次数等)、节拍模式、热切点和循环设置。这些选项仅影响 Mixxx 媒体库。不会更改或删除相关的媒体文件。 - + Hide Tracks 隐藏音轨 - + Delete Track Metadata 删除音轨元数据 - + Leave Tracks Unchanged 不做改动 - + Relink music directory to new location 将音乐目录链接至新位置 - + Select Library Font 选择音乐库字体 @@ -6909,32 +6967,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered 筛选 - + HSV HSV - + RGB RGB - + OpenGL not available OpenGL不可用 - + dropped frames 丢帧 - + Cached waveforms occupy %1 MiB on disk. 缓存的波形占用了 %1 MB 磁盘空间。 @@ -7150,72 +7208,72 @@ Select from different types of displays for the waveform, which differ primarily 媒体库 - + Interface 界面 - + Waveforms 波形 - + Auto DJ 自动 DJ - + Equalizers 均衡器 - + Decks 碟机 - + Colors 颜色 - + Crossfader 平滑转换器 - + Effects 效果 - + LV2 Plugins LV2 Plugins - + Recording 录制 - + Beat Detection 节拍检测 - + Key Detection 音调检测 - + Normalization 归一化 - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7225,12 +7283,12 @@ Select from different types of displays for the waveform, which differ primarily 唱盘控制 - + Live Broadcasting 在线广播 - + Modplug Decoder Modplug 解码器 @@ -7371,123 +7429,123 @@ Select from different types of displays for the waveform, which differ primarily 选择最佳匹配 - - + + Track 音轨 - - + + Year 年份 - + Title 标题 - - + + Artist 歌手 - - + + Album 专辑 - + Album Artist 专辑艺术家 - + Fetching track data from the MusicBrainz database 从 MusicBrainz 数据库中获取音轨数据 - + Mixxx could not find this track in the MusicBrainz database. Mixxx 无法在 MusicBrainz 数据库中找到该音轨。 - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. 获取API-Key - + Submit Submits audio fingerprints to the MusicBrainz database. 提交 - + New Column 添加一列 - + New Item 添加一项 - + &Previous 上一首(&P) - + &Next 下一首(&N) - + &Apply 应用(&A) - + &Close 关闭(&C) - + Status: %1 状态:%1 - + HTTP Status: %1 HTTP 状态:%1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx 无法连接到 %1,错误原因未知。 - + Mixxx can't connect to %1. Mixxx 无法连接到 %1。 - + Original tags 原始标签 - + Suggested tags 建议标签 @@ -7879,17 +7937,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) Soundtouch(更快) - + Rubberband (better) Rubberband(更好) - + Unknown (bad value) 未知(值有误) @@ -7990,38 +8048,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes iTunes - - + + Select your iTunes library 选择你的 iTunes 音乐库 - + (loading) iTunes (加载)iTunes - + Use Default Library 使用默认音乐库 - + Choose Library... 选择音乐库... - + Error Loading iTunes Library 加载iTunes音乐库时发生错误 - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. 在加载您的iTunes音乐库时发生了错误。部分歌曲或播放列表可能没有加载成功。 @@ -8029,13 +8087,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. 已启用安全模式 - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8044,57 +8102,57 @@ support. 支持。 - + activate 启用 - + toggle 切换 - + right - + left - + right small 右小 - + left small 左小 - + up - + down - + up small 上小 - + down small 下小 - + Shortcut 快捷键 @@ -8115,22 +8173,22 @@ support. LibraryFeature - + Import Playlist 导入播放列表 - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) 播放列表文件(*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8144,27 +8202,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner 音乐库扫描器 - + It's taking Mixxx a minute to scan your music library, please wait... Mixxx正在扫描您的音乐库,这可能需要几分钟,请耐心等待... - + Cancel 取消 - + Scanning: 正在扫描: - + Scanning cover art (safe to cancel) 扫描封面(可以取消) @@ -8281,183 +8339,183 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy 声音设备正忙 - + <b>Retry</b> after closing the other application or reconnecting a sound device 请关闭其他应用程序,或重新连接设备后<b>重试</b> - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. <b>重新配置</b> Mixxx 声音设备。 - - + + Get <b>Help</b> from the Mixxx Wiki. 从 Mixxx Wiki 中获取<b>帮助</b>。 - - - + + + <b>Exit</b> Mixxx. <b>退出</b> Mixxx。 - + Retry 重试 - + skin - - + + Reconfigure 重新配置 - + Help 帮助 - - + + Exit 退出 - - + + Mixxx was unable to open all the configured sound devices. Mixxx 无法打开所有要打开的音频设备 - + Sound Device Error 音频设备错误 - + <b>Retry</b> after fixing an issue 修正错误后 <b> 重试 </b> - + No Output Devices 没有输出设备 - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. Mixxx 的配置中没有任何输出设备,将会禁用音频处理操作。 - + <b>Continue</b> without any outputs. 确定在没有任何输出的情况下<b>继续</b>。 - + Continue 继续 - + Load track to Deck %1 加载音轨到碟机 %1 - + Deck %1 is currently playing a track. 碟机 %1 当前正在播放。 - + Are you sure you want to load a new track? 您确定要加载新音轨吗? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. 尚未选择用于唱盘控制的输入设备。 请在声音硬件的首选项中选择一个输入设备。 - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. 尚未选择用于唱盘控制的输入设备。 请在声音硬件的首选项中选择一个输入设备。 - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file 皮肤文件错误 - + The selected skin cannot be loaded. 无法加载所选皮肤。 - + OpenGL Direct Rendering OpenGL 直接渲染 - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit 确认退出 - + A deck is currently playing. Exit Mixxx? 有唱机正在播放。确定退出 Mixxx 吗? - + A sampler is currently playing. Exit Mixxx? 有采样器正在播放。确定退出 Mixxx 吗? - + The preferences window is still open. 首选项窗口尚未关闭。 - + Discard any changes and exit Mixxx? 取消所作更改并退出 Mixxx 吗? @@ -8530,43 +8588,43 @@ Do you want to select an input device? PlaylistFeature - + Lock 锁定 - + Playlists 播放列表 - + Unlock 解锁 - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. 一些DJ在他们表演之前创建播放列表,但其他人更倾向于即兴表演。 - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. 在在线 Dj 集中使用播放列表时,请时刻注意您的听众对所选音乐的反应。 - + Create New Playlist 新建播放列表 @@ -8574,59 +8632,59 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx 升级 Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? Mixxx现已支持显示歌曲封面。 您想要立即扫描音乐库内的封面文件吗? - + Scan 扫描 - + Later 稍后再说 - + Upgrading Mixxx from v1.9.x/1.10.x. 从 1.9.x 或 1.10.x 版本的 Mixxx 升级。 - + Mixxx has a new and improved beat detector. Mixxx 更新了节拍检测器。 - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. 当您加载音轨时,Mixxx 会重新分析它们,并生成新的、更加准确的节拍样式。这将使自动节拍同步和循环播放更加可靠。 - + This does not affect saved cues, hotcues, playlists, or crates. 此操作不影响已保存的切入点、热切点、播放列表或分类播放列表。 - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. 若您不希望 Mixxx 重新分析音轨,请选择“保留当前节拍样式”。您可以之后在首选项中的“节拍检测”选项卡中更改此设置。 - + Keep Current Beatgrids 保留当前节拍样式 - + Generate New Beatgrids 生成新节拍样式 @@ -8810,7 +8868,7 @@ Do you want to scan your library for cover files now? - + Encoder 编码器 @@ -9962,12 +10020,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10105,54 +10163,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists 播放列表 - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10161,7 +10219,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox Rhythmbox @@ -10212,34 +10270,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks 音轨 - + Crates 分类列表 - + Check for Serato databases (refresh) - + (loading) Serato @@ -10262,12 +10320,12 @@ Fully right: end of the effect period 历史 - + Unlock 解锁 - + Lock 锁定 @@ -11226,6 +11284,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12403,11 +12486,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize 老式同步 - - - (This skin should be updated to use Master Sync!) - (应当更新此皮肤以使用主同步!) - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12423,16 +12501,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. 无法将碟机与采样器同步,采样器仅能与碟机同步。 - - - Enable Master Sync - 启用主同步 - - - - Tap to sync the tempo to other playing tracks or the master clock. - 点击以将此碟机的速度与其他碟机(或主时钟)同步。 - Hold for at least a second to enable sync lock for this deck. @@ -12448,16 +12516,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. 重置为音轨的原音调。 - - - Enable Sync Clock Master - 启用主时钟同步 - - - - When enabled, this device will serve as the master clock for all other decks. - 若启用,此设备将作为其他碟机的主时钟。 - Speed Control @@ -13011,22 +13069,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor Traktor - + (loading) Traktor (加载)Traktor - + Error Loading Traktor Library 加载Traktor音乐库时发生错误 - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. 在加载您的Traktor音乐库时发生了错误。部分歌曲或播放列表可能没有加载成功。 @@ -13638,20 +13696,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13822,8 +13880,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.流派 - - Folder + + Directory @@ -14066,155 +14124,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects.重置 BPM - + + Update ReplayGain from Deck Gain + + + + Deck %1 碟盘 %1 - + Sampler %1 采样 %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist 新建播放列表 - + Enter name for new playlist: 输入播放列表的新名称: - + New Playlist 新建播放列表 - - - + + + Playlist Creation Failed 播放列表创建失败 - + A playlist by that name already exists. 使用该名称的播放列表已存在。 - + A playlist cannot have a blank name. 播放列表名称不能为空。 - + An unknown error occurred while creating playlist: 创建播放列表时发生未知错误: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14222,7 +14285,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus ESC @@ -14259,128 +14322,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects.(GL ES) - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory 选择音乐库目录 - + controllers - + Cannot open database 无法打开数据库 - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14459,7 +14449,7 @@ Mixxx 需要 QT 支持 SQLite。请阅读 Qt SQL 驱动文档以了解相关构 - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14516,62 +14506,62 @@ Mixxx 需要 QT 支持 SQLite。请阅读 Qt SQL 驱动文档以了解相关构 mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse 通用 HID 鼠标 - + Generic HID Joystick 通用 HID 游戏杆 - + Generic HID Game Pad - + Generic HID Keyboard 通用HID键盘 - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: @@ -14589,7 +14579,7 @@ Mixxx 需要 QT 支持 SQLite。请阅读 Qt SQL 驱动文档以了解相关构 No effect loaded. - + 未加载效果器。 \ No newline at end of file diff --git a/res/translations/mixxx_zh_HK.ts b/res/translations/mixxx_zh_HK.ts index 53c18862e8e..03170ee295d 100644 --- a/res/translations/mixxx_zh_HK.ts +++ b/res/translations/mixxx_zh_HK.ts @@ -19,23 +19,23 @@ AutoDJFeature - + Crates 音軌資料夾 - + Remove Crate as Track Source - + Auto DJ 自動DJ - + Add Crate as Track Source @@ -44,24 +44,24 @@ BansheeFeature - + Banshee - - + + Error loading Banshee database - + Banshee database file not found at - + There was an error loading your Banshee database at @@ -70,35 +70,35 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) 將添加到自動 DJ 佇列 (底部) - + Add to Auto DJ Queue (top) 將添加到自動 DJ 佇列 (頂部) - + Add to Auto DJ Queue (replace) - + Import Playlist 輸入播放清單 - + Playlist Creation Failed 播放清單創建失敗 - + An unknown error occurred while creating playlist: 建立播放清單時發生未知的錯誤︰ @@ -107,151 +107,151 @@ BasePlaylistFeature - + New Playlist 新的播放清單 - + Add to Auto DJ Queue (bottom) 將添加到自動 DJ 佇列 (底部) - - + + Create New Playlist 建立新的播放清單 - + Add to Auto DJ Queue (top) 將添加到自動 DJ 佇列 (頂部) - + Remove 移除 - + Rename 重新命名 - + Lock - + Duplicate 複製 - - + + Import Playlist 輸入播放清單 - + Export Track Files 輸出音檔 - + Analyze entire Playlist 分析整個播放清單 - + Enter new name for playlist: - + Duplicate Playlist - - + + Enter name for new playlist: 輸入新播放清單名稱︰ - - + + Export Playlist - + Add to Auto DJ Queue (replace) - + Rename Playlist - - + + Renaming Playlist Failed - - - + + + A playlist by that name already exists. - - - + + + A playlist cannot have a blank name. - + _copy //: Appendix to default name when duplicating a playlist - - - - - - + + + + + + Playlist Creation Failed 播放清單創建失敗 - - + + An unknown error occurred while creating playlist: 建立播放清單時發生未知的錯誤︰ - + M3U Playlist (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) @@ -272,7 +272,7 @@ BaseTrackPlayerImpl - + Couldn't load track. @@ -524,7 +524,7 @@ - + Computer @@ -544,7 +544,7 @@ - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -657,12 +657,12 @@ - + Mixxx Library - + Could not load the following file because it is in use by Mixxx or another application. @@ -693,6 +693,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -875,13 +953,13 @@ - + Set to full volume - + Set to zero volume @@ -906,13 +984,13 @@ - + Headphone listen button - + Mute button @@ -928,25 +1006,25 @@ - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -990,36 +1068,6 @@ Toggle quantize mode - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1031,7 +1079,7 @@ - + Toggle keylock mode @@ -1041,199 +1089,199 @@ - + Vinyl Control - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 - + 1 - + 2 - + 4 - + 8 - + 16 - + 32 - + 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library @@ -1344,20 +1392,20 @@ - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1373,7 +1421,7 @@ - + Mute @@ -1384,7 +1432,7 @@ - + Headphone Listen @@ -1405,25 +1453,25 @@ - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1522,52 +1570,6 @@ Sync - - - Sync Mode - - - - - Internal Sync Master - - - - - Toggle Internal Sync Master - - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - - Beat Sync One-Shot @@ -1584,37 +1586,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key - + Match Key - + Reset Key - + Resets key to original @@ -1655,467 +1657,467 @@ - + Toggle Vinyl Control - + Toggle Vinyl Control (ON/OFF) - + Vinyl Control Mode - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop - + Loop Halve - + Loop Double - + 1/32 - + 1/16 - + 1/8 - + 1/4 - + Move Loop +%1 Beats - + Move Loop -%1 Beats - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) 將添加到自動 DJ 佇列 (底部) - + Append the selected track to the Auto DJ Queue - + Add to Auto DJ Queue (top) 將添加到自動 DJ 佇列 (頂部) - + Prepend selected track to the Auto DJ Queue - + Load Track - + Load selected track - + Load selected track and play - - + + Record Mix - + Toggle mix recording - + Effects - + Quick Effects - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect - + Clear effect rack - + Clear Effect Rack - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign - + Clear - + Clear the current effect - + Toggle - + Toggle the current effect - + Next - + Switch to next effect - + Previous - + Switch to the previous effect - + Next or Previous - + Switch to either next or previous effect - - + + Parameter Value - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue - + Skip the next track in the Auto DJ queue - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore - + Maximize the track library to take up all the available screen space. - + Effect Rack Show/Hide - + Show/hide the effect rack - + Waveform Zoom Out @@ -2140,93 +2142,93 @@ - + Playback Speed - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) @@ -2283,806 +2285,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length - + Double the loop length - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) - + Replace Auto DJ Queue with selected tracks - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off - + Microphone on/off - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ 自動DJ - + Auto DJ Shuffle - + Auto DJ Skip Next - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next - + Trigger the transition to the next track - + User Interface - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide - + Show/hide the vinyl control section - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom - + Waveform Zoom - + Zoom waveform in - + Waveform Zoom In - + Zoom waveform out - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3171,32 +3239,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3232,136 +3300,136 @@ CrateFeature - + Remove 移除 - - + + Create New Crate - + Rename 重新命名 - - + + Lock - + Export Crate as Playlist - + Export Track Files 輸出音檔 - + Duplicate 複製 - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates 音軌資料夾 - - + + Import Crate - + Export Crate - + Unlock - + An unknown error occurred while creating crate: - + Rename Crate - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) - + Crates are a great way to help organize the music you want to DJ with. - + Crates let you organize your music however you'd like! - + A crate cannot have a blank name. - + A crate by that name already exists. @@ -3431,37 +3499,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4892,32 +4960,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin - + Tool tips - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4927,52 +4995,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off - + Library only - + Library and Skin @@ -5583,38 +5641,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5833,62 +5891,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? - + Scan - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6893,32 +6951,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7132,72 +7190,72 @@ Select from different types of displays for the waveform, which differ primarily - + Interface - + Waveforms - + Auto DJ 自動DJ - + Equalizers - + Decks - + Colors - + Crossfader - + Effects - + LV2 Plugins - + Recording - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7207,12 +7265,12 @@ Select from different types of displays for the waveform, which differ primarily - + Live Broadcasting - + Modplug Decoder @@ -7353,123 +7411,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year - + Title - - + + Artist - - + + Album - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7861,17 +7919,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7972,38 +8030,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -8011,13 +8069,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8025,57 +8083,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8096,23 +8154,23 @@ support. LibraryFeature - + Import Playlist 輸入播放清單 - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8123,27 +8181,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8259,181 +8317,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry - + skin - - + + Reconfigure - + Help - - + + Exit - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8504,44 +8562,44 @@ Do you want to select an input device? PlaylistFeature - + Lock - + Playlists - + Unlock - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist 建立新的播放清單 @@ -8549,58 +8607,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8784,7 +8842,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9910,12 +9968,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10053,54 +10111,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10109,7 +10167,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10160,35 +10218,35 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates 音軌資料夾 - + Check for Serato databases (refresh) - + (loading) Serato @@ -10211,12 +10269,12 @@ Fully right: end of the effect period - + Unlock - + Lock @@ -11176,6 +11234,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12351,11 +12434,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12371,16 +12449,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12396,16 +12464,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12959,22 +13017,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13586,20 +13644,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13770,8 +13828,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - Folder + + Directory @@ -14017,158 +14075,163 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 - + Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist 建立新的播放清單 - + Enter name for new playlist: 輸入新播放清單名稱︰ - + New Playlist 新的播放清單 - - - + + + Playlist Creation Failed 播放清單創建失敗 - + A playlist by that name already exists. - + A playlist cannot have a blank name. - + An unknown error occurred while creating playlist: 建立播放清單時發生未知的錯誤︰ - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14176,7 +14239,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14213,128 +14276,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14410,7 +14400,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14467,62 +14457,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_zh_TW.Big5.qm b/res/translations/mixxx_zh_TW.Big5.qm index 5dff8f456631bedd81058abd5cf10c9e53816a27..19ba8a2cca9e9646be585a0ec754199d9a51f605 100644 GIT binary patch delta 2423 zcmXZcdsGu=769;@Ouk8G@)AK5(fCF|jLIXR0+m-n0!bi*01`b`;Z&?ptLy4gHMZIn zcR5>ZhIz)uL^EwCqw^)M{x3TcA&|2-_{y*1B}%*xiafOO>9z;qG6*d^0)U-0$A| z-S_)s*T0ax5E8Z(0OkRx=c3C2!k;4@$Lf|u$a5al6_|bbp8*pu0ZbnR7T*A%^ph49 znYW*GxqxNG0|XV5)BnHD-9>BH>%ekO0xWGL-8a!ufMp7@fC1Zf2*a37790iU-wQqn zsh#)%*={oL8(?SF1FV<>tR)>_RUGLu0_!LP(Bb=lVdqI(8kvg$1fIL_Ko9YtdMz1t zhjfOMxlXd^9Z+t*Ci!JiKDz<3A~6S!F4CDv7QO5IBx@U{3!EZrz6fMiZ2%7hvc+$gn~(eA$HIV9%ikj(?NR2V~JcX{~&!PX)(E z?g31C5}L1w0Q`37cKZRM?!rF|e*jpR0k?J=0Svd`QD7b6lBwGinEE?pL7B`nZ~!2^ zQkD?&JAha}X&aQ8livV{*)KESY{f92keR;=*dnV?VCnS9q}=+XG%h#96#rMYx9kx> zN~6s8Falsnw(RVta)6`)+1W~rXVsgso(0%uhSRd){wV;d2PHda@Ol06zkNN3oz*QL ztM10IBgvejq+=_msbTnc#zp<}G9Kp=XIz0J?Qj>u`OJ%otI$rhbJ1rjwo|#f5W2 z0MUtLVTiO=G1WJNnT{OCaH~o8AK7E2xL#6Ax?5TH&Ffgj8)F?FOxOJ5 zWc~@(6_^-VmnNJCd2i7J*KXFI=m3zPBa7~`{v-?}wO?vv24C&~`)y7Ww&(A8c%c;2 z|2eOn8G>=TdF`ovSQaxMvY{WppUYb+HUMahWav85`4m~$&s#pj_rbAz#pmbo|KIb^ z@EkzKS$_ZE>$s1OEV#p;Xv1Z5)d$Y8c@0IT1J<#zt ze$4<_t>cH@#mvWVmMZv&n35{x(mw1v)q+UH(%`fH zUD%wXz~cEx&ycYBS^VnC?}aT}Uc+WsNltT+&X36=i%@lY0AOyta4h%)Mo}jm-`k1B zk0SGT2v;Ko%u%fHqYtVhxc248Wr z_{rFQjO%gnTGbd9yhXhJCp3AJ_~6QqSlL7BS=ZvRwVih5OhUn@ERVJyL9hdi7xICErpbyBbVa>YrKLLcali5DaPQyu@xJ8fB1Hsp1q_yLi6*Dz^T@0 zXL@&F(hg{&yx5q*eOjxt6R%4lnYWrONzytFV%8S%+FdXGhWDXcTeo@$fD0jut=h|J zUHJU4^r@IKIl5cdp-;yt5l0q8OEc95-h%F54wL!!^`=ER*te(k7ZMa0WuN}NU#4R8Df+K|bmI)L=m&yv xALS&{++7af?cwlRDqQ>%(j-r4>lf;_MXlX&(&W}2%POwbo&B_|RcUXZ@jqZMlJ@`r delta 2795 zcmZwIc~BI076k;$vbnc6|7{Qz9TK>+U&GGjLS7{Di%%s|WD!x)8R2EMOhBN)ND zcJd!c_>fF<1nx*az&rzRCn5ks){<#&0@rB(u((ayo+0C_$W#nqey+y}J;RA=)THg- z$&@@YwVuqH0L7|4Qv>5+Oj-u9?pT8qnE?Cl z-3NH(4LHyx0`TR~qi+D1;|<>qKLT*OYT7PyFwXU0RIPG=j6+P|&CLLjCz&AM)c}6C z$%Gk9bl714-#;?Z-?w0@BTV#P%|2#|<+xIsFj9M*S@-ccc1kzN-XQItlG!25M#C=v z3-&U`XD$GqJD8)duf&xMQ!qzMFjr_kbIBRo&EYd}M-y%HdN4O>%-69_xU?hPFSa8a@SV_g6ND)!NU6BgPew<>bL%9hJ#H+JKDhUDoR z4`PenmRFoG=HY{X;y-A#x4dQ14NUxdGSet;KQ@E`*ON;!<=@CKsHKy9WY`?+WBEUt zF>r7`7r1L5uIyzpy@y*+h}WKdWcpJs{(EyJ=W@CE{T*2{r4A9J#8F%1->it|r zPccA59GTh9tv6psGTeqjOgw)*SA8M|mp~wMw{kVn7XXBNWLz^DKTako$=nvM#=QGQ z2Quy&xBEy5zORIwX5@^MH*{HC!_PQ#=PBH0+pu(&HC*eEGnTfG%v{3#;YYlV4COjA zu%u4=Nc|n|g8BH-0;zjMrk&#kf|CGb$H=8#+(0M>iLmAF+RAY+T;c9I@51MjX**|O z)Y)-A)tv%Zq~Tu7+>57AI}de*xYAa<+TI%T>v?taJJyze@yvfr zCcmQ$6c6Aq*2-|!2IKZAV;4o?)&^3Wp3)fm9XU$l5AYjNSy8^^wqIwI8c>UD&s=8@t7W)VB#2-36@P z8sS=LEk18Dsg*9q>^fmgk0(= zMu-iAC76Fe{AgAjo&z%RXcz`s*eiC#zKzR~PqJ%C`$lrV zeJdJ1U3}6tj%|HK^_zDiu^oP=%H6dt0Z+Qqsx5oUaep_HwpC>6a#d5}W=uRrrp2nh zuyV&Xa3*6{t1h?yh>i0)nXEHy5FCv0tx`<=V{C}Ck}d=5Z22{*og?MtKLD_9BNNU` zYa9+@A2vyAjHfYAm{fffyIs0LPK}VZWgf@*=Sv@al7|hknasQ=eg2%o1!|DmhTp@V zBBj(V!}m#rlVU-0=|)bP)MxU=&a#qj+T*se{7D-A*Av`U52S~D8=lm?Wco_!(Rb!~ z=Be#--ogS`sXcPAldbyIamn4dzcNYPCNjsUPTGQnbmP@)Kg7=URjYR{90Fji%}M}E zYt&yYzJNQc-*iw6H+rfqIyDja-nC>#sYOqv6OOC281ln&h1p8Vx0Bf;7I)fi;l7<_ z@%+FDz9)xFZ`5!>U3kz}X%yNYuyA7<^_SuJ(^jd`n047frUz;Q-Edt4?rYkE?Dl`JcAOnbYez%g-I`D)WuPluK~|N2*_^S}DA>c2i?XC7$P%-?GMGnhcn zOA8IAuR~|FJdB>t`djD}1-Jgsi|zEKD^?U49RK(IhBDJhtz(Oiwuo^R&ENi2idSEL Sv)mlG7y}#1S}NoFXZ#x>TmDG^ diff --git a/res/translations/mixxx_zh_TW.Big5.ts b/res/translations/mixxx_zh_TW.Big5.ts index c9244a3ad37..2e0cd72986a 100644 --- a/res/translations/mixxx_zh_TW.Big5.ts +++ b/res/translations/mixxx_zh_TW.Big5.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates - + Remove Crate as Track Source - + Auto DJ 自動DJ - + Add Crate as Track Source @@ -43,24 +43,24 @@ BansheeFeature - + Banshee - - + + Error loading Banshee database - + Banshee database file not found at - + There was an error loading your Banshee database at @@ -69,32 +69,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) 加入自動DJ佇列(底部) - + Add to Auto DJ Queue (top) 加入自動DJ佇列(頂部) - + Add to Auto DJ Queue (replace) 加入自動DJ佇列(取代) - + Import Playlist 匯入播放清單 - + Playlist Creation Failed 建立播放清單失敗 - + An unknown error occurred while creating playlist: 建立播放清單時發生了未知的錯誤: @@ -102,144 +102,144 @@ BasePlaylistFeature - + New Playlist 新播放清單 - + Add to Auto DJ Queue (bottom) 加入自動DJ佇列(底部) - - + + Create New Playlist 建立播放清單 - + Add to Auto DJ Queue (top) 加入自動DJ佇列(頂部) - + Remove 移除 - + Rename 重新命名 - + Lock 鎖定 - + Duplicate 複製 - - + + Import Playlist 匯入播放清單 - + Export Track Files 匯出音軌檔案 - + Analyze entire Playlist 分析整個播放清單 - + Enter new name for playlist: 輸入播放清單的新名稱: - + Duplicate Playlist 複製播放清單 - - + + Enter name for new playlist: 輸入新播放清單的名稱: - - + + Export Playlist 匯出播放清單 - + Add to Auto DJ Queue (replace) 加入自動DJ佇列(取代) - + Rename Playlist 重新命名播放清單 - - + + Renaming Playlist Failed 重新命名播放清單失敗 - - - + + + A playlist by that name already exists. 已存在該名稱的播放清單。 - - - + + + A playlist cannot have a blank name. 播放清單名稱不能為空白。 - + _copy //: Appendix to default name when duplicating a playlist _複製 - - - - - - + + + + + + Playlist Creation Failed 建立播放清單失敗 - - + + An unknown error occurred while creating playlist: 建立播放清單時發生了未知的錯誤: - + M3U Playlist (*.m3u) M3U 播放清單 (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U 播放清單 (*.m3u);;M3U8 播放清單 (*.m3u8);;PLS 播放清單 (*.pls);;文字 CSV (*.csv);;純文字 (*.txt) @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. 無法載入音軌。 @@ -512,7 +512,7 @@ - + Computer 電腦 @@ -532,7 +532,7 @@ 掃描 - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. "電腦"讓您從硬碟和外部裝置的資料夾瀏覽、檢視、和載入音軌。 @@ -645,12 +645,12 @@ 檔案已建立 - + Mixxx Library Mixxx 庫 - + Could not load the following file because it is in use by Mixxx or another application. 無法載入以下檔案,因為正在被Mixxx或其他程式使用中 @@ -681,6 +681,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -863,13 +941,13 @@ - + Set to full volume 設為全音量 - + Set to zero volume 設為零音量 @@ -894,13 +972,13 @@ - + Headphone listen button 耳機聆聽按鈕 - + Mute button 靜音按鈕 @@ -916,25 +994,25 @@ - + Mix orientation (e.g. left, right, center) 混音方向 (例如: 左、右、中央) - + Set mix orientation to left 將混音方向設為左 - + Set mix orientation to center 將混音方向設為中央 - + Set mix orientation to right 將混音方向設為右 @@ -978,36 +1056,6 @@ Toggle quantize mode 切換量化模式 - - - Increase internal master BPM by 1 - - - - - Decrease internal master BPM by 1 - - - - - Increase internal master BPM by 0.1 - - - - - Decrease internal master BPM by 0.1 - - - - - Toggle sync master - 切換主同步 - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - - One-time beat sync (tempo only) @@ -1019,7 +1067,7 @@ - + Toggle keylock mode @@ -1029,199 +1077,199 @@ 等化器 - + Vinyl Control - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) - + Pass through external audio into the internal mixer - + Cues - + Cue button - + Set cue point - + Go to cue point - + Go to cue point and play - + Go to cue point and stop - + Preview from cue point - + Cue button (CDJ mode) - + Stutter cue - + Hotcues - + Set, preview from or jump to hotcue %1 - + Clear hotcue %1 - + Set hotcue %1 - + Jump to hotcue %1 - + Jump to hotcue %1 and stop - + Jump to hotcue %1 and play - + Preview from hotcue %1 - - + + Hotcue %1 - + Looping - + Loop In button - + Loop Out button - + Loop Exit button - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 32 - + 64 64 - + Move loop forward by %1 beats - + Move loop backward by %1 beats - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library @@ -1332,20 +1380,20 @@ - - + + Volume Fader - + Full Volume 全音量 - + Zero Volume 零音量 @@ -1361,7 +1409,7 @@ - + Mute 靜音 @@ -1372,7 +1420,7 @@ - + Headphone Listen @@ -1393,25 +1441,25 @@ - + Orientation 方向 - + Orient Left - + Orient Center - + Orient Right @@ -1510,52 +1558,6 @@ Sync 同步 - - - Sync Mode - 同步模式 - - - - Internal Sync Master - 內部主同步 - - - - Toggle Internal Sync Master - 切換內部主同步 - - - - - Internal Master BPM - - - - - Internal Master BPM +1 - - - - - Internal Master BPM -1 - - - - - Internal Master BPM +0.1 - - - - - Internal Master BPM -0.1 - - - - - Sync Master - 主同步 - Beat Sync One-Shot @@ -1572,37 +1574,37 @@ - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust 調整音高 - + Adjust pitch from speed slider pitch - + Match musical key 符合音樂音調 - + Match Key 符合音高 - + Reset Key 重設音調 - + Resets key to original 重設至原始音調 @@ -1643,466 +1645,466 @@ 低頻等化器 - + Toggle Vinyl Control 切換唱片控制 - + Toggle Vinyl Control (ON/OFF) 切換唱片控制 (開/關) - + Vinyl Control Mode 唱片控制模式 - + Vinyl Control Cueing Mode - + Vinyl Control Passthrough - + Vinyl Control Next Deck - + Single deck mode - Switch vinyl control to next deck - + Cue - + Set Cue - + Go-To Cue - + Go-To Cue And Play - + Go-To Cue And Stop - + Preview Cue - + Cue (CDJ Mode) - + Stutter Cue - + Go to cue point and play after release - + Clear Hotcue %1 - + Set Hotcue %1 - + Jump To Hotcue %1 - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 - + Loop In - + Loop Out - + Loop Exit - + Reloop/Exit Loop 重複迴圈/離開迴圈 - + Loop Halve - + Loop Double - + 1/32 1/32 - + 1/16 1/16 - + 1/8 1/8 - + 1/4 1/4 - + Move Loop +%1 Beats 移動迴圈+%1拍 - + Move Loop -%1 Beats 移動迴圈-%1拍 - + Loop %1 Beats - + Loop Roll %1 Beats - + Add to Auto DJ Queue (bottom) 加入自動DJ佇列(底部) - + Append the selected track to the Auto DJ Queue 添加選擇的音軌至自動DJ佇列後方 - + Add to Auto DJ Queue (top) 加入自動DJ佇列(頂部) - + Prepend selected track to the Auto DJ Queue 添加選擇的音軌至自動DJ佇列前方 - + Load Track - + Load selected track 載入選擇的音軌 - + Load selected track and play 載入選擇的音軌並播放 - - + + Record Mix 錄製混音 - + Toggle mix recording 切換混音錄製 - + Effects 效果 - + Quick Effects 快速效果 - + Deck %1 Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters) - - + + Quick Effect 快速效果 - + Clear effect rack 清除效果器 - + Clear Effect Rack 清除效果器 - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet 乾/濕 - + Adjust the balance between the original (dry) and processed (wet) signal. 調整原始(乾)和已處理的(濕)信號的平衡 - + Super Knob - + Next Chain - + Assign 指定 - + Clear 清除 - + Clear the current effect 清除目前效果 - + Toggle 切換 - + Toggle the current effect 切換目前效果 - + Next 下一個 - + Switch to next effect 切換至下一效果 - + Previous 前一個 - + Switch to the previous effect 切換至前一效果 - + Next or Previous 前一或下一個 - + Switch to either next or previous effect 切換至前一或下一效果 - - + + Parameter Value 參數值 - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain 增益 - + Gain knob 增益旋鈕 - + Shuffle the content of the Auto DJ queue 拖曳內容至自動DJ柱列 - + Skip the next track in the Auto DJ queue 拖曳下一個音軌至自動DJ柱列 - + Auto DJ Toggle 自動DJ切換 - + Toggle Auto DJ On/Off 切換自動DJ開/關 - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore 庫最大化/還原 - + Maximize the track library to take up all the available screen space. 最大化音軌庫以利用所有可利用的螢幕空間 - + Effect Rack Show/Hide 效果旋鈕顯示/隱藏 - + Show/hide the effect rack 顯示/隱藏效果旋鈕 - + Waveform Zoom Out 波形縮小 @@ -2127,93 +2129,93 @@ - + Playback Speed 回放速度 - + Playback speed control (Vinyl "Pitch" slider) 回放速度控制 (唱片音高滑桿) - + Pitch (Musical key) - + Increase Speed 增加速度 - + Adjust speed faster (coarse) - - + + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed 降低速度 - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed 暫時增加速度 - + Temporarily increase speed (coarse) 暫時增加速度(粗略) - + Temporarily Increase Speed (Fine) 暫時增加速度(精細) - + Temporarily increase speed (fine) 暫時增加速度(精細) - + Temporarily Decrease Speed 暫時降低速度 - + Temporarily decrease speed (coarse) 暫時降低速度(粗略) - + Temporarily Decrease Speed (Fine) 暫時降低速度(精細) - + Temporarily decrease speed (fine) 暫時降低速度(精細) @@ -2270,806 +2272,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock - + CUP (Cue + Play) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats 重複選擇的拍子 - + Create a beat loop of selected beat size - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop - + Enable loop, jump to Loop In point, and stop - + Halve the loop length 減半重複長度 - + Double the loop length 增加重複長度為兩倍 - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats - + Jump / Move Loop Backward %1 Beats - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left 左移 - + Equivalent to pressing the LEFT key on the keyboard - + Move right 右移 - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right 左/右移 - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item 前往現在選擇的項目 - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) 加入自動DJ佇列(取代) - + Replace Auto DJ Queue with selected tracks 以選擇的音軌取代自動DJ佇列 - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing 啟用或禁用音效處理 - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset - + Previous Chain - + Previous chain preset - + Next/Previous Chain - + Next or previous chain preset - - + + Show Effect Parameters - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary - + Microphone On/Off 麥克風開/關 - + Microphone on/off 麥克風開/關 - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off - + Auxiliary on/off - + Auto DJ 自動DJ - + Auto DJ Shuffle - + Auto DJ Skip Next 自動DJ跳過下一個 - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next 自動DJ淡出至下一個 - + Trigger the transition to the next track - + User Interface 使用者介面 - + Samplers Show/Hide - + Show/hide the sampler section - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide 唱片控制顯示/隱藏 - + Show/hide the vinyl control section 顯示/隱藏唱片控制 - + Preview Deck Show/Hide - + Show/hide the preview deck - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide - + Show/hide spinning vinyl widget - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom 波形縮放 - + Waveform Zoom 波形縮放 - + Zoom waveform in 放大波形 - + Waveform Zoom In 波形放大 - + Zoom waveform out 縮小波形 - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3158,32 +3226,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. 該腳本程式碼需要修復。 @@ -3219,133 +3287,133 @@ CrateFeature - + Remove 移除 - - + + Create New Crate - + Rename 重新命名 - - + + Lock 鎖定 - + Export Crate as Playlist - + Export Track Files 匯出音軌檔案 - + Duplicate 複製 - + Analyze entire Crate - + Auto DJ Track Source 自動DJ音軌來源 - + Enter new name for crate: - - + + Crates - - + + Import Crate - + Export Crate - + Unlock 解鎖 - + An unknown error occurred while creating crate: - + Rename Crate - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U 播放清單 (*.m3u);;M3U8 播放清單 (*.m3u8);;PLS 播放清單 (*.pls);;文字 CSV (*.csv);;純文字 (*.txt) - + Crates are a great way to help organize the music you want to DJ with. - + Crates let you organize your music however you'd like! - + A crate cannot have a blank name. - + A crate by that name already exists. @@ -3415,37 +3483,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -4875,32 +4943,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin - + Tool tips - + Select from different color schemes of a skin if available. - + Color scheme - + Locales determine country and language specific settings. - + Locale @@ -4910,52 +4978,42 @@ Apply settings and continue? - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. - - Adopt scale factor from the operating system - - - - - Auto Scaling - - - - + Screen saver - + Start in full-screen mode - + Full-screen mode - + Off - + Library only - + Library and Skin @@ -5566,38 +5624,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. - + Allow screensaver to run - + Prevent screensaver from running - + Prevent screensaver while playing - + This skin does not support color schemes - + Information - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5816,62 +5874,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added 已加入音樂目錄 - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? 您加入了一或多個音樂目錄。直到您重新掃描庫之前,該目錄中的音軌將無法使用。您需要重新掃描嗎? - + Scan 掃描 - + Choose a music directory - + Confirm Directory Removal - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Hide Tracks - + Delete Track Metadata - + Leave Tracks Unchanged - + Relink music directory to new location - + Select Library Font @@ -6875,32 +6933,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered - + HSV - + RGB - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7114,72 +7172,72 @@ Select from different types of displays for the waveform, which differ primarily - + Interface - + Waveforms - + Auto DJ 自動DJ - + Equalizers 等化器 - + Decks - + Colors - + Crossfader 交叉漸變器 - + Effects 效果 - + LV2 Plugins - + Recording - + Beat Detection - + Key Detection - + Normalization - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7189,12 +7247,12 @@ Select from different types of displays for the waveform, which differ primarily - + Live Broadcasting - + Modplug Decoder @@ -7335,123 +7393,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year 年份 - + Title 標題 - - + + Artist - - + + Album 專輯 - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7843,17 +7901,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Unknown (bad value) @@ -7954,38 +8012,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes - - + + Select your iTunes library - + (loading) iTunes - + Use Default Library - + Choose Library... - + Error Loading iTunes Library - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. @@ -7993,13 +8051,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8007,57 +8065,57 @@ support. - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -8078,22 +8136,22 @@ support. LibraryFeature - + Import Playlist 匯入播放清單 - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8104,27 +8162,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8240,181 +8298,181 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy - + <b>Retry</b> after closing the other application or reconnecting a sound device - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. - - + + Get <b>Help</b> from the Mixxx Wiki. - - - + + + <b>Exit</b> Mixxx. - + Retry - + skin - - + + Reconfigure - + Help - - + + Exit - - + + Mixxx was unable to open all the configured sound devices. - + Sound Device Error - + <b>Retry</b> after fixing an issue - + No Output Devices - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + <b>Continue</b> without any outputs. - + Continue - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file - + The selected skin cannot be loaded. - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8485,43 +8543,43 @@ Do you want to select an input device? PlaylistFeature - + Lock 鎖定 - + Playlists - + Unlock 解鎖 - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Create New Playlist 建立播放清單 @@ -8529,58 +8587,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan 掃描 - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -8764,7 +8822,7 @@ Do you want to scan your library for cover files now? - + Encoder @@ -9890,12 +9948,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10033,54 +10091,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10089,7 +10147,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox @@ -10140,34 +10198,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates - + Check for Serato databases (refresh) - + (loading) Serato @@ -10190,12 +10248,12 @@ Fully right: end of the effect period - + Unlock 解鎖 - + Lock 鎖定 @@ -11154,6 +11212,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12329,11 +12412,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize - - - (This skin should be updated to use Master Sync!) - - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12349,16 +12427,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. - - - Enable Master Sync - - - - - Tap to sync the tempo to other playing tracks or the master clock. - - Hold for at least a second to enable sync lock for this deck. @@ -12374,16 +12442,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. - - - Enable Sync Clock Master - - - - - When enabled, this device will serve as the master clock for all other decks. - - Speed Control @@ -12937,22 +12995,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor - + (loading) Traktor - + Error Loading Traktor Library - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. @@ -13564,20 +13622,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13748,8 +13806,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.類型 - - Folder + + Directory @@ -13992,155 +14050,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 - + Sampler %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist 建立播放清單 - + Enter name for new playlist: 輸入新播放清單的名稱: - + New Playlist 新播放清單 - - - + + + Playlist Creation Failed 建立播放清單失敗 - + A playlist by that name already exists. 已存在該名稱的播放清單。 - + A playlist cannot have a blank name. 播放清單名稱不能為空白。 - + An unknown error occurred while creating playlist: 建立播放清單時發生了未知的錯誤: - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14148,7 +14211,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus @@ -14185,128 +14248,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory - + controllers - + Cannot open database - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14382,7 +14372,7 @@ Click OK to exit. - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14439,62 +14429,62 @@ Click OK to exit. mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse - + Generic HID Joystick - + Generic HID Game Pad - + Generic HID Keyboard - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device: diff --git a/res/translations/mixxx_zh_TW.qm b/res/translations/mixxx_zh_TW.qm index 1e94f2a5699da264e65ae52d8c03a2061a6d2721..05e215976978779750abe26f79f3cdaab328a26f 100644 GIT binary patch delta 14557 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 delta 16109 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 AutoDJFeature - + Crates 音樂箱 - + Remove Crate as Track Source 從音軌清單删除唱片箱 - + Auto DJ 自動DJ - + Add Crate as Track Source 加入唱片箱至音軌清單 @@ -43,24 +43,24 @@ BansheeFeature - + Banshee 女妖 - - + + Error loading Banshee database 載入您的資料庫時出錯 - + Banshee database file not found at 在找不到的您的資料庫檔案 - + There was an error loading your Banshee database at 載入在你您的資料庫時出錯 @@ -69,32 +69,32 @@ BaseExternalLibraryFeature - + Add to Auto DJ Queue (bottom) 將添加到自動 DJ 佇列 (底部) - + Add to Auto DJ Queue (top) 將添加到自動 DJ 佇列 (頂部) - + Add to Auto DJ Queue (replace) 加入自動 DJ 柱列 (取代) - + Import Playlist 匯入播放清單 - + Playlist Creation Failed 播放清單創建失敗 - + An unknown error occurred while creating playlist: 創建播放清單時發生未知的錯誤︰ @@ -102,144 +102,144 @@ BasePlaylistFeature - + New Playlist 新增播放清單 - + Add to Auto DJ Queue (bottom) 將添加到自動 DJ 佇列 (底部) - - + + Create New Playlist 創建新的播放清單 - + Add to Auto DJ Queue (top) 將添加到自動 DJ 佇列 (頂部) - + Remove 刪除 - + Rename 重新命名 - + Lock - + Duplicate 複製 - - + + Import Playlist 匯入播放清單 - + Export Track Files 匯出追蹤檔案 - + Analyze entire Playlist 分析整個播放清單 - + Enter new name for playlist: 輸入新播放清單名稱︰ - + Duplicate Playlist 重複播放清單 - - + + Enter name for new playlist: 輸入新播放清單名稱︰ - - + + Export Playlist 將播放清單匯出 - + Add to Auto DJ Queue (replace) 加入自動 DJ 柱列 (取代) - + Rename Playlist 重新命名播放清單 - - + + Renaming Playlist Failed 重新命名播放清單失敗 - - - + + + A playlist by that name already exists. 已存在該名稱的播放清單。 - - - + + + A playlist cannot have a blank name. 播放清單不能有空白的名稱。 - + _copy //: Appendix to default name when duplicating a playlist _copy - - - - - - + + + + + + Playlist Creation Failed 播放清單創建失敗 - - + + An unknown error occurred while creating playlist: 創建播放清單時發生未知的錯誤︰ - + M3U Playlist (*.m3u) M3U 播放清單 (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U 播放清單 (*.m3u);M3U8 播放清單 (*.m3u8);PLS播放清單 (*.pls);文字 CSV (*.csv);;可讀的文本 (*.txt) @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. 無法載入音軌 @@ -512,7 +512,7 @@ - + Computer 電腦 @@ -532,7 +532,7 @@ 掃描 - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -645,12 +645,12 @@ 創建檔 - + Mixxx Library Mixxx 庫 - + Could not load the following file because it is in use by Mixxx or another application. 無法載入下面的檔,因為它是由 Mixxx 或另一個應用程式使用。 @@ -681,6 +681,84 @@ + + CmdlineArgs + + + Mixxx is an open source DJ software. For more information, see: + + + + + Starts Mixxx in full-screen mode + + + + + Use a custom locale for loading translations. (e.g 'fr') + + + + + Top-level directory where Mixxx should look for settings. Default is: + + + + + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. + + + + + Path the debug statistics time line is written to + + + + + Causes Mixxx to display/log all of the controller data it receives and script functions it loads + + + + + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. + + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. + + + + + [auto|always|never] Use colors on the console output. + + + + + Sets the verbosity of command line logging. +critical - Critical/Fatal only +warning - Above + Warnings +info - Above + Informational messages +debug - Above + Debug/Developer messages +trace - Above + Profiling messages + + + + + Sets the the logging level at which the log buffer is flushed to mixxx.log. <level> is one of the values defined at --log-level above. + + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. + + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. + + + ColorPaletteEditor @@ -863,13 +941,13 @@ - + Set to full volume 設置為完整卷 - + Set to zero volume 設置為零卷 @@ -894,13 +972,13 @@ 扭轉輥 (檢查員) 按鈕 - + Headphone listen button 耳機監聽按鈕 - + Mute button 靜音按鈕 @@ -916,25 +994,25 @@ - + Mix orientation (e.g. left, right, center) 混合方向 (例如左、 右側、 中心) - + Set mix orientation to left 設置混合方向向左 - + Set mix orientation to center 設置混合方向向中央 - + Set mix orientation to right 設置混合方向向右 @@ -978,36 +1056,6 @@ Toggle quantize mode 切換量化模式 - - - Increase internal master BPM by 1 - 增加內部主 BPM 1 - - - - Decrease internal master BPM by 1 - 減少內部主 BPM 1 - - - - Increase internal master BPM by 0.1 - 增加內部的主 BPM 0.1 - - - - Decrease internal master BPM by 0.1 - 減少內部的主 BPM 0.1 - - - - Toggle sync master - 切換主同步 - - - - Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - 同步模式 3 狀態切換 (關閉,跟隨,主要) - One-time beat sync (tempo only) @@ -1019,7 +1067,7 @@ 一次性節拍同步 (僅階段) - + Toggle keylock mode 切換鍵鎖模式 @@ -1029,199 +1077,199 @@ 等化器 - + Vinyl Control 唱片控制 - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) 切換唱片控制線索模式 (OFF/一/熱) - + Toggle vinyl-control mode (ABS/REL/CONST) 切換乙烯控制模式 (ABS/REL/CONST) - + Pass through external audio into the internal mixer 經過外部音訊進入密煉機 - + Cues 提示 - + Cue button 提示按鈕 - + Set cue point 設置提示點 - + Go to cue point 前往提示點 - + Go to cue point and play 前往提示點並播放 - + Go to cue point and stop 前往提示點並停止 - + Preview from cue point 從提示點預覽 - + Cue button (CDJ mode) 提示按鈕 (CDJ 模式) - + Stutter cue 口吃的提示 - + Hotcues Hotcues - + Set, preview from or jump to hotcue %1 設置、 從預覽或跳轉到 hotcue %1 - + Clear hotcue %1 刪除 hotcue %1 - + Set hotcue %1 設置 hotcue %1 - + Jump to hotcue %1 跳轉到 hotcue %1 - + Jump to hotcue %1 and stop 跳轉到 hotcue %1 並停止 - + Jump to hotcue %1 and play 跳轉到 hotcue %1 並播放 - + Preview from hotcue %1 從 hotcue %1 預覽 - - + + Hotcue %1 Hotcue %1 - + Looping 迴圈播放 - + Loop In button 循環起點 - + Loop Out button 循環終點 - + Loop Exit button 循環關閉 - + 1/2 1/2 - + 1 1 - + 2 2 - + 4 4 - + 8 8 - + 16 16 - + 32 32 - + 64 64 - + Move loop forward by %1 beats 循環向前移動 %1 拍 - + Move loop backward by %1 beats 循環向後移動 %1 拍 - + Create %1-beat loop 建立 %1 節拍循環 - + Create temporary %1-beat loop roll 創建臨時的 %1 節拍循環 - + Library 音樂庫 @@ -1332,20 +1380,20 @@ - - + + Volume Fader 音量推桿 - + Full Volume 音量全滿 - + Zero Volume 零音量 @@ -1361,7 +1409,7 @@ - + Mute 靜音 @@ -1372,7 +1420,7 @@ - + Headphone Listen 耳機監聽 @@ -1393,25 +1441,25 @@ - + Orientation 方向 - + Orient Left 左方向 - + Orient Center 中心 - + Orient Right 右方向 @@ -1510,52 +1558,6 @@ Sync 同步 - - - Sync Mode - 同步模式 - - - - Internal Sync Master - 內部同步大師 - - - - Toggle Internal Sync Master - 切換內部同步大師 - - - - - Internal Master BPM - 內部主 BPM - - - - Internal Master BPM +1 - 內部主 BPM +1 - - - - Internal Master BPM -1 - 內部主 BPM -1 - - - - Internal Master BPM +0.1 - 內部主 BPM +0.1 - - - - Internal Master BPM -0.1 - 內部主 BPM -0.1 - - - - Sync Master - 同步主要輸出 - Beat Sync One-Shot @@ -1572,37 +1574,37 @@ 同步階段一次性 - + Pitch control (does not affect tempo), center is original pitch 樹脂 (不影響節奏) 的控制,中心是原來的音高 - + Pitch Adjust 音高調整 - + Adjust pitch from speed slider pitch 從速度滑桿調整音高 - + Match musical key 配對音樂音調 - + Match Key 與音調匹配 - + Reset Key 重置音調 - + Resets key to original 重置至原始音調 @@ -1643,466 +1645,466 @@ 低頻等化器 - + Toggle Vinyl Control 切換黑膠盤控制項 - + Toggle Vinyl Control (ON/OFF) 切換黑膠盤控制 (開/關) - + Vinyl Control Mode 黑膠盤控制模式 - + Vinyl Control Cueing Mode 黑膠盤控制提示模式 - + Vinyl Control Passthrough 黑膠盤直通 - + Vinyl Control Next Deck 黑膠盤控制下甲板 - + Single deck mode - Switch vinyl control to next deck 單甲板模式-切換唱片控制到下一個甲板 - + Cue 提示 - + Set Cue 設置提示 - + Go-To Cue 前往提示 - + Go-To Cue And Play 前往提示並播放 - + Go-To Cue And Stop 前往提示並停止 - + Preview Cue 預覽提示 - + Cue (CDJ Mode) 提示 (CDJ 模式) - + Stutter Cue 口吃的提示 - + Go to cue point and play after release 前往提示點並在放開後播放 - + Clear Hotcue %1 刪除 Hotcue %1 - + Set Hotcue %1 設置 Hotcue %1 - + Jump To Hotcue %1 跳轉到 Hotcue %1 - + Jump To Hotcue %1 And Stop 跳轉到 Hotcue %1 並停止 - + Jump To Hotcue %1 And Play 跳轉到 Hotcue %1 並播放 - + Preview Hotcue %1 預覽 Hotcue %1 - + Loop In 循環起點 - + Loop Out 循環終點 - + Loop Exit 循環關閉 - + Reloop/Exit Loop 循環開關 - + Loop Halve 循環減半 - + Loop Double 循環雙倍 - + 1/32 1/32 - + 1/16 1/16 - + 1/8 1/8 - + 1/4 1/4 - + Move Loop +%1 Beats 移動循環 +%1 拍 - + Move Loop -%1 Beats 移動循環 -%1 拍 - + Loop %1 Beats 循環 %1 拍 - + Loop Roll %1 Beats 循環卷 %1 拍 - + Add to Auto DJ Queue (bottom) 將添加到自動 DJ 佇列 (底部) - + Append the selected track to the Auto DJ Queue 將選定的軌道加到自動 DJ 佇列 - + Add to Auto DJ Queue (top) 將添加到自動 DJ 佇列 (頂部) - + Prepend selected track to the Auto DJ Queue 將選定的軌道,到汽車 DJ 佇列的開頭 - + Load Track 載入音軌 - + Load selected track 載入選定的音軌 - + Load selected track and play 載入選定的音軌並播放 - - + + Record Mix 錄製混音 - + Toggle mix recording 切換錄製混音 - + Effects 效果 - + Quick Effects 快速效果 - + Deck %1 Quick Effect Super Knob 甲板 %1 見效快超級旋鈕 - + Quick Effect Super Knob (control linked effect parameters) 快速效果超級旋鈕 (控制連結的效果參數) - - + + Quick Effect 快速效果 - + Clear effect rack 清除效果架 - + Clear Effect Rack 清除效果架 - + Clear Unit 清除單元 - + Clear effect unit 清除效果架單位 - + Toggle Unit 切換單元 - + Dry/Wet 乾/濕 - + Adjust the balance between the original (dry) and processed (wet) signal. 調整原(乾)和處理(濕)之間的平衡。 - + Super Knob 超級旋鈕 - + Next Chain 下一個鏈 - + Assign 分配 - + Clear 清除 - + Clear the current effect 清除當前效果 - + Toggle 切換 - + Toggle the current effect 切換當前效果 - + Next 下一個 - + Switch to next effect 切換到下一個效果 - + Previous 上一個 - + Switch to the previous effect 切換到上一個效果 - + Next or Previous 下一頁或上一頁 - + Switch to either next or previous effect 切換到下一個或上一個的效果 - - + + Parameter Value 參數值 - - + + Microphone Ducking Strength 麥克風迴避強度 - + Microphone Ducking Mode 麥克風迴避模式 - + Gain 增益 - + Gain knob 增益旋鈕 - + Shuffle the content of the Auto DJ queue 拖曳自動 DJ 柱列中的內容 - + Skip the next track in the Auto DJ queue 跳過自動 DJ 柱列中的下一曲目 - + Auto DJ Toggle 自動 DJ 切換 - + Toggle Auto DJ On/Off 切換自動 DJ 開啟/關閉 - + Microphone & Auxiliary Show/Hide - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide - + Show or hide the mixer. 顯示或隱藏該混合器。 - + Cover Art Show/Hide (Library) - + Show/hide cover art in the library - + Library Maximize/Restore 音樂庫最大化/還原 - + Maximize the track library to take up all the available screen space. 最大化音樂庫以佔用所有可用的螢幕空間。 - + Effect Rack Show/Hide 效果架顯示/隱藏 - + Show/hide the effect rack 顯示/隱藏效果架 - + Waveform Zoom Out 波形縮小 @@ -2127,93 +2129,93 @@ - + Playback Speed 播放速度 - + Playback speed control (Vinyl "Pitch" slider) 播放速度控制 (黑膠盤"音調"推桿) - + Pitch (Musical key) 音調 (音樂音高) - + Increase Speed 提高速度 - + Adjust speed faster (coarse) 調整速度更快 (粗) - - + + Increase Speed (Fine) 增加速度 (精細) - + Adjust speed faster (fine) 調整速度更快 (精細) - + Decrease Speed 降低速度 - + Adjust speed slower (coarse) 調整速度較慢 (粗) - + Adjust speed slower (fine) 調整速度較慢 (精細) - + Temporarily Increase Speed 暫時增加速度 - + Temporarily increase speed (coarse) 暫時增加速度 (粗) - + Temporarily Increase Speed (Fine) 暫時增加速度 (精細) - + Temporarily increase speed (fine) 暫時增加速度 (精細) - + Temporarily Decrease Speed 暫時降低速度 - + Temporarily decrease speed (coarse) 暫時降低速度 (粗) - + Temporarily Decrease Speed (Fine) 暫時降低速度 (精細) - + Temporarily decrease speed (fine) 暫時降低速度 (精細) @@ -2270,806 +2272,872 @@ - + + Internal Sync Leader + + + + + Toggle Internal Sync Leader + + + + + + Internal Leader BPM + + + + + Internal Leader BPM +1 + + + + + Increase internal Leader BPM by 1 + + + + + Internal Leader BPM -1 + + + + + Decrease internal Leader BPM by 1 + + + + + Internal Leader BPM +0.1 + + + + + Increase internal Leader BPM by 0.1 + + + + + Internal Leader BPM -0.1 + + + + + Decrease internal Leader BPM by 0.1 + + + + + Sync Leader + + + + + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) + + + + Speed - + Pitch (Musical Key) - + Increase Pitch - + Increases the pitch by one semitone - + Increase Pitch (Fine) - + Increases the pitch by 10 cents - + Decrease Pitch - + Decreases the pitch by one semitone - + Decrease Pitch (Fine) - + Decreases the pitch by 10 cents - + Keylock 鑰匙鎖 - + CUP (Cue + Play) CUP (提示 + 播放) - + Shift cue points earlier - + Shift cue points 10 milliseconds earlier - + Shift cue points earlier (fine) - + Shift cue points 1 millisecond earlier - + Shift cue points later - + Shift cue points 10 milliseconds later - + Shift cue points later (fine) - + Shift cue points 1 millisecond later - + Hotcues %1-%2 - + Intro / Outro Markers - + Intro Start Marker - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + intro start marker - + intro end marker - + outro start marker - + outro end marker - + Activate %1 [intro/outro marker - + Jump to or set the %1 [intro/outro marker - + Set %1 [intro/outro marker - + Set or jump to the %1 [intro/outro marker - + Clear %1 [intro/outro marker - + Clear the %1 [intro/outro marker - + Loop Selected Beats 循環播放選定的節拍 - + Create a beat loop of selected beat size 在選定的節拍長度內新增循環節奏 - + Loop Roll Selected Beats - + Create a rolling beat loop of selected beat size - + Loop Beats - + Loop Roll Beats - + Toggle loop on/off and jump to Loop In point if loop is behind play position - + Reloop And Stop 重複循環並停止 - + Enable loop, jump to Loop In point, and stop 啟動循環播放,跳至循環播放,並停止 - + Halve the loop length 把循環播放的時間長度減半 - + Double the loop length 把循環播放的時間長度加倍 - + Beat Jump / Loop Move - + Jump / Move Loop Forward %1 Beats 向前跳躍/移動循環 %1 拍 - + Jump / Move Loop Backward %1 Beats 向後跳躍/移動循環 %1 拍 - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Beat Jump / Loop Move Forward Selected Beats - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Beat Jump / Loop Move Backward Selected Beats - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Navigation - + Move up - + Equivalent to pressing the UP key on the keyboard - + Move down - + Equivalent to pressing the DOWN key on the keyboard - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up - + Equivalent to pressing the PAGE UP key on the keyboard - + Scroll Down - + Equivalent to pressing the PAGE DOWN key on the keyboard - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left - + Equivalent to pressing the LEFT key on the keyboard - + Move right - + Equivalent to pressing the RIGHT key on the keyboard - + Move left/right - + Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Move focus to right pane - + Equivalent to pressing the TAB key on the keyboard - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Go to the currently selected item 前往目前選擇的項目 - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play - + Add to Auto DJ Queue (replace) 加入自動 DJ 柱列 (取代) - + Replace Auto DJ Queue with selected tracks 以選擇的曲目取代自動 DJ 柱列 - + Select next search history - + Selects the next search history entry - + Select previous search history - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Deck %1 Quick Effect Enable Button - + Quick Effect Enable Button - + Enable or disable effect processing 啟用或禁用效果處理 - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle - + Toggle effect unit between D/W and D+W modes - + Next chain preset 下一個鏈預設 - + Previous Chain 以前的鏈 - + Previous chain preset 上一個鏈預置 - + Next/Previous Chain 下一個/上一個鏈 - + Next or previous chain preset 下一個或上一個鏈預設 - - + + Show Effect Parameters 顯示效果器的參數 - + Effect Unit Assignment - + Meta Knob - + Effect Meta Knob (control linked effect parameters) - + Meta Knob Mode - + Set how linked effect parameters change when turning the Meta Knob. - + Meta Knob Mode Invert - + Invert how linked effect parameters change when turning the Meta Knob. - - + + Button Parameter Value - + Microphone / Auxiliary 麥克風 / 輔助 - + Microphone On/Off 麥克風打開/關閉 - + Microphone on/off 麥克風打開/關閉 - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) 切換麥克風迴避模式 (關閉、 自動、 手動) - + Auxiliary On/Off 輔助開關 - + Auxiliary on/off 輔助開關 - + Auto DJ 自動DJ - + Auto DJ Shuffle 自動 DJ 拖曳 - + Auto DJ Skip Next 自動 DJ 跳過下一個 - + Auto DJ Add Random Track - + Add a random track to the Auto DJ queue - + Auto DJ Fade To Next 自動 DJ 淡入至下一個 - + Trigger the transition to the next track 觸發器過渡到下一曲目 - + User Interface 使用者介面 - + Samplers Show/Hide 取樣器顯示/隱藏 - + Show/hide the sampler section 顯示/隱藏取樣器節 - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. 在互聯網上流你的組合。 - + Start/stop recording your mix. - - + + Samplers - + Vinyl Control Show/Hide 乙烯基控制顯示/隱藏 - + Show/hide the vinyl control section 顯示/隱藏的乙烯基控制部分 - + Preview Deck Show/Hide 預覽甲板上顯示/隱藏 - + Show/hide the preview deck 顯示/隱藏預覽甲板 - + Toggle 4 Decks 切換 4 甲板 - + Switches between showing 2 decks and 4 decks. 顯示 2 甲板和 4 層甲板之間的切換。 - + Cover Art Show/Hide (Decks) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide 乙烯基微調框顯示/隱藏 - + Show/hide spinning vinyl widget 顯示/隱藏紡乙烯小部件 - + Vinyl Spinners Show/Hide (All Decks) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Waveform zoom 波形縮放 - + Waveform Zoom 波形縮放 - + Zoom waveform in 放大波形 - + Waveform Zoom In 在波形縮放 - + Zoom waveform out 縮小波形 - + Star Rating Up - + Increase the track rating by one star - + Star Rating Down - + Decrease the track rating by one star @@ -3158,32 +3226,32 @@ ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + You can ignore this error for this session but you may experience erratic behavior. - + Try to recover by resetting your controller. 嘗試恢復通過重置您的控制器。 - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. 腳本代碼需要修理。 @@ -3219,133 +3287,133 @@ CrateFeature - + Remove 刪除 - - + + Create New Crate 建立新的音樂箱 - + Rename 重新命名 - - + + Lock - + Export Crate as Playlist - + Export Track Files 匯出追蹤檔案 - + Duplicate 複製 - + Analyze entire Crate 分析整個收集箱 - + Auto DJ Track Source 自動 DJ 音軌來源 - + Enter new name for crate: 輸入收集箱的新名稱︰ - - + + Crates 音樂箱 - - + + Import Crate 匯入箱 - + Export Crate 匯出音樂箱 - + Unlock 解鎖 - + An unknown error occurred while creating crate: 創建音樂箱時發生未知的錯誤︰ - + Rename Crate 重新命名音樂箱 - - + + Export to Engine Prime - + Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested tracks. - - + + Renaming Crate Failed 音樂箱重新命名失敗 - + Crate Creation Failed 建立音樂箱失敗 - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U 播放清單 (*.m3u);M3U8 播放清單 (*.m3u8);PLS播放清單 (*.pls);文字 CSV (*.csv);;可讀的文本 (*.txt) - + Crates are a great way to help organize the music you want to DJ with. 音樂箱是一個強大的方式來幫助組織您要 DJ 的音樂。 - + Crates let you organize your music however you'd like! 音樂箱讓你組織你的音樂,你會喜歡 ! - + A crate cannot have a blank name. 音樂箱名稱不得空白。 - + A crate by that name already exists. 已經有相同名稱的音樂箱。 @@ -3415,37 +3483,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: 捐款︰ - + And special thanks to: 並特別感謝︰ - + Past Developers 過去的開發人員 - + Past Contributors 過去的貢獻者 - + Official Website - + Donate @@ -4878,32 +4946,32 @@ Apply settings and continue? DlgPrefControlsDlg - + Skin 皮膚 - + Tool tips 工具提示 - + Select from different color schemes of a skin if available. 如果可用,請選擇從不同的色彩配置的皮膚。 - + Color scheme 色彩配置 - + Locales determine country and language specific settings. 地區設定確定的國家和語言的特定設置。 - + Locale 地區設定 @@ -4913,52 +4981,42 @@ Apply settings and continue? 介面首選項 - + HiDPI / Retina scaling - + Change the size of text, buttons, and other items. 改變文字的尺寸,按鈕,和其他的項目。 - - Adopt scale factor from the operating system - - - - - Auto Scaling - 自動縮放 - - - + Screen saver 螢幕保護程式 - + Start in full-screen mode 在全螢幕模式下啟動 - + Full-screen mode 全屏模式 - + Off 關閉 - + Library only 僅庫 - + Library and Skin 圖書館和皮膚 @@ -5569,38 +5627,38 @@ You can always drag-and-drop tracks on screen to clone a deck. DlgPrefInterface - + The minimum size of the selected skin is bigger than your screen resolution. 所選的外觀的最小大小大於您的螢幕解析度。 - + Allow screensaver to run 允許螢幕保護程式執行 - + Prevent screensaver from running 在程式運行中防止螢幕保護程式 - + Prevent screensaver while playing 當播放歌曲時禁止螢幕保護程式 - + This skin does not support color schemes 這種皮膚不支援色彩配置 - + Information 資訊 - - Mixxx must be restarted before the new locale setting will take effect. + + Mixxx must be restarted before the new locale or scaling settings will take effect. @@ -5819,62 +5877,62 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + Music Directory Added 添加的音樂目錄 - + You added one or more music directories. The tracks in these directories won't be available until you rescan your library. Would you like to rescan now? 添加一個或多個音樂目錄。在這些目錄中的軌道將不可用,直到您重新掃描您的庫。你想現在重新掃描? - + Scan 掃描 - + Choose a music directory 選擇音樂目錄 - + Confirm Directory Removal 確認目錄刪除 - + Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. Mixxx 將不再監視此目錄為新的軌道。你想要用軌道從這個目錄和子目錄什麼?<ul><li>隱藏從這個目錄和子目錄中的所有蹤跡。</li><li>刪除這些的所有中繼資料跟蹤從 Mixxx 永久。</li><li>離開鐵軌在您的庫不變。</li></ul>隱藏曲目將其中繼資料的保存,以防你重新將它們添加到了將來。 - + Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. 中繼資料意味著所有跟蹤詳細資訊 (演出者、 標題、 playcount 等) 以及 beatgrids、 hotcues 和迴圈。該選項只會影響 Mixxx 圖書館。沒有磁片上的檔將被更改或刪除。 - + Hide Tracks 隱藏的蹤跡 - + Delete Track Metadata 刪除跟蹤中繼資料 - + Leave Tracks Unchanged 離開軌道不變 - + Relink music directory to new location 重新連結到新位置的音樂目錄 - + Select Library Font 選擇庫字體 @@ -6880,32 +6938,32 @@ The loudness target is approximate and assumes track pregain and master output l DlgPrefWaveform - + Filtered 過濾 - + HSV 單純皰疹病毒 - + RGB RGB - + OpenGL not available OpenGL 不可用 - + dropped frames 丟棄的幀 - + Cached waveforms occupy %1 MiB on disk. 緩存的波形佔據磁片上的 MiB %1。 @@ -7119,72 +7177,72 @@ Select from different types of displays for the waveform, which differ primarily 音樂庫 - + Interface 介面 - + Waveforms 波形 - + Auto DJ 自動DJ - + Equalizers 等化器 - + Decks - + Colors - + Crossfader 推杆 - + Effects 效果 - + LV2 Plugins - + Recording 記錄 - + Beat Detection 擊敗檢測 - + Key Detection 關鍵的檢測 - + Normalization 歸一化 - + <font color='#BB0000'><b>Some preferences pages have errors. To apply the changes please first fix the issues.</b></font> @@ -7194,12 +7252,12 @@ Select from different types of displays for the waveform, which differ primarily 唱片控制 - + Live Broadcasting 直播 - + Modplug Decoder Modplug 解碼器 @@ -7340,123 +7398,123 @@ Select from different types of displays for the waveform, which differ primarily 選擇最佳匹配 - - + + Track 跟蹤 - - + + Year 年份 - + Title 標題 - - + + Artist 演出者 - - + + Album 專輯 - + Album Artist 唱片集演出者 - + Fetching track data from the MusicBrainz database 從音軌資料庫提取軌道資料 - + Mixxx could not find this track in the MusicBrainz database. Mixxx 在音軌資料庫中找不到這條賽道。 - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. 獲取 API 金鑰 - + Submit Submits audio fingerprints to the MusicBrainz database. 提交 - + New Column 新列 - + New Item 新專案 - + &Previous & 上一頁 - + &Next 與下一步 - + &Apply 與應用 - + &Close 與關閉 - + Status: %1 狀態: %1 - + HTTP Status: %1 HTTP 狀態: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx 無法連接到 %1,原因未知。 - + Mixxx can't connect to %1. Mixxx 無法連接到 %1。 - + Original tags 原始標記 - + Suggested tags 建議的標籤 @@ -7848,17 +7906,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) Soundtouch (更快) - + Rubberband (better) 橡皮條 (更好) - + Unknown (bad value) 未知 (壞值) @@ -7959,38 +8017,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h ITunesFeature - + iTunes iTunes - - + + Select your iTunes library 選擇您的 iTunes 圖書館 - + (loading) iTunes (載入) iTunes - + Use Default Library 使用預設庫 - + Choose Library... 選擇庫... - + Error Loading iTunes Library 錯誤載入 iTunes 庫 - + There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. 載入您的 iTunes 庫時出錯。一些你的 iTunes 曲目或播放清單可能不載入。 @@ -7998,13 +8056,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacySkinParser - + Safe Mode Enabled Shown when Mixxx is running in safe mode. 啟用安全模式 - + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -8012,57 +8070,57 @@ support. 沒有 OpenGL 支援。 - + activate 啟動 - + toggle 切換 - + right 權利 - + left - + right small 右小 - + left small 左小 - + up 向上 - + down 向下 - + up small 小了 - + down small 下小 - + Shortcut 快捷方式 @@ -8083,22 +8141,22 @@ support. LibraryFeature - + Import Playlist 匯入播放清單 - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) 播放清單檔 (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -8109,27 +8167,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner 圖書館掃描器 - + It's taking Mixxx a minute to scan your music library, please wait... 它以 Mixxx 一分鐘掃描您的音樂庫,請稍等... - + Cancel 取消 - + Scanning: 掃描︰ - + Scanning cover art (safe to cancel) 掃描封面 (安全地取消) @@ -8245,183 +8303,183 @@ Do you really want to overwrite it? MixxxMainWindow - + Sound Device Busy 聲音設備忙 - + <b>Retry</b> after closing the other application or reconnecting a sound device 關閉其他應用程式或重新連接聲音設備後 <b>重試</b> - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. <b>重新配置</b>Mixxx 的聲音設備設置。 - - + + Get <b>Help</b> from the Mixxx Wiki. 從 Mixxx Wiki 得到 <b>説明</b>。 - - - + + + <b>Exit</b> Mixxx. <b>退出</b>Mixxx。 - + Retry 重試 - + skin - - + + Reconfigure 重新配置 - + Help 説明 - - + + Exit 退出 - - + + Mixxx was unable to open all the configured sound devices. Mixxx 無法打開所有設定好的聲音裝置。 - + Sound Device Error 聲音裝置錯誤 - + <b>Retry</b> after fixing an issue - + No Output Devices 沒有輸出裝置 - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. Mixxx 是沒有任何輸出聲音設備配置的。沒有已配置的輸出裝置,將禁用音訊處理。 - + <b>Continue</b> without any outputs. <b>繼續</b> 沒有任何產出。 - + Continue 繼續 - + Load track to Deck %1 負荷跟蹤到甲板 %1 - + Deck %1 is currently playing a track. 甲板 %1 當前播放的曲目。 - + Are you sure you want to load a new track? 你確定你想要載入一個新的軌道? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. 有是沒有為此乙烯基控制項選擇的輸入的設備。 請先在聲音硬體首選項中選擇一種輸入的設備。 - + There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. 有是沒有為此直通控制項選擇的輸入的設備。 請先在聲音硬體首選項中選擇一種輸入的設備。 - + There is no input device selected for this microphone. Do you want to select an input device? - + There is no input device selected for this auxiliary. Do you want to select an input device? - + Error in skin file 皮膚檔中的錯誤 - + The selected skin cannot be loaded. 無法載入所選的外觀。 - + OpenGL Direct Rendering OpenGL 直接繪製 - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit 確認退出 - + A deck is currently playing. Exit Mixxx? 當前現正播放的甲板。退出 Mixxx 嗎? - + A sampler is currently playing. Exit Mixxx? 當前現正播放採樣器。退出 Mixxx 嗎? - + The preferences window is still open. 首選項視窗是仍處於打開狀態。 - + Discard any changes and exit Mixxx? 放棄所有更改並退出 Mixxx? @@ -8492,43 +8550,43 @@ Do you want to select an input device? PlaylistFeature - + Lock - + Playlists 播放清單 - + Unlock 解鎖 - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. - + It may be necessary to skip some tracks in your prepared playlist or add some different tracks in order to maintain the energy of your audience. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. 一些 Dj 構建播放清單之前他們表演,但其他人則傾向建立他們的蒼蠅。 - + When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. 當在一個活的 DJ 集,使用播放清單記得總是密切關注你的聽眾對音樂的反應您已經選擇玩。 - + Create New Playlist 創建新的播放清單 @@ -8536,59 +8594,59 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx 升級 Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? Mixxx 現在支援顯示封面藝術。 你想要現在掃描媒體庫中的封面檔嗎? - + Scan 掃描 - + Later 後來 - + Upgrading Mixxx from v1.9.x/1.10.x. 從 v1.9.x/1.10.x 升級 Mixxx。 - + Mixxx has a new and improved beat detector. Mixxx 具有一個新的和改進的節拍探測器。 - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. 當你載入軌道時,Mixxx 可以重新對其進行分析和產生新的、 更準確的 beatgrids。這將使自動 beatsync 和迴圈更可靠。 - + This does not affect saved cues, hotcues, playlists, or crates. 這並不影響保存提示、 hotcues、 播放清單或板條箱。 - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. 如果你不想 Mixxx 重新分析你的曲目,請選擇"保持當前的 Beatgrids"。你可以從"擊敗檢測"一節的首選項更改此設置在任何時間。 - + Keep Current Beatgrids 保持當前 Beatgrids - + Generate New Beatgrids 生成新 Beatgrids @@ -8772,7 +8830,7 @@ Do you want to scan your library for cover files now? - + Encoder 編碼器 @@ -9898,12 +9956,12 @@ Fully right: end of the effect period - + <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. @@ -10041,54 +10099,54 @@ Fully right: end of the effect period RekordboxFeature - - - + + + Rekordbox - + Playlists 播放清單 - + Folders - + Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Hot cues - + Loops (only the first loop is currently usable in Mixxx) - + Check for attached Rekordbox USB / SD devices (refresh) - + Beatgrids - + Memory cues - + (loading) Rekordbox @@ -10097,7 +10155,7 @@ Fully right: end of the effect period RhythmboxFeature - + Rhythmbox Rhythmbox @@ -10148,34 +10206,34 @@ Fully right: end of the effect period SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks 音軌 - + Crates 音樂箱 - + Check for Serato databases (refresh) - + (loading) Serato @@ -10198,12 +10256,12 @@ Fully right: end of the effect period 歷史 - + Unlock 解鎖 - + Lock @@ -11162,6 +11220,31 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. + + + (This skin should be updated to use Sync Lock!) + + + + + Enable Sync Lock + + + + + Tap to sync the tempo to other playing tracks or the sync leader. + + + + + Enable Sync Leader + + + + + When enabled, this device will serve as the sync leader for all other decks. + + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. @@ -12337,11 +12420,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Old Synchronize 老同步 - - - (This skin should be updated to use Master Sync!) - (這種皮膚應該更新,以使用主同步 !) - Syncs to the first deck (in numerical order) that is playing a track and has a BPM. @@ -12357,16 +12435,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Decks can't sync to samplers and samplers can only sync to decks. 甲板不能同步到採樣器,採樣器只可以同步到甲板上。 - - - Enable Master Sync - 啟用主機同步 - - - - Tap to sync the tempo to other playing tracks or the master clock. - 點擊的同步到其他玩節奏跟蹤或主時鐘。 - Hold for at least a second to enable sync lock for this deck. @@ -12382,16 +12450,6 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Resets the key to the original track key. 將金鑰重置為原始軌道鍵。 - - - Enable Sync Clock Master - 啟用同步時鐘碩士 - - - - When enabled, this device will serve as the master clock for all other decks. - 當啟用時,此設備將作為所有其他甲板的主時鐘。 - Speed Control @@ -12945,22 +13003,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects.TraktorFeature - + Traktor 拖拉機 - + (loading) Traktor (載入)拖拉機 - + Error Loading Traktor Library 載入拖拉機庫時出錯 - + There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. 載入您的拖拉機庫時出錯。一些你的拖拉機曲目或播放清單可能不載入。 @@ -13572,20 +13630,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13756,8 +13814,8 @@ Use this to change only the effected (wet) signal with EQ and filter effects.體裁 - - Folder + + Directory @@ -14000,155 +14058,160 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + + Update ReplayGain from Deck Gain + + + + Deck %1 甲板 %1 - + Sampler %1 採樣器 %1 - + Importing metadata of %n track(s) from file tags - + Marking metadata of %n track(s) to be exported into file tags - - + + Create New Playlist 創建新的播放清單 - + Enter name for new playlist: 輸入新播放清單名稱︰ - + New Playlist 新增播放清單 - - - + + + Playlist Creation Failed 播放清單創建失敗 - + A playlist by that name already exists. 已存在該名稱的播放清單。 - + A playlist cannot have a blank name. 播放清單不能有空白的名稱。 - + An unknown error occurred while creating playlist: 創建播放清單時發生未知的錯誤︰ - + Add to New Crate - + Scaling BPM of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting color of %n track(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Removing main cue from %n track(s) - + Removing outro cue from %n track(s) - + Removing intro cue from %n track(s) - + Removing loop cues from %n track(s) - + Removing hot cues from %n track(s) - + Resetting keys of %n track(s) - + Resetting replay gain of %n track(s) - + Resetting waveform of %n track(s) - + Resetting all performance metadata of %n track(s) - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -14156,7 +14219,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. WTrackTableView - + ESC Focus 按 ESC 鍵 @@ -14193,128 +14256,55 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - main - - - Starts Mixxx in full-screen mode - - - - - Use a custom locale for loading translations. (e.g 'fr') - - - - - Top-level directory where Mixxx should look for settings. Default is: - - - - - Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. - - - - - Path the timeline is written to - - - - - Causes Mixxx to display/log all of the controller data it receives and script functions it loads - - - - - Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - - - - - Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. - - - - - [auto|always|never] Use colors on the console output. - - - - - Sets the verbosity of command line logging. -critical - Critical/Fatal only -warning - Above + Warnings -info - Above + Informational messages -debug - Above + Debug/Developer messages -trace - Above + Profiling messages - - - - - Sets the the logging level at which the log buffer is flushed to mixxx.log. LEVEL is one of the values defined at --logLevel above. - - - - - Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - - - - Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - - - mixxx::CoreServices - + fonts - + database - + effects - + audio interface - + decks - + library - + Choose music library directory 選擇音樂庫目錄 - + controllers - + Cannot open database 無法打開資料庫 - + Unable to establish a database connection. Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. @@ -14393,7 +14383,7 @@ Mixxx 需要 qt 離散度與 SQLite 支援。請閱讀有關如何構建它的 - + A database already exists in the chosen directory, but there was a problem loading it. Export is not guaranteed to succeed in this situation. @@ -14450,62 +14440,62 @@ Mixxx 需要 qt 離散度與 SQLite 支援。請閱讀有關如何構建它的 mixxx::hid::DeviceCategory - + HID Interface %1: - + Generic HID Pointer - + Generic HID Mouse 通用的 HID 的滑鼠 - + Generic HID Joystick 泛型的 HID 的操縱杆 - + Generic HID Game Pad - + Generic HID Keyboard 泛型的 HID 的鍵盤 - + Generic HID Keypad - + Generic HID Multi-axis Controller - + Unknown HID Desktop Device: - + Apple HID Infrared Control - + Unknown Apple HID Device: - + Unknown HID Device:

Eq4ZV19gtA?;7%Ic}mHrc7lB5~R4jh@- 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 AutoDJFeature - + Crates - Ceste + Contenitori - + Remove Crate as Track Source - Rimuove Cesta come Sorgente Traccia + Rimuove Contenitore come Sorgente Traccia - + Auto DJ Auto DJ - + Add Crate as Track Source - Aggiunge Cesta come Sorgente Traccia + Aggiunge Contenitore come Sorgente Traccia @@ -117,7 +117,7 @@ Create New Playlist - Crea Nuova Playlist + Crea &Nuova Playlist @@ -238,12 +238,12 @@ M3U Playlist (*.m3u) - + M3U Playlist (*.m3u) M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Non posso caricare la traccia. @@ -372,7 +372,7 @@ Samplerate - Campionamento + Frequenza di campionamento @@ -405,7 +405,7 @@ Please enable at least one connection to use Live Broadcasting. - Abilitare almeno una connessione per usare il Live Broadcasting. + Abilitare almeno una connessione per usare la Trasmissione Live. @@ -413,12 +413,12 @@ Can't use secure password storage: keychain access failed. - + Impossibile utilizzare l'archiviazione sicura delle password: accesso keychain non riuscito. Secure password retrieval unsuccessful: keychain access failed. - + Recupero sicuro della password senza successo: accesso keychain non riuscito. @@ -479,12 +479,12 @@ Add to Quick Links - Aggiungi a Link Veloci + Aggiungi a Link Rapidi Remove from Quick Links - Rimuovi da Link Veloci + Rimuovi da Link Rapidi @@ -494,7 +494,7 @@ Quick Links - Link Veloci + Link Rapidi @@ -642,12 +642,12 @@ File Creato - + Mixxx Library Libreria Mixxx - + Could not load the following file because it is in use by Mixxx or another application. Non posso caricare il file seguente perchè in uso da Mixxx o altra applicazione. @@ -675,7 +675,7 @@ The file '%1' is empty and could not be loaded. - + Il file '%1' è vuoto e non può essere caricato. @@ -699,7 +699,7 @@ Remove Palette - + Rimuovi Tavolozza @@ -709,7 +709,7 @@ Assign to Hotcue Number - + Assegna al Numero Hotcue @@ -719,7 +719,7 @@ Do you really want to remove the palette permanently? - + Vuoi veramente rimuovere permanentemente la tavolozza? @@ -732,7 +732,7 @@ %1 %2 - + %1 %2 @@ -790,7 +790,7 @@ Sampler %1 - + Campionatore %1 @@ -835,22 +835,22 @@ Headphone mix (pre/main) - + Mix cuffia (pre/main) Toggle headphone split cueing - + Attiva/disattiva il cueing seaparto delle cuffie Headphone delay - Ritardo cuffie + Ritardo cuffia Transport - + Trasporto @@ -892,12 +892,12 @@ Reverse roll (Censor) button - + Bottone reverse Roll (Censura) Headphone listen button - Bottone ascolto cuffie + Bottone ascolto cuffia @@ -919,7 +919,7 @@ Mix orientation (e.g. left, right, center) - + Orientamento mix (es. sinistra, destra, centro) @@ -942,7 +942,7 @@ Toggle slip mode - + Attiva/disattiva Modo Scivolamento @@ -972,57 +972,57 @@ BPM tap button - + Pulsante BPM tap Toggle quantize mode - + Attiva/disattiva modo quantizzazione Increase internal master BPM by 1 - + Aumenta BPM interno principale di 1 Decrease internal master BPM by 1 - + Diminuisci BPM interno principale di 1 Increase internal master BPM by 0.1 - + Aumenta BPM interno principale di 0.1 Decrease internal master BPM by 0.1 - + Diminuisci BPM interno principale di 0.1 Toggle sync master - + Attiva/disattiva sincronizzazione master Sync mode 3-state toggle (OFF, FOLLOWER, MASTER) - + Modo di sincronizzazione a 3 stati (OFF, FOLLOWER, MASTER) One-time beat sync (tempo only) - + Sync una tantum (solo tempo) One-time beat sync (phase only) - + Sync battuta una tantum (solo fase) Toggle keylock mode - + Attiva modo keylock @@ -1037,47 +1037,47 @@ Toggle vinyl-control cueing mode (OFF/ONE/HOT) - + Abilita/Disabilita il modo cueing controllo-vinile (OFF/ONE/HOT) Toggle vinyl-control mode (ABS/REL/CONST) - + Abilita/Disabilita modo controllo-vinile (ABS/REL/CONST) Pass through external audio into the internal mixer - + Inoltro diretto da audio esterno nel mixer interno Cues - + Cue Cue button - + Bottone Cue Set cue point - + Imposta punto cue Go to cue point - + Va' al punto cue Go to cue point and play - + Vai al punto di cue e riproduci Go to cue point and stop - + Vai al punto di cue e ferma @@ -1087,78 +1087,78 @@ Cue button (CDJ mode) - + Bottone cue (modo CDJ) Stutter cue - + Cue balbuzziente Hotcues - + Hotcue Set, preview from or jump to hotcue %1 - + Imposta, anteprima da o salta a hotcue %1 Clear hotcue %1 - + Cancella hotcue %1 Set hotcue %1 - + Imposta hotcue %1 Jump to hotcue %1 - + Salta a hotcue %1 Jump to hotcue %1 and stop - + Salta a hotcue %1 e ferma Jump to hotcue %1 and play - + Salta a hotcue %1 e riproduce Preview from hotcue %1 - + Anteprima da hotcue %1 Hotcue %1 - + Hotcue %1 Looping - + Ripetizione Loop In button - + Pulsante di Loop In Loop Out button - + Pulsante di Loop Out Loop Exit button - + Pulsante di Uscita Loop @@ -1203,22 +1203,22 @@ Move loop forward by %1 beats - + Sposta loop in avanti di %1 battute Move loop backward by %1 beats - + Sposta loop indietro di %1 battute Create %1-beat loop - + Crea un loop di %1 battute Create temporary %1-beat loop roll - + Crea un loop roll temporaneo di %1 battute @@ -1229,27 +1229,27 @@ Slot %1 - + Slot %1 Master crossfader - + Crossfader master Headphone Mix - + Mix Cuffia Headphone Split Cue - + Split Cue Cuffia Headphone Delay - Ritardo Cuffie + Ritardo Cuffia @@ -1294,7 +1294,7 @@ Reverse Roll (Censor) - + Reverse Roll (Censura) @@ -1341,7 +1341,7 @@ Volume Fader - + Fader Volume @@ -1363,13 +1363,13 @@ Track Gain knob - + Manopola Guadagno Traccia Mute - + Muto @@ -1385,7 +1385,7 @@ Headphone listen (pfl) button - + Bottone preascolto cuffia (pfl) @@ -1395,7 +1395,7 @@ Slip Mode - + Modo Slip @@ -1444,7 +1444,7 @@ BPM Tap - + BPM Tap @@ -1454,7 +1454,7 @@ Increase track's average BPM by 0.01 - + Aumenta BPM medio della traccia di 0.01 @@ -1464,12 +1464,12 @@ Decrease track's average BPM by 0.01 - + Diminuisci BPM medio della traccia di 0.01 Move Beatgrid Earlier - + Muove BeatGrid Anticipando @@ -1479,7 +1479,7 @@ Move Beatgrid Later - + Muove Beatgrid Posticipando @@ -1494,7 +1494,7 @@ Align beatgrid to current position - + Allinea beatgrid alla posizione corrente @@ -1504,17 +1504,17 @@ Adjust beatgrid to match another playing deck. - Regola beatgrid in modo che sia similare al deck in play + Regola la grigliabattute in modo che sia simile al deck in riproduzione. Quantize Mode - + Modalità Quantizzazione Sync - + Sync @@ -1524,63 +1524,63 @@ Internal Sync Master - + Master Sync Interno Toggle Internal Sync Master - + Attiva/disattiva Master Sync Interno Internal Master BPM - + Master Interno BPM Internal Master BPM +1 - + Master Interno BPM +1 Internal Master BPM -1 - + Master Interno BPM -1 Internal Master BPM +0.1 - + Master Interno BPM +0.1 Internal Master BPM -0.1 - + Internal Master BPM -0.1 Sync Master - + Sync Master Beat Sync One-Shot - + Beat Sync Un-Tocco Sync Tempo One-Shot - + Sync Tempo Un-Tocco Sync Phase One-Shot - + Sync Fase Un-Tocco Pitch control (does not affect tempo), center is original pitch - + Controllo Pitch (non influenza il tempo), Centro è il pitch originale @@ -1595,22 +1595,22 @@ Match musical key - + Sincronizza chiave musicale Match Key - + Allinea Chiave Reset Key - + Resetta Chiave Resets key to original - + Reimposta chiave all'originale @@ -1630,7 +1630,7 @@ Toggle Vinyl Control - + Abilita/Disabilita il controllo vinile @@ -1645,62 +1645,62 @@ Vinyl Control Cueing Mode - + Modo Controllo Cueing Vinile Vinyl Control Passthrough - + Inoltro Diretto Controllo Vinile Vinyl Control Next Deck - + Prossimo Deck Controllo Vinile Single deck mode - Switch vinyl control to next deck - + Modo deck singolo - passa in controllo vinile al prossimo deck Cue - + Cue Set Cue - + Imposta Cue Go-To Cue - + Vai-A Cue Go-To Cue And Play - + Vai-A E Suona Go-To Cue And Stop - + Vai-A Cue E Ferma Preview Cue - + Anteprima Cue Cue (CDJ Mode) - + Cue (modo CDJ) Stutter Cue - + Cue a Singhiozzo @@ -1710,62 +1710,62 @@ Clear Hotcue %1 - + Cancella Hotcue %1 Set Hotcue %1 - + Imposta Hotcue %1 Jump To Hotcue %1 - + Salta A Hotcue %1 Jump To Hotcue %1 And Stop - + Salta A Hotcue %1 E Ferma Jump To Hotcue %1 And Play - + Salta A Hotcue %1 E Suona Preview Hotcue %1 - + Anteprima Hotcue %1 Loop In - + Loop In Loop Out - + Loop Out Loop Exit - + Uscita Loop Reloop/Exit Loop - + Reloop/Uscita Loop Loop Halve - + Dimezza Loop Loop Double - + Raddoppia Loop @@ -1790,22 +1790,22 @@ Move Loop +%1 Beats - + Sposta Loop +%1 Battute Move Loop -%1 Beats - + Sposta Loop -%1 Battute Loop %1 Beats - + Loop Battute %1 Loop Roll %1 Beats - + Loop Roll %1 Battute @@ -1820,7 +1820,7 @@ Add to Auto DJ Queue (top) - Aggiungi alla coda di Auto DJ (in cima) + Aggiunge alla coda di Auto DJ (in cima) @@ -1846,12 +1846,12 @@ Record Mix - + Registra il Mix Toggle mix recording - + Attiva/Disattiva registrazione mix @@ -1861,53 +1861,53 @@ Quick Effects - Effetti Veloci + Effetti Rapidi Deck %1 Quick Effect Super Knob - + Deck %1 Super Manopola Effetto Rapido Quick Effect Super Knob (control linked effect parameters) - + Super Manopola Effetto Rapido (controlla parametri effetti collegati). Quick Effect - Effetto Veloce + Effetto Rapido Clear effect rack - + Svuota rack effetto Clear Effect Rack - + Svuota Rack Effetto Clear Unit - + Cancella Unità Clear effect unit - + Svuota unità effetto Toggle Unit - + Attiva/disattiva Unità Dry/Wet - + Dry/Wet @@ -1917,12 +1917,12 @@ Super Knob - + Super Manopola Next Chain - + Prossima Catena @@ -1957,7 +1957,7 @@ Switch to next effect - Salta all'effetto successivo + Passa all'effetto successivo @@ -1967,7 +1967,7 @@ Switch to the previous effect - Salta all'effetto precedente + Passa all'effetto precedente @@ -1977,7 +1977,7 @@ Switch to either next or previous effect - Salta all'effetto successivo o precedente + Passa all'effetto successivo o precedente @@ -1989,32 +1989,32 @@ Microphone Ducking Strength - + Forza Ducking Microfono Microphone Ducking Mode - + Modo Ducking Microfono Gain - + Guadagno Gain knob - + Manopola Guadagno Shuffle the content of the Auto DJ queue - + Mischia il contenuto della coda Auto DJ Skip the next track in the Auto DJ queue - + Salta alla traccia successiva nella coda dell'Auto DJ @@ -2024,32 +2024,32 @@ Toggle Auto DJ On/Off - + Abilita/Disabilita Auto Dj Microphone & Auxiliary Show/Hide - + Microfono & Ausiliario Mostra/Nascondi Show/hide the microphone & auxiliary section - + Mostra/nasconde la sezione microfono & ausiliario 4 Effect Units Show/Hide - + Mostra/Nasconde Unità 4 Effetti Switches between showing 2 and 4 effect units - + Mostra 2 o 4 unità effetti Mixer Show/Hide - + Mostra/Nascondi Mixer @@ -2059,22 +2059,22 @@ Cover Art Show/Hide (Library) - + Mostra/Nascondi Copertina (Libreria) Show/hide cover art in the library - + Mostra/Nasconde copertina nella libreria Library Maximize/Restore - + Libreria Massimizza/Ripristina Maximize the track library to take up all the available screen space. - + Massimizza la libreria tracce per occupare tutto lo spazio disponibile sullo schermo. @@ -2094,27 +2094,27 @@ Headphone Gain - + Guadagno Cuffia Headphone gain - + Guadagno cuffia Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync - + Tocca per sincronizzare il tempo (e la fase con Quantizza abilitato), tieni premuto per abilitare la sincronizzazione permanente One-time beat sync tempo (and phase with quantize enabled) - + Tempo di sincronizzazione della battuta una tantum (e fase con Quantizza abilitato) Playback Speed - + Velocità Riproduzione @@ -2124,7 +2124,7 @@ Pitch (Musical key) - + Pitch (Chiave Musicale) @@ -2140,7 +2140,7 @@ Increase Speed (Fine) - + Aumenta Velocità (Fine) @@ -2170,37 +2170,37 @@ Temporarily increase speed (coarse) - + Aumenta Velocità temporaneamente (grossolana) Temporarily Increase Speed (Fine) - + Aumenta Velocità temporaneamente (fine) Temporarily increase speed (fine) - + Aumenta Velocità temporaneamente (fine) Temporarily Decrease Speed - + Diminuisce Velocità Temporaneamente Temporarily decrease speed (coarse) - + Diminuisce velocità temporaneamente (grossolanamente) Temporarily Decrease Speed (Fine) - + Diminuisce Velocità Temporaneamente (Fine) Temporarily decrease speed (fine) - + Diminuisce velocità temporaneamente (fine) @@ -2211,68 +2211,68 @@ Effect Unit %1 - + Unità Effetto %1 Crossfader / Orientation - + Crossfader / Orientamento Main Output - + Uscita Master Main Output Gain - + Guadagno Uscita Master Main Output gain - + Guadagno Uscita Master Main Output Balance - + Bilanciamento Uscita Master Main Output balance - + Bilanciamento Uscita Master Main Output Delay - + Ritardo Uscita Master Main Output delay - + Ritardo Uscita Master Headphone - + Cuffia Kill %1 - + Kill %1 BPM / Beatgrid - + BPM / Grigliabattute Sync / Sync Lock - + Sincronizza / Blocca Sincronizzazione @@ -2282,193 +2282,193 @@ Pitch (Musical Key) - + Pitch (Chiave Musicale) Increase Pitch - + Incrementa Pitch Increases the pitch by one semitone - + Incrementa il pitch di un semitono Increase Pitch (Fine) - + Incrementa Pitch (Fine) Increases the pitch by 10 cents - + Incrementa il pitch di 10 centesimi Decrease Pitch - + Decrementa Pitch Decreases the pitch by one semitone - + Decrementa il pitch di un semitono Decrease Pitch (Fine) - + Decrementa Pitch (Fine) Decreases the pitch by 10 cents - + Decrementa il pitch di 10 centesimi Keylock - + Blocco tastiera CUP (Cue + Play) - + CUP (Cue + Play) Shift cue points earlier - + Trasla punti di cue anticipando Shift cue points 10 milliseconds earlier - + Trasla punti di cue anticipando 10 millisecondi Shift cue points earlier (fine) - + Trasla punti di cue anticipando (fine) Shift cue points 1 millisecond earlier - + Trasla punti di cue anticipando 1 millisecondo Shift cue points later - + Trasla punti di cue posticipando Shift cue points 10 milliseconds later - + Trasla punti di cue posticipando 10 millisecondi Shift cue points later (fine) - + Trasla punti di cue posticipando (fine) Shift cue points 1 millisecond later - + Trasla punti di cue posticipando 1 millisecondo Hotcues %1-%2 - + Hotcues %1-%2 Intro / Outro Markers - + Marcatori Intro / Outro Intro Start Marker - + Marcatore Inizio Intro Intro End Marker - + Marcatore Fine Intro Outro Start Marker - + Marcatore Inizio Outro Outro End Marker - + Marcatore Fine Outro intro start marker - + marcatore inizio intro intro end marker - + marcatore fine intro outro start marker - + marcatore inizio outro outro end marker - + marcatore fine outro Activate %1 [intro/outro marker - + Attiva %1 Jump to or set the %1 [intro/outro marker - + Salta a o imposta il %1 Set %1 [intro/outro marker - + Imposta %1 Set or jump to the %1 [intro/outro marker - + Imposta o salta a %1 Clear %1 [intro/outro marker - + Pulisci %1 Clear the %1 [intro/outro marker - + Pulisci il %1 Loop Selected Beats - + Loop Battute Selezionate Create a beat loop of selected beat size - + Crea un loop di battute della dimensione delle battute selezionate @@ -2478,12 +2478,12 @@ Create a rolling beat loop of selected beat size - + Crea un loop di battute in rotazione della dimensione delle battute selezionate Loop Beats - + Loop Battute @@ -2493,7 +2493,7 @@ Toggle loop on/off and jump to Loop In point if loop is behind play position - + Attiva/disattiva loop e passa al punto Loop In se loop è dietro la posizione di riproduzione @@ -2503,17 +2503,17 @@ Enable loop, jump to Loop In point, and stop - + Abilita loop, passa al punto di Loop In ed interrompe Halve the loop length - + Dimezza la lunghezza del loop Double the loop length - + Raddoppia la lunghezza del loop @@ -2523,87 +2523,87 @@ Jump / Move Loop Forward %1 Beats - + Salta / Sposta loop Avanti di %1 Battute Jump / Move Loop Backward %1 Beats - + Salta / Sposta loop Indietro di %1 Battute Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats - + Salta in avanti di %1 battute, o se un loop è abilitato, sposta il loop avanti di %1 battute Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats - + Salta all'indietro di %1 battute, o se un loop è abilitato, sposta il loop indietro di %1 battute Beat Jump / Loop Move Forward Selected Beats - + Salto Battuta / Sposta Loop Avanti Battute Selezionate Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats - + Salta in avanti del numero di battute, o se un loop è abilitato, sposta il loop in avanti in base al numero di battute selezionate Beat Jump / Loop Move Backward Selected Beats - + Salto Battuta / Sposta Loop Indietro Battute Selezionate Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats - + Salta all'indietro del numero di battute, o se un loop è abilitato, sposta il loop all'indietro in base al numero di battute selezionate Beat Jump / Loop Move Forward - + Salto Battuta / Loop Sposta Avanti Beat Jump / Loop Move Backward - + Salto Battuta / Loop Sposta Indietro Loop Move Forward - + Loop Sposta Avanti Loop Move Backward - + Loop Sposta Indietro Navigation - + Navigazione Move up - + Muove sù Equivalent to pressing the UP key on the keyboard - + Equivale a premere il tasto SU sulla tastiera Move down - + Muove giù Equivalent to pressing the DOWN key on the keyboard - + Equivale a premere il tasto GIU sulla tastiera @@ -2613,12 +2613,12 @@ Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Muove verticalmente in ciascuna direzione usando una manopola, come se si premessero i tasti SU/GIU sulla tastiera Scroll Up - + Scorri in alto @@ -2628,7 +2628,7 @@ Scroll Down - + Scorri in basso @@ -2638,72 +2638,72 @@ Scroll up/down - + Scorri in alto/basso Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Scorre verticalmente in ciascuna direzione usando una manopola, come se si premessero i tasti PGSU/PGGIU sulla tastiera Move left - + Muove a sinistra Equivalent to pressing the LEFT key on the keyboard - + Equivale a premere il tasto SINISTRA sulla tastiera Move right - + Muove a destra Equivalent to pressing the RIGHT key on the keyboard - + Equivale a premere il tasto DESTRA sulla tastiera Move left/right - + Muove sinistra/destra Move horizontally in either direction using a knob, as if pressing LEFT/RIGHT keys - + Muove orizzontalmente in ciascuna direzione usando una manopola, come se si premessero i tasti DESTRA/SINISTRA sulla tastiera Move focus to right pane - + Sposta il focus al pannello di destra Equivalent to pressing the TAB key on the keyboard - + Equivale a premere il tasto TAB sulla tastiera Move focus to left pane - + Sposta il focus al pannello di sinistra Equivalent to pressing the SHIFT+TAB key on the keyboard - + Equivale a premere il tasto SHIFT+TAB sulla tastiera Move focus to right/left pane - + Sposta il focus al pannello di destra/sinistra Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Sposta il focus ad un pannello sulla destra o sinistra usando una manopola, come se si premessero i tasti TAB/SHIFT+TAB sulla tastiera @@ -2713,12 +2713,12 @@ Choose the currently selected item and advance forward one pane if appropriate - + Sceglie l'elemento attualmente selezionato e avanza di un riquadro, se appropriato Load Track and Play - + Carica Traccia e Suona @@ -2733,12 +2733,12 @@ Deck %1 Quick Effect Enable Button - Deck %1 Bottone Abilitazione Effetto Veloce + Deck %1 Bottone Abilitazione Effetto Rapido Quick Effect Enable Button - Bottone Abilitazione Effetto Veloce + Bottone Abilitazione Effetto Rapido @@ -2748,42 +2748,42 @@ Super Knob (control effects' Meta Knobs) - + Manopola Super (controllo effetti Manopola Meta) Mix Mode Toggle - + Attiva/disattiva Modo Mix Toggle effect unit between D/W and D+W modes - + Alterna unità effetto fra modi D/W e D+W Next chain preset - + Preset catena successiva Previous Chain - + Catena Precedente Previous chain preset - + Preset catena precedente Next/Previous Chain - + Catena Successiva/Precedente Next or previous chain preset - + Preset catena successiva o precedente @@ -2794,48 +2794,48 @@ Effect Unit Assignment - + Assegnazione Unità Effetto Meta Knob - + Manopola Meta Effect Meta Knob (control linked effect parameters) - + Effetto Manopola Meta (controlla parametri effetti collegati). Meta Knob Mode - + Manopola Meta Modo Set how linked effect parameters change when turning the Meta Knob. - + Configura come i parametri degli effetti collegati cambiano quando ruoti la Manopola Meta. Meta Knob Mode Invert - + Manopola Meta Modo Inverso Invert how linked effect parameters change when turning the Meta Knob. - + Inverte il modo di cambiamento dei parametri degli effetti collegati quando ruoti la Manopola Meta. Button Parameter Value - + Valore Parametro Pulsante Microphone / Auxiliary - + Microfono / Ausiliario @@ -2850,7 +2850,7 @@ Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Abilita/disabilita la modalità ducking del microfono (OFF, AUTO, MANUALE) @@ -2870,17 +2870,17 @@ Auto DJ Shuffle - + Auto Dj Mescola Auto DJ Skip Next - + Auto Dj Salta alla Successiva Auto DJ Fade To Next - + Audo Dj Sfuma Alla Successiva @@ -2895,12 +2895,12 @@ Samplers Show/Hide - + Campionatori Mostra/Nascondi Show/hide the sampler section - + Mostra/nascondi la sezione campionatore @@ -2925,22 +2925,22 @@ Toggle 4 Decks - + Abilita/disabilita 4 Decks Switches between showing 2 decks and 4 decks. - + Mostra 2 o 4 decks. Cover Art Show/Hide (Decks) - + Mostra/Nasconde copertina (Decks) Show/hide cover art in the main decks - + Mostra/Nasconde copertina nei decks principali @@ -2955,22 +2955,22 @@ Vinyl Spinners Show/Hide (All Decks) - + Mostra/Nasconde Indicatori Vinile (Tutti i Decks) Show/Hide all spinnies - + Mostra/Nasconde tutti gli indicatori vinile Toggle Waveforms - + Mostra/nasconde Forme d'onda Show/hide the scrolling waveforms. - + Mostra/Nascondi lo scorrimento delle forme d'onda. @@ -3000,43 +3000,43 @@ Star Rating Up - + Incrementa Valutazione Stelle Increase the track rating by one star - + Incrementa il punteggio della traccia di una stella Star Rating Down - + Decrementa Valutazione Stelle Decrease the track rating by one star - + Decrementa il punteggio della traccia di una stella Start/Stop Live Broadcasting - + Avvia/Ferma Trasmissione Live Stream your mix over the Internet. - + Trasmette il tuo mix su Internet. Start/stop recording your mix. - + Avvia/ferma la registrazione del tuo mix. Samplers - + Campionatori @@ -3045,52 +3045,52 @@ The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + La funzionalità fornita da questo mapping controller sarà disabilitata fino a che il problema non sarà risolto. You can ignore this error for this session but you may experience erratic behavior. - + Puoi ignorare questo errore per questa sessione ma potresti riscontrare comportamenti incoerenti. Controller Mapping Error - + Errore Mappatura Controller The mapping for your controller "%1" is not working properly. - + La mappatura per il tuo controller "%1" non funziona correttamente. The script code needs to be fixed. - + Il codice dello script deve essere riparato. Controller Mapping File Problem - + Problema File Mappatura Controller The mapping for controller "%1" cannot be opened. - + La mappatura per il tuo controller "%1" non può essere aperta. File: - + File: Error: - + Errore: Try to recover by resetting your controller. - + Tentativo di ripristino tramite il reset del tuo controller. @@ -3098,27 +3098,27 @@ Channel - + Canale Opcode - + Opcode Control - + Controllo Options - + Opzioni Action - + Azione @@ -3131,42 +3131,42 @@ Channel - + Canale Opcode - + Opcode Control - + Controllo On Value - + Valore On Off Value - + Valore Off Action - + Azione On Range Min - + Intervallo Min On On Range Max - + Intervallo Max On @@ -3185,7 +3185,7 @@ Create New Crate - Crea una Nuova Cesta + Crea &Nuovo Contenitore @@ -3211,7 +3211,7 @@ Analyze entire Crate - Analizza intera Cesta + Analizza intero Contenitore @@ -3221,25 +3221,25 @@ Enter new name for crate: - Inserisci nuovo nome per la cesta: + Inserisci nuovo nome per il contenitore: Crates - Ceste + Contenitori Import Crate - Importa Cesta + Importa Contenitore Export Crate - Esporta Cesta + Esporta Contenitore @@ -3249,53 +3249,53 @@ An unknown error occurred while creating crate: - Si è verificato un errore sconosciuto durante la creazione della cesta: + Si è verificato un errore sconosciuto durante la creazione del contenitore: Rename Crate - Rinomina Cesta + Rinomina Contenitore Renaming Crate Failed - Cambio nome Cesta Fallito + Cambio nome Contenitore Fallito Crate Creation Failed - Creazione Cesta Fallita + Creazione Contenitore Fallita M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Crates are a great way to help organize the music you want to DJ with. - Le ceste sono di grande aiuto per organizzare la musica DJ che vuoi. + I contenitori sono di grande aiuto per organizzare la musica DJ che desideri. Make a crate for your next gig, for your favorite electrohouse tracks, or for your most requested songs. - + Crea un contenitore per il tuo prossimo spettacolo, per le tue tracce ElectroHouse favorite, o per quelle che ti richiedono di più. Crates let you organize your music however you'd like! - Le ceste ti consentono di organizzare la tua musica a tuo piacimento! + I contenitori ti consentono di organizzare la tua musica a tuo piacimento! A crate cannot have a blank name. - Una cesta non può avere un nome nullo. + Un contenitore non può avere un nome nullo. A crate by that name already exists. - Una cesta con quel nome esiste già. + Un contenitore con quel nome esiste già. @@ -3303,99 +3303,99 @@ New Crate - Nuova Cesta + Nuovo Contenitore Create New Crate - Crea Nuova Cesta + Crea Nuovo Contenitore Enter name for new crate: - Inserisci il nome per la nuova cesta: + Inserisci il nome per il nuovo contenitore: Creating Crate Failed - Creazione Cesta Fallito + Creazione Contenitore Fallito A crate cannot have a blank name. - Una cesta non può avere un nome nullo. + Un contenitore non può avere un nome nullo. A crate by that name already exists. - Una cesta con quel nome esiste già. + Un contenitore con quel nome esiste già. An unknown error occurred while creating crate: - Si è verificato un errore sconosciuto durante la creazione della cesta: + Si è verificato un errore sconosciuto durante la creazione del contenitore: copy [noun] - + copia Duplicate Crate - Duplica Cesta + Duplica Contenitore Duplicating Crate Failed - Duplicazione Cesta Fallito + Duplicazione Contenitore Fallito DlgAbout - + Mixxx %1.%2 Development Team - + Mixxx %1.%2 Development Team - + With contributions from: - + Con contributi da: - + And special thanks to: - + E ringraziamenti speciali a: - + Past Developers - + Sviluppatori precedenti - + Past Contributors - + Collaboratori precedenti - + Official Website - + Sito Ufficiale - + Donate - + Dona @@ -3403,7 +3403,7 @@ About Mixxx - + Informazioni su Mixxx @@ -3415,27 +3415,27 @@ Date: - + Data: Git Version: - + Versione Git: Platform: - + Piattaforma: Credits - + Crediti License - + Licenza @@ -3450,27 +3450,27 @@ Shows tracks added to the library within the last 7 days. - + Mostra le tracce aggiunte alla libreria negli ultimi 7 giorni. New - + Nuovo Shows all tracks in the library. - + Mostra tutte le tracce nella libreria. All - + Tutto Progress - + Avanzamento @@ -3485,22 +3485,22 @@ Runs beatgrid, key, and ReplayGain detection on the selected tracks. Does not generate waveforms for the selected tracks to save disk space. - + Rileva chiave, ReplayGain e battute sulle tracce selezionate. Non genera forme d'onda per le tracce selezionate per risparmiare spazio su disco. Stop Analysis - + Ferma Analisi Analyzing %1% %2/%3 - + Analisi %1% %2/%3 Analyzing %1/%2 - + Analisi %1/%2 @@ -3508,17 +3508,17 @@ Skip - + Salta Random - + Casuale Fade - + Sfuma @@ -3578,7 +3578,7 @@ Scorciatoia: Shift+F9 Seconds - + Secondi @@ -3687,13 +3687,13 @@ suono. Shuffle - + Mischia Adds a random track from track sources (crates) to the Auto DJ queue. If no track sources are configured, the track is added from the library instead. - Aggiunge una traccia casuale dalle sorgenti traccia (ceste) alla coda di Auto DJ. + Aggiunge una traccia casuale dalle sorgenti traccia (contenitore) alla coda di Auto DJ. Se nessuna sorgenti traccia sono configurate, la traccia verrà aggiunta invece dalla libreria. @@ -3707,47 +3707,52 @@ Se nessuna sorgenti traccia sono configurate, la traccia verrà aggiunta invece Enable BPM and Beat Detection - + Abilita Riconoscimento BPM e Beat Choose between different algorithms to detect beats. - + Sceglie fra diversi algoritmi per individuare le battute. Beat Detection Preferences - + Preferenze Riconoscimento Battute When beat detection is enabled, Mixxx detects the beats per minute and beats of your tracks, automatically shows a beat-grid for them, and allows you to synchronize tracks using their beat information. - + Quando il rilevamento delle battute è abilitato, Mixxx rileva le battute per minuto delle tue tracce, +automaticamente mostra una griglia-battute, e ti permette di sincronizzare le tracce usando le informazioni collezionate. Enable fast beat detection. If activated Mixxx only analyzes the first minute of a track for beat information. This can speed up beat detection on slower computers but may result in lower quality beatgrids. - + Abilita individuazione veloce battute. +Se attivato Mixxx analizza solo il primo minuto delle tracce per ottenere informazioni sulle battute. +Questo velocizza il rilevamento dei battiti su computer lenti ma può generare griglie di battute di bassa qualità. Converts beats detected by the analyzer into a fixed-tempo beatgrid. Use this setting if your tracks have a constant tempo (e.g. most electronic music). Often results in higher quality beatgrids, but will not do well on tracks that have tempo shifts. - + Converte battute rilevate dall'analizzatore in una tabella con tempo fisso. +Usa quest'opzione se le tue tracce hanno un ritmo costante (ad esempio la maggior parte della musica elettronica). +Spesso si avrà un buon risultato con tracce a ritmo costante, non funzionerà bene su tracce che hanno cambi di ritmo. Re-analyze beatgrids imported from other DJ software - + Ri-analizza le griglia delle battute importate da altri DJ software Choose Analyzer - + Scegli Analizzatore @@ -3762,7 +3767,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Assume constant tempo (Recommended) - + Assume un tempo costante (Consigliato) @@ -3773,7 +3778,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Re-analyze beats when settings change or beat detection data is outdated - + Rianalizza battute quando le opzioni cambiano o le informazioni sulla traccia sono obsolete @@ -3781,52 +3786,52 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Controller Learning Wizard - + Wizard Addestramento Controller Learn - + Addestra Close - + Chiudi Choose Control... - + Scegli Controllo... Hints: If you're mapping a button or switch, only press or flip it once. For knobs and sliders, move the control in both directions for best results. Make sure to touch one control at a time. - + Suggerimento: Se stai mappando un bottone o un interruttore, premilo o azionalo una volta. Per manopole e sliders, muovi il controllo in entrambe le direzioni per risultati migliori. Assicurati di premere solo un controllo alla volta. Cancel - + Annulla Advanced MIDI Options - + Opzioni MIDI Avanzate Switch mode interprets all messages for the control as button presses. - + Modalità tasto interpreta tutti i messaggi per il controllo come pressioni di tasti. Switch Mode - + Modalità Tasto Ignores slider or knob movements until they are close to the internal value. This helps prevent unwanted extreme changes while mixing but can accidentally ignore intentional rapid movements. - + Ignora il movimento di manopole e slider fino a quando non sono vicini al valore interno. Questo permette di prevenire cambiamenti estremi durante i mix ma potrebbero venir ignorati movimenti intenzionalmente rapidi. @@ -3836,42 +3841,42 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Reverses the direction of the control. - + Inverti la direzione del controllo. Invert - + Inverti For jog wheels or infinite-scroll knobs. Interprets incoming messages in two's complement. - + Per jog wheels o manopole infinite-scroll. Interpreta i messaggi in arrivo nel complemento di due. Jog Wheel / Select Knob - + Jog Wheel / Select Knob Retry - + Riprova Learn Another - + Addestra Altro Done - + Fatto Click anywhere in Mixxx or choose a control to learn - + Clicca dovunque su Mixxx o seleziona un controllo da addestrare @@ -3881,47 +3886,47 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Now test it out! - + Ora provalo! If you manipulate the control, you should see the Mixxx user interface respond the way you expect. - + Se tu utilizzi il controllo, dovresti vedere l'interfaccia utente di Mixxx rispondere nel modo previsto. Not quite right? - + Non proprio così? If the mapping is not working try enabling an advanced option below and then try the control again. Or click Retry to redetect the midi control. - + Se la mappatura non sta funzionando, prova ad abilitare un opzione avanzata fra le seguenti e prova il controllo di nuovo. Oppure clicca Riprova per rilevare il controllo midi. Didn't get any midi messages. Please try again. - + Non ho ricevuto nessun messaggio midi. Riprova. Unable to detect a mapping -- please try again. Be sure to only touch one control at once. - + Impossibile rilevare una mappatura -- riprova. Assicurati di toccare solo un controllo alla volta. Successfully mapped control: - + Controllo mappato con successo: <i>Ready to learn %1</i> - + <i>Pronto ad addestrare %1</i> Learning: %1. Now move a control on your controller. - + Addestramento: %1. Ora muovi un controllo sul tuo controller. @@ -3929,7 +3934,10 @@ Often results in higher quality beatgrids, but will not do well on tracks that h This could be because you are either using an old skin and this control is no longer supported, or you clicked a control that provides visual feedback and can only be mapped to outputs like LEDs via scripts. You tried to learn: %1,%2 - + Il controllo che hai cliccato in Mixxx non è addestrabile. +Ciò potrebbe esser dovuto al fatto che tu usi una vecchia skin e questo controllo non sia più supportato, o che tu hai cliccato un controllo che fornisce feedback visuale e che può essere mappato all'outputs ad esempio LEDs attraverso scripts. + +Hai cercato di addestrare: %1,%2 @@ -3937,37 +3945,37 @@ You tried to learn: %1,%2 Developer Tools - + Strumenti Sviluppatore Controls - + Controlli Dumps all ControlObject values to a csv-file saved in the settings path (e.g. ~/.mixxx) - + Esegue il dump di tutti i valori ControlObject in un file csv con percorso salvato nelle impostazioni (esempio ~/.mixxx) Dump to csv - + Salva dump in csv Log - + Log Search - + Cerca Stats - + Statistiche @@ -3975,7 +3983,7 @@ You tried to learn: %1,%2 Hidden Tracks - + Tracce Nascoste @@ -3995,7 +4003,7 @@ You tried to learn: %1,%2 Purge - + Elimina @@ -4005,12 +4013,12 @@ You tried to learn: %1,%2 Unhide - + Mostra Ctrl+S - + Ctrl+S @@ -4018,7 +4026,7 @@ You tried to learn: %1,%2 Missing Tracks - + Tracce Mancanti @@ -4038,7 +4046,7 @@ You tried to learn: %1,%2 Purge - + Elimina @@ -4051,12 +4059,12 @@ You tried to learn: %1,%2 hh:mm - + hh:mm Minimum available tracks in Track Source - + Tracce minime disponibili nella Sorgente Tracce @@ -4066,7 +4074,7 @@ You tried to learn: %1,%2 Re-queue Tracks - + Ri-accoda Tracce @@ -4082,12 +4090,12 @@ You tried to learn: %1,%2 Uncheck, to ignore all played tracks. - + Deseleziona, per ignorare tutte le tracce suonate. Suspend track in Track Source from re-queue - + Sospende la traccia dal riaccodamento dalle Tracce Sorgenti @@ -4097,12 +4105,12 @@ You tried to learn: %1,%2 Add Random Tracks - + Aggiungi Tracce Casuali Enable random track addition to queue - + Abilita l'aggiunta tracce casuali alla coda @@ -4112,7 +4120,7 @@ You tried to learn: %1,%2 Minimum allowed tracks before addition - + Numero minimo tracce prima di consentire l'aggiunta @@ -4125,47 +4133,47 @@ You tried to learn: %1,%2 Icecast 2 - + Icecast 2 Shoutcast 1 - + Shoutcast 1 Icecast 1 - + Icecast 1 MP3 - + MP3 Ogg Vorbis - + Ogg Vorbis Opus - + Opus AAC - + AAC HE-AAC - + HE-AAC HE-AACv2 - + HE-AACv2 @@ -4194,48 +4202,49 @@ You tried to learn: %1,%2 '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server can't have the same mountpoint. - + '%1' ha lo stesso mountpoint Icecast di '%2'. +Due connessioni sorgente allo stesso server non possono avere lo stesso mountpoint. You can't create more than %1 source connections. - + Non puoi creare più di %1 connessioni sorgente. Source connection %1 - + Connessione sorgente %1 At least one source connection is required. - + Almeno una connessione sorgente è richiesta. Are you sure you want to disconnect every active source connection? - + Sei sicuro di voler disconnettere tutte le connessioni sorgente attive? Confirmation required - + Richiesta conferma Are you sure you want to delete '%1'? - + Sei sicuro di voler cancellare '%1'? Renaming '%1' - + Rinomino '%1' New name for '%1': - + Nuovo nome per '%1': @@ -4248,37 +4257,37 @@ Two source connections to the same server can't have the same mountpoint. Live Broadcasting Preferences - Preferenze Live Broadcasting + Preferenze Trasmissione Live Mixxx Icecast Testing - + Mixxx Icecast Testing Public stream - + Stream pubblico http://www.mixxx.org - + http://www.mixxx.org Stream name - + Nome stream Due to flaws in some streaming clients, updating Ogg Vorbis metadata dynamically can cause listener glitches and disconnections. Check this box to update the metadata anyway. - + A causa di falle in alcuni client per lo streaming, aggiornare i metadata Ogg Vorbis dinamicamente potrebbe causare problemi e disconnessioni agli ascoltatori. Spunta questa casella per aggiornare i metadata comunque. Live Broadcasting source connections - Sorgente connessione Live Broadcasting + Sorgente connessioni Trasmissione Live @@ -4288,7 +4297,7 @@ Two source connections to the same server can't have the same mountpoint. Create new connection - + Crea nuova connessione @@ -4298,17 +4307,17 @@ Two source connections to the same server can't have the same mountpoint. Disconnect all - + Scollega tutto Turn on Live Broadcasting when applying these settings - Attiva il live Broadcasting all'applicazione di queste impostazioni + Attiva la Trasmissione Live quando si applicano queste impostazioni Settings for %1 - + Impostazione per %1 @@ -4318,47 +4327,47 @@ Two source connections to the same server can't have the same mountpoint. ICQ - + ICQ AIM - + AIM Website - + Sito Web Live mix - + Mix live IRC - + IRC Select a source connection above to edit its settings here - + Seleziona una connessione sorgente sopra per modificarne qui le impostazioni Password storage - + Memorizzazione password Plain text - + Testo in chiaro Secure storage (OS keychain) - + Memorizzazione sicura (OS keychain) @@ -4378,7 +4387,7 @@ Two source connections to the same server can't have the same mountpoint. Encoding - + Codifica @@ -4389,7 +4398,7 @@ Two source connections to the same server can't have the same mountpoint. Format - + Formato @@ -4399,7 +4408,7 @@ Two source connections to the same server can't have the same mountpoint. Server connection - + Connessione server @@ -4409,32 +4418,32 @@ Two source connections to the same server can't have the same mountpoint. Host - + Host Login - + Login Mount - + Mount Port - + Porta Password - + Password Stream info - + Stream info @@ -4444,17 +4453,17 @@ Two source connections to the same server can't have the same mountpoint. Use static artist and title. - + Usa artista e titolo statici. Static title - + Titolo statico Static artist - + Artista statico @@ -4464,7 +4473,7 @@ Two source connections to the same server can't have the same mountpoint. Time to wait before the first reconnection attempt is made. - + Tempo di attesa prima di effettuare il primo tentativo di riconnessione. @@ -4475,32 +4484,32 @@ Two source connections to the same server can't have the same mountpoint. Wait until first attempt - + Attesa fino al primo tentativo Reconnect period - + Periodo di riconnessione Time to wait between two reconnection attempts. - + Tempo di attesa fra due tentativi di riconnessione. Limit number of reconnection attempts - + Numero limite di tentativi di riconnessione Maximum retries - + Numero massimo tentativi Reconnect if the connection to the streaming server is lost. - + Riconnetti se la connessione al streaming server è persa. @@ -4513,7 +4522,7 @@ Two source connections to the same server can't have the same mountpoint. By hotcue number - + Per numero hotcue @@ -4537,27 +4546,27 @@ Two source connections to the same server can't have the same mountpoint. Edit… - + Modifica… Track palette - + Tavolozza traccia Hotcue palette - + Tavolozza hotcue Hotcue default color - + Hotcue colore default Replace… - + Sostituisci… @@ -4565,93 +4574,94 @@ Two source connections to the same server can't have the same mountpoint. Apply device settings? - + Applico impostazioni periferica? Your settings must be applied before starting the learning wizard. Apply settings and continue? - + La configurazione deve essere applicata prima di iniziare l'auto apprendimento. +Applicare la configurazione e continuare? None - + Nessuno/a %1 by %2 - + %1 by %2 No Name - + Nessun Nome No Description - + Nessuna Descrizione No Author - + Nessun Autore No Preset - + Nessun Preset Mapping has been edited - + La mappatura è stata modificata Always overwrite during this session - + Sovrascrivi sempre durante questa sessione Save As - + Salva come Overwrite - + Sovrascrivi Save user mapping - + Salva mappatura utente Enter the name for saving the mapping to the user folder. - + Digita il nome per salvare la mappatura nella cartella utente. Saving mapping failed - + Salvataggio mappatura fallito A mapping cannot have a blank name and may not contain special characters. - + Una mappatura non può avere un nome nullo e non deve contenere caratteri speciali. A mapping file with that name already exists. - + Un file mappatura con lo stesso nome esiste già. missing - + mancante @@ -4661,42 +4671,42 @@ Apply settings and continue? Do you want to save the changes? - + Vuoi salvare le modifiche? Mapping already exists. - + La mappatura esiste già. <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + <b>%1</b> esiste già nella cartella mappatura dell'utente.<br>Sovrascrivo o salvo con un nuovo nome? Troubleshooting - + Risoluzione dei problemi Clear Input Mappings - + Elimina Mappature di Input Are you sure you want to clear all input mappings? - + Sei sicuro di voler eliminare tutte le mappature di input? Clear Output Mappings - + Elimina Mappature di Output Are you sure you want to clear all output mappings? - + Sei sicuro di voler eliminare tutte le mappature di output? @@ -4704,12 +4714,12 @@ Apply settings and continue? (device category goes here) - + (la categoria del dispositivo va qui) Controller Name - + Nome controller @@ -4719,23 +4729,23 @@ Apply settings and continue? Description: - + Descrizione: Support: - + Supporto: Input Mappings - + Mappature Input Add - + Aggiungi @@ -4746,58 +4756,58 @@ Apply settings and continue? Click to start the Controller Learning wizard. - + Clicca per iniziare l'Addestramento Guidato del Supporto Controller Preferences - + Preferenze Controller Controller Setup - + Impostazione Controller Load Mapping: - + Carica Mappature: Mapping Info - + Info Mappatura Author: - + Autore: Name: - + Nome: Learning Wizard (MIDI Only) - + Procedura guidata di apprendimento (Solo MIDI) Mapping Files: - + Files Mappatura: Clear All - + Pulisci Tutto Output Mappings - + Mappature Output @@ -4805,22 +4815,22 @@ Apply settings and continue? Mixxx uses "mappings" to connect messages from your controller to controls in Mixxx. If you do not see a mapping for your controller in the "Load Mapping" menu when you click on your controller on the left sidebar, you may be able to download one online from the %1. Place the XML (.xml) and Javascript (.js) file(s) in the "User Mapping Folder" then restart Mixxx. If you download a mapping in a ZIP file, extract the XML and Javascript file(s) from the ZIP file to your "User Mapping Folder" then restart Mixxx. - + Mixxx usa le "mappature" per collegare messaggi dal tuo controller ai controlli presenti in Mixxx. Se non trovi una mappatura per il tuo controller nel menu "Carica Mappature" quando clicchi sul tuo controller nella barra laterale di sinistra, puoi scaricarne uno online da %1. Copia i file(s) XML (.xml) e Javascript (.js) nella cartella di "Cartella Mappature Utente" e riavvia Mixxx. Se scarichi una mappatura in formato ZIP, estrai dallo Zip i file(s) XML e Javascript nella cartella "v" e poi riavvia Mixxx. Mixxx DJ Hardware Guide - + Mixxx DJ Guida Hardware MIDI Mapping File Format - + Formato File Mappatura MIDI MIDI Scripting with Javascript - + MIDI Scripting con Javascript @@ -4828,42 +4838,42 @@ Apply settings and continue? Controller Preferences - + Preferenze Controller Controllers - + Controllers Mixxx did not detect any controllers. If you connected the controller while Mixxx was running you must restart Mixxx first. - + Mixxx non ha rilevato nessun controller. Se hai collegato il controller mentre Mixx era in esecuzione, devi prima riavviare Mixxx. Resources - + Risorse Controllers are physical devices that send MIDI or HID signals to your computer over a USB connection. These allow you to control Mixxx in a more hands-on way than a keyboard and mouse. Attached controllers that Mixxx recognizes are shown in the "Controllers" section in the sidebar. - + I controller sono dispositivi fisici che inviano segnali MIDI o HID al tuo computer tramite una connessione USB. Questi ti permettono di controllare Mixxx in modo più pratico rispetto a tastiera e mouse. I controller collegati che vengono riconosciuti da Mixxx sono mostrati nella sezione "Controllers" nella barra laterale. Mappings - + Mappature Open User Mapping Folder - + Apri Cartella Mappatura Utente You can create your own mapping by using the MIDI Learning Wizard when you select your controller in the sidebar. You can edit mappings by selecting the "Input Mappings" and "Output Mappings" tabs in the preference page for your controller. See the Resources below for more details on making mappings. - + Puoi creare la tua mappatura personalizzata usando la Procedura guidata di addestramento MIDI quando selezioni il tuo controller nella sidebar. Puoi modificare le mappature selezionando i tab "Mappature di Input" e "Mappature di Output" nella pagina delle preferenze per il tuo controller. Controlla per maggiori dettagli le risorse seguenti riguardo la creazione delle mappature. @@ -4871,17 +4881,17 @@ Apply settings and continue? Skin - + Skin Tool tips - + Suggerimenti Select from different color schemes of a skin if available. - + Seleziona fra differenti schema colori di un tema se disponibili. @@ -4891,67 +4901,67 @@ Apply settings and continue? Locales determine country and language specific settings. - + I locales determinano paese e impostazioni specifiche della lingua. Locale - + Locale Interface Preferences - + Preferenze Interfaccia HiDPI / Retina scaling - + Scalatura HiDPI / Retina Change the size of text, buttons, and other items. - + Modifica la dimensione del testo, bottoni, ed altri elementi. Adopt scale factor from the operating system - + Adotta il fattore di scala dal sistema operativo Auto Scaling - + Auto Scalatura Screen saver - + Salvaschermo Start in full-screen mode - + Avvia a schermo intero Full-screen mode - + Modalità schermo intero Off - + Off Library only - + Solo libreria Library and Skin - + Libreria e Skin @@ -4959,12 +4969,12 @@ Apply settings and continue? Crossfader Preferences - + Preferenze Crossfader Crossfader Curve - + Curva Crossfader @@ -4974,32 +4984,32 @@ Apply settings and continue? Constant power - + Potenza costante Mixing - + Mixaggio Scratching - + Scratching Linear - + Lineare Logarithmic - + Logaritmico Reverse crossfader (Hamster Style) - + Crossfader inverso (Hamster style) @@ -5007,117 +5017,117 @@ Apply settings and continue? Mixxx mode - + Modalità Mixxx Mixxx mode (no blinking) - + Modo Mixxx (nessun lampeggio) Pioneer mode - + Modalità Pioneer Denon mode - + Modalità Denon Numark mode - + Modalità Numark CUP mode - + Modalità Cue mm:ss%1zz - Traditional - + mm:ss%1zz - Tradizionale mm:ss - Traditional (Coarse) - + mm:ss - Tradizionale (Grossolano) s%1zz - Seconds - + s%1zz - Secondi sss%1zz - Seconds (Long) - + sss%1zz - Secondi (Long) s%1sss%2zz - Kiloseconds - + s%1sss%2zz - Kilosecondi Intro start - + Intro inizio Main cue - + Main cue First sound (skip silence) - + Primo suono (salta silenzio) Beginning of track - + Inizio della traccia 4% - + 4% 6% (semitone) - + 6% (semitono) 8% (Technics SL-1210) - + 8% (Technics SL-1210) 10% - + 10% 16% - + 16% 24% - + 24% 50% - + 50% 90% - + 90% @@ -5125,17 +5135,17 @@ Apply settings and continue? Deck Preferences - + Preferenze Deck Deck options - + Opzioni Deck Cue mode - + Modo Cue @@ -5158,32 +5168,50 @@ CUP mode: - Cue button while pause not at cue point = set cue point and play after release - Cue button while playing = go to cue point and play after release - + Modo Mixxx: +- Pulsante Cue mentra pausa al cue point = anteprima +- Pulsante Cue mentre pausa non al cue point = fissa cue point +- Pulsante Cue mentre riproduce = pausa al cue point +Modo Mixxx (senza lampeggio): +- Come il Modo Mixxx ma senza indicatori lampeggianti +Modo Pioneer: +- Come il modo Mixxx con un tasto play lampeggiante +Modo Denon: +- Pulsante Cue al cue point = anteprima +- Pulsante Cue non al cue point = pausa al cue point +- Play = fissa il cue point +Modo Numark: +- Come Modo Denon, ma senza lampeggio sul pulsante play +Modo CUP: +- Pulsante Cue mentre pausa al cue point = riproduce al rilascio +- Pulsante Cue mentre pausa non al cue point = imposta il cue point e riproduce al rilascio +- Pulsante Cue mentre riproduce = và al cue point e riproduce al rilascio + Track time display - + Mostra tempo traccia Elapsed - + Trascorso Remaining - + Rimanente Elapsed and Remaining - + Trascorso e Rimanente Playing track protection - + Protezione traccia in riproduzione @@ -5193,12 +5221,12 @@ CUP mode: Time Format - + Formato Tempo Intro start - + Intro inizio @@ -5216,38 +5244,39 @@ Se questa opzione è disabilitata, il punto di partenza dell'intro viene po Set intro start to main cue when analyzing tracks - + Imposta inizio intro al main cue quando analizza tracce Track load point - + Punto caricamento traccia Clone deck - + Clona deck Create a playing clone of the first playing deck by double-tapping a Load button on a controller or keyboard. You can always drag-and-drop tracks on screen to clone a deck. - + Crea una copia clonata del primo deck in riproduzione premendo due volte sul bottone Carica su un controllo o tastiera. +Puoi sempre trascinare tracce sullo schermo per clonare un deck. Double-press Load button to clone playing track - + Premi due volte il Pulsante Carica per clonare la traccia in riproduzione Speed (Tempo) and Key (Pitch) options - + Opzioni Velocità (tempo) e Chiave (Pitch) Permanent rate change when left-clicking - + Cambio rate permanente al click-sinistro @@ -5260,72 +5289,72 @@ You can always drag-and-drop tracks on screen to clone a deck. Permanent rate change when right-clicking - + Cambio di rate permanente al click-destro Reset on track load - + Resetta al caricamento traccia Current key - + Chiave Corrente Temporary rate change when right-clicking - + Cambio di rate temporaneo al click-destro Permanent - + Permanente Value in milliseconds - + Valore in millisecondi Temporary - + Temporaneo Keylock mode - + Modo keylock Ramping sensitivity - + Sensibilità scivolamento Pitch bend behavior - + Comportamento pitch bend Original key - + Chiave Originale Temporary rate change when left-clicking - + Cambia rate temporaneamente al click-sinistro Speed/Tempo - + Velocità/Tempo Key/Pitch - + Chiave/Pitch @@ -5335,27 +5364,27 @@ You can always drag-and-drop tracks on screen to clone a deck. Coarse - + Grossolano Fine - + Fine Make the speed sliders work like those on DJ turntables and CDJs where moving downward increases the speed - + Rende il funzionamento del cursore della velocità uguale a quelli che si trovano sui giradischi da DJ e sui CDJ, nei quali muovendo il cursore verso il basso la velocità aumenta Down increases speed - + Giù Diminuisce Velocità Slider range - + Intervallo cursore @@ -5365,7 +5394,7 @@ You can always drag-and-drop tracks on screen to clone a deck. Abrupt jump - + Salto improvviso @@ -5375,7 +5404,7 @@ You can always drag-and-drop tracks on screen to clone a deck. Smooth ramping - + Scivolamento morbido @@ -5385,12 +5414,12 @@ You can always drag-and-drop tracks on screen to clone a deck. Reset key - + Resetta chiave Keep key - + Tieni chiave @@ -5403,7 +5432,7 @@ You can always drag-and-drop tracks on screen to clone a deck. Reset equalizers on track load - + Resetta equalizzatori al caricamento traccia @@ -5413,37 +5442,37 @@ You can always drag-and-drop tracks on screen to clone a deck. Equalizer Rack - + Rack equalizzatore Only allow EQ knobs to control EQ-specific effects - + Permette solo l'uso delle manopole EQ per controllare effetti EQ-specifici Uncheck to allow any effect to be loaded into the EQ knobs. - + Disabilitare per permettere che qualsiasi effetto sia caricato nelle manopole EQ. Use the same EQ filter for all decks - + Usa lo stesso filtro EQ per tutti i decks Uncheck to allow different decks to use different EQ effects. - + Disabilitare per permettere che differenti decks usino differenti effetti EQ. Equalizer Plugin - + Plugin Equalizzatore Quick Effect - Effetto Veloce + Effetto Rapido @@ -5454,48 +5483,48 @@ You can always drag-and-drop tracks on screen to clone a deck. 16 Hz - + 16 Hz Master EQ - + EQ Master Reset Parameter - + Resetta Parametri Miscellaneous - + Miscellanea Resets the deck gain to unity when loading a track. - + Resetta il guadagno del deck alla singola unità al caricamento di una traccia. Reset gain on track load - + Resetta guadagno al caricamento traccia Bypass EQ effect processing - + Bypassa processo effetti EQ When checked, EQs are not processed, improving performance on slower computers. - + Quando abilitato, EQs non sono elaborati, aumentando così le prestazioni sui computer più lenti. 20.05 kHz - + 20.05 kHz @@ -5513,17 +5542,17 @@ You can always drag-and-drop tracks on screen to clone a deck. Effect load behavior - + Comportamento caricamento effetto Keep metaknob position - + Tiene posizione metaknob Reset metaknob to effect default - + Resetta metaknob all'effetto predefinito @@ -5538,27 +5567,27 @@ You can always drag-and-drop tracks on screen to clone a deck. Version: - + Versione: Description: - + Descrizione: Author: - + Autore: Name: - + Nome: Type: - + Tipo: @@ -5566,37 +5595,37 @@ You can always drag-and-drop tracks on screen to clone a deck. The minimum size of the selected skin is bigger than your screen resolution. - + La dimensione minore della skin selezionata è maggiore della risoluzione del tuo schermo. Allow screensaver to run - + Permette di avviare il salvaschermo Prevent screensaver from running - + Evita l'avvio del salvaschermo Prevent screensaver while playing - + Evita l'avvio del salvaschermo durante la riproduzione This skin does not support color schemes - + Questa skin non supporta gli schemi di colore Information - + Informazione Mixxx must be restarted before the new locale setting will take effect. - + Mixxx deve essere prima riavviato in modo che le nuove impostazioni di locale abbiano effetto. @@ -5604,28 +5633,28 @@ You can always drag-and-drop tracks on screen to clone a deck. Key Notation Format Settings - + Impostazioni Formato Notazione Chiave When key detection is enabled, Mixxx detects the musical key of your tracks and allows you to pitch adjust them for harmonic mixing. - + Quando il rilevamento della chiave è abilitato, Mixxx rileva la chiave musicale delle tracce e consente di regolare l'intonazione per la miscelazione armonica. Enable Key Detection - + Abilita Rilevamento Chiave Choose Analyzer - + Scegli Analizzatore Choose between different algorithms to detect keys. - + Scegli tra diversi algoritmi per rilevare le chiavi. @@ -5640,17 +5669,17 @@ and allows you to pitch adjust them for harmonic mixing. Re-analyze keys when settings change or 3rd-party keys are present - + Rianalizza le chiavi quando cambiano le impostazioni o quando sono presenti chiavi di terze parti Key Notation - + Notazione Chiave Lancelot - + Lancelot @@ -5660,142 +5689,142 @@ and allows you to pitch adjust them for harmonic mixing. OpenKey - + OpenKey OpenKey/Traditional - + OpenKey/Traditional Traditional - + Tradizionale Custom - + Personalizzato A - + La Bb - + SiBem B - + Si C - + Do Db - + ReBem D - + Re Eb - + MiBem E - + Mi F - + Fa F# - + FaDie G - + Sol Ab - + LaBem Am - + LaMin Bbm - + SiBemMin Bm - + SiMin Cm - + DoMin C#m - + DoBemMin Dm - + ReMin Ebm - + MiBemMin Em - + MiMin Fm - + FaMin F#m - + FaBemMin Gm - + SolMin G#m - + SolBemMin @@ -5808,7 +5837,7 @@ and allows you to pitch adjust them for harmonic mixing. Discovered LV2 effects - + Effetti LV2 trovati @@ -5841,17 +5870,17 @@ and allows you to pitch adjust them for harmonic mixing. Mixxx will no longer watch this directory for new tracks. What would you like to do with the tracks from this directory and subdirectories?<ul><li>Hide all tracks from this directory and subdirectories.</li><li>Delete all metadata for these tracks from Mixxx permanently.</li><li>Leave the tracks unchanged in your library.</li></ul>Hiding tracks saves their metadata in case you re-add them in the future. - + Mixxx non monitorerà più questa directory alla ricerca di nuove tracce. Cosa intendi fare con le tracce di questa directory e subdirectory?<ul><li>Nascondi tutte le tracce da questa directory e subdirectory</li><li>Cancella tutti i metadata di queste tracce da Mixxx permanentemente.</li><li>Lascia le tracce inalterate nella tua libreria</li></ul>Se nascondi le tracce, i loro metadata saranno conservati nel caso tu dovessi riaggiungerle in futuro Metadata means all track details (artist, title, playcount, etc.) as well as beatgrids, hotcues, and loops. This choice only affects the Mixxx library. No files on disk will be changed or deleted. - + Metadata specifica tutti i dati di dettaglio della traccia (artista, titolo, etc.) e anche beatgrids, hotcues, e loop. Questa scelta riguarda solo la libreria Mixxx. Non verranno modificati o cancellati i files sul disco. Hide Tracks - + Nascondi Tracce @@ -5861,17 +5890,17 @@ and allows you to pitch adjust them for harmonic mixing. Leave Tracks Unchanged - + Lascia Tracce senza cambiamenti Relink music directory to new location - + Collega la cartella musica alla nuova posizione Select Library Font - + Seleziona Libreria Font @@ -5884,12 +5913,12 @@ and allows you to pitch adjust them for harmonic mixing. Music Directories: - + Cartelle Musica: If removed, Mixxx will no longer watch this directory and its subdirectories for new tracks. - + Se rimossa, Mixxx non monitorerà più questa cartella e le sue sottocartelle per rilevare nuove tracce. @@ -5899,28 +5928,28 @@ and allows you to pitch adjust them for harmonic mixing. Add a directory where your music is stored. Mixxx will watch this directory and its subdirectories for new tracks. - + Aggiunge una cartella nella quale la tua musica è memorizzata. Mixxx monitorerà questa cartella e le sue sottocartelle per rilevare nuove tracce. Add - + Aggiungi If an existing music directory is moved, Mixxx doesn't know where to find the audio files in it. Choose Relink to select the music directory in its new location. <br/> This will re-establish the links to the audio files in the Mixxx library. - + Se una cartella viene spostata, Mixxx non saprà più dove trovare i files audio. Scegli Ricollega per selezionare la nuova posizione. <br/> Ciò ristabilirà il collegamento ai files audio nella libreria Mixxx. Relink This will re-establish the links to the audio files in the Mixxx database if you move an music directory to a new location. - + Ricollega Audio File Formats - + Formati File Audio @@ -5930,72 +5959,72 @@ and allows you to pitch adjust them for harmonic mixing. Write Serato Metadata to files (experimental) - + Scrivi Metadati Serato su files (sperimentale) Miscellaneous - + Miscellanea Library Font: - + Font Libreria: Settings Folder - + Cartella Impostazioni The Mixxx settings folder contains the library database, various configuration files, log files, track analysis data, as well as custom controller mappings. - + La cartella impostazioni Mixxx contiene il database della libreria, vari files di configurazione, files log, dati di analisi traccia, così come i mappings personalizzati del controller. Edit those files only if you know what you are doing and only while Mixxx is not running. - + Modificare quei files solo se sapete cosa state facendo e solo quando Mixxx non è attivo. Open Mixxx Settings Folder - + Apre Cartella Impostazioni Mixxx Library Row Height: - + Altezza Riga Libreria: Rescan library on start-up - + Riscansiona libreria all'avvio Use relative paths for playlist export if possible - + Usa sentiero relativo per l'export della playlist se possibile ... - + ... px - + px Edit metadata after clicking selected track - + Modifica metadati dopo il click sulla traccia selezionata Search-as-you-type timeout: - + Timeout di ricerca alla digitazione: @@ -6010,7 +6039,7 @@ and allows you to pitch adjust them for harmonic mixing. External Libraries - + Librerie Esterne @@ -6020,63 +6049,63 @@ and allows you to pitch adjust them for harmonic mixing. Show Rhythmbox Library - + Mostra Libreria Rhythmbox Automatically write modified track metadata from the library into file tags - + Scrive automaticamente i metadati della traccia modificati dalla libreria nei tags del file Track Double-Click Action Sets default action when double-clicking a track in the library. - + Azione doppio-click Traccia Add track to Auto DJ queue (bottom) - + Aggiunge traccia alla coda Auto DJ (in fondo) Add track to Auto DJ queue (top) - + Aggiunge traccia alla coda Auto DJ (in cima) Ignore - + Ignora Show Banshee Library - + Mostra Libreria Banshee Show iTunes Library - + Mostra Libreria iTunes Show Traktor Library - + Mostra Libreria Traktor Show Rekordbox Library - + Mostra Libreria Rekordbox Show Serato Library - + Mostra Libreria Serato All external libraries shown are write protected. - + Tutte le librerie esterne mostrate sono protette in scrittura. @@ -6084,51 +6113,51 @@ and allows you to pitch adjust them for harmonic mixing. Modplug Preferences - + Preferenze Modplug Maximum Number of Mixing Channels: - + Numero Massimo di Canali di Mixing: Show Advanced Settings - + Mostra Impostazioni Avanzate Low - + Basso Reverb Delay: - + Ritardo Riverbero: High - + Alto None - + Nessuno/a Bass Expansion - + Espansione Bassi Bass Range: - + Intervallo Bassi: @@ -6138,67 +6167,67 @@ and allows you to pitch adjust them for harmonic mixing. Front/Rear Delay: - + Ritardo Fronte/Retro: Pro-Logic Surround - + Pro-Logic Surround Full - + Full Reverb - + Riverbero Stereo separation - + Separazione stereo 10Hz - + 10Hz 10ms - + 10ms 256 - + 256 5ms - + 5ms 100Hz - + 100Hz 250ms - + 250ms 50ms - + 50ms Noise reduction - + Riduzione rumore @@ -6208,57 +6237,57 @@ and allows you to pitch adjust them for harmonic mixing. Module files are decoded at once and kept in RAM to allow for seeking and smooth operation in Mixxx. About 10MB of RAM are required for 1 minute of audio. - + I file dei moduli vengono decodificati in una sola volta e mantenuti in RAM per consentire la ricerca e il funzionamento regolare in Mixxx. Circa 10MB di RAM sono necessari per 1 minuto di audio. Decoding options for libmodplug, a software library for loading and rendering module files (MOD music, tracker music). - + Opzioni di decodifica per libmodplug, una libreria software per il caricamento e il rendering dei file dei moduli (musica MOD, musica tracker). Decoding Options - + Opzioni Decodifica Resampling mode (interpolation) - + Modo Resampling (interpolazione) Enable oversampling - + Abilita oversampling Nearest (very fast, extremely bad quality) - + Più vicino (molto veloce, di pessima qualità) Linear (fast, good quality) - + Lineare (veloce, buona qualità) Cubic Spline (high quality) - + Cubic Spline (alta qualità) 8-tap FIR (extremely high quality) - + 8-tap FIR (qualità estremamente alta) Memory limit for single track (MB) - + Limite memoria per singola traccia (MB) All settings take effect on next track load. Currently loaded tracks are not affected. For an explanation of these settings, see the %1 - + Tutte le impostazioni hanno effetto al caricamento della prossima traccia. Le modifiche non avranno effetto per le tracce correntemente caricate. Per una spiegazione di queste impostazioni, vedere il %1 @@ -6266,33 +6295,33 @@ and allows you to pitch adjust them for harmonic mixing. Choose recordings directory - + Scelta cartella registrazioni Recordings directory invalid - + Cartella registrazioni non valida Recordings directory must be set to an existing directory. - + La cartella registrazioni deve essere impostata su una cartella esistente. Recordings directory must be set to a directory. - + La cartella registrazioni deve essere impostata su una cartella. Recordings directory not writable - + La cartella registrazioni non è scrivibile You do not have write access to %1. Choose a recordings directory you have write access to. - + Non hai accesso in scrittura a %1. Scegli una cartella registrazioni dove hai accesso in scrittura. @@ -6300,12 +6329,12 @@ and allows you to pitch adjust them for harmonic mixing. Recording Preferences - + Preferenze Registrazioni Browse... - + Scorri... @@ -6316,7 +6345,7 @@ and allows you to pitch adjust them for harmonic mixing. Tags - + Tags @@ -6326,7 +6355,7 @@ and allows you to pitch adjust them for harmonic mixing. Author - + Autore @@ -6336,42 +6365,42 @@ and allows you to pitch adjust them for harmonic mixing. Output File Format - + Formato audio Output Compression - + Compressione Lossy - + Con perdita Recording Files - + Files Registrazioni Directory: - + Cartella: Compression Level - + Livello Compressione Lossless - + Senza perdita Create a CUE file - + Crea un file CUE @@ -6397,27 +6426,27 @@ and allows you to pitch adjust them for harmonic mixing. ReplayGain Loudness Normalization - + Normalizzazione ReplayGain Loudness Apply loudness normalization to loaded tracks. - + Applica la normalizzazione del loudness alle tracce caricate. Apply ReplayGain - + Applica ReplayGain -30 LUFS - + -30 LUFS -6 LUFS - + -6 LUFS @@ -6427,7 +6456,7 @@ and allows you to pitch adjust them for harmonic mixing. Initial boost without ReplayGain data - + Aumento iniziale senza dati ReplayGain @@ -6437,7 +6466,7 @@ and allows you to pitch adjust them for harmonic mixing. Target loudness - + Destinazione Loudness @@ -6452,12 +6481,12 @@ and allows you to pitch adjust them for harmonic mixing. ReplayGain 2.0 (ITU-R BS.1770) - + ReplayGain 2.0 (ITU-R BS.1770) ReplayGain 1.0 - + ReplayGain 1.0 @@ -6474,17 +6503,18 @@ and allows you to pitch adjust them for harmonic mixing. ReplayGain targets a reference loudness of -18 LUFS (Loudness Units relative to Full Scale). You may increase it if you find Mixxx is too quiet or reduce it if you find that your tracks are clipping. You may also want to decrease the volume of unanalyzed tracks if you find they are often louder than ReplayGained tracks. For podcasting a loudness of -16 LUFS is recommended. The loudness target is approximate and assumes track pregain and master output level are unchanged. - + ReplayGain utilizza un loudness di riferimento di -18 LUFS (Loudness Units relative to Full Scale). Dovresti incrementare se ritieni che Mixxx suona silenziosamente oppure ridurlo se le tracce suonano distorte - clipping -. Potresti anche aver bisogno di diminuire il volume delle tracce non analizzate se ritieni che sono di volume troppo alto delle tracce su cui hai applicato ReplayGain. Per il podcasting è consigliato un loudness di -16 LUFS. +Il loudness finale è approssimativo e presume che pregain e master livello master output sia lasciato inalterato. When an unanalyzed track is playing, Mixxx will avoid an abrupt volume change by not applying a newly calculated ReplayGain value. - + Quando una traccia non analizzata è in riproduzione, Mixxx eviterà un brusco cambiamento di volume non applicando un valore di Replaygain appena calcolato. +12 dB - + +12 dB @@ -6517,22 +6547,22 @@ The loudness target is approximate and assumes track pregain and master output l Soundcard Clock - + Clock Scheda Audio Network Clock - + Clock Rete Master output only - + Solo uscita master Master and booth outputs - + Uscite Master e booth @@ -6562,33 +6592,33 @@ The loudness target is approximate and assumes track pregain and master output l To enable Realtime scheduling (currently disabled), see the %1. - + Per abilitare lo scheduling Realtime (attualmente disabilitato), vedere il %1. The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Le %1 liste schede audio e controllori che puoi voler considerare per l'uso con Mixxx. Mixxx DJ Hardware Guide - + Mixxx DJ Guida Hardware Microphone inputs are out of time in the record & broadcast signal compared to what you hear. - + Gli inputs microfonici sono fuori tempo nel segnale di registrazione & trasmissione rispetto a quanto senti. Measure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Misura la latenza di round trip e la impone per la Compensazione Latenza Microfono per allineare la temporizzazione microfono. Refer to the Mixxx User Manual for details. - + Riferirsi al Manuale Utente Mixxx per dettagli. @@ -6598,12 +6628,12 @@ The loudness target is approximate and assumes track pregain and master output l Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Rimisura la latenza di round trip e la impone per la Compensazione Latenza Microfono per allineare la temporizzazione microfono. Realtime scheduling is enabled. - + Realtime scheduling è abilitato. @@ -6626,12 +6656,12 @@ The loudness target is approximate and assumes track pregain and master output l Sound API - + API audio Sample Rate - + Frequenza Campionamento @@ -6641,27 +6671,27 @@ The loudness target is approximate and assumes track pregain and master output l Engine Clock - + Motore Clock Use soundcard clock for live audience setups and lowest latency.<br>Use network clock for broadcasting without a live audience. - + Usa il clock della scheda audio per le impostazioni dell'ascolto dal vivo e la più bassa latenza.<br>Usa il clock di rete per trasmissione senza ascolto dal vivo. Microphone Monitor Mode - + Modo Monitor Microfono Microphone Latency Compensation - + Compensazione Latenza Microfono Headphone Delay - Ritardo Cuffie + Ritardo Cuffia @@ -6675,7 +6705,7 @@ The loudness target is approximate and assumes track pregain and master output l Booth Delay - + Ritardo Booth @@ -6685,7 +6715,7 @@ The loudness target is approximate and assumes track pregain and master output l Buffer Underflow Count - + Conteggio Buffer Underflow @@ -6695,62 +6725,62 @@ The loudness target is approximate and assumes track pregain and master output l Master Delay - + Ritardo Master Keylock/Pitch-Bending Engine - + Keylock/Pitch-Bending Engine Multi-Soundcard Synchronization - + Sincronizzazione Schede Audio Multiple Master Mix - + Mix Master Master Output Mode - + Modo Master output Output - + Uscita Input - + Ingresso System Reported Latency - + Latenza Sistema Riscontrata Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. - + Aumenta il tuo buffer audio se il contatore di underflow aumenta oppure se senti dei salti o rumori durante la riproduzione. Hints and Diagnostics - Suggerimenti e diagnostica + Suggerimenti e Diagnostica Downsize your audio buffer to improve Mixxx's responsiveness. - + Riduci il tuo buffer audio per aumentare la responsività di Mixxx Query Devices - + Interroga Dispositivi @@ -6769,12 +6799,12 @@ The loudness target is approximate and assumes track pregain and master output l Sound Item Preferences Constructs new sound items inside the Sound Hardware Preferences, representing an AudioPath and SoundDevice - + Preferenze Dispositivi Audio Type (#) - + Tipo (#) @@ -6782,7 +6812,7 @@ The loudness target is approximate and assumes track pregain and master output l Input - + Ingresso @@ -6792,7 +6822,7 @@ The loudness target is approximate and assumes track pregain and master output l Show Signal Quality in Skin - + Mostra Qualità Segnale nella Skin @@ -6802,7 +6832,7 @@ The loudness target is approximate and assumes track pregain and master output l Turntable Input Signal Boost - + Incremento Entrata Segnale Giradischi @@ -6817,7 +6847,7 @@ The loudness target is approximate and assumes track pregain and master output l Vinyl Type - + Tipo Vinile @@ -6827,22 +6857,22 @@ The loudness target is approximate and assumes track pregain and master output l Deck 1 - + Deck 1 Deck 2 - + Deck 2 Deck 3 - + Deck 3 Deck 4 - + Deck 4 @@ -6867,7 +6897,7 @@ The loudness target is approximate and assumes track pregain and master output l Select sound devices for Vinyl Control in the Sound Hardware pane. - Seleziona i dispositivi per Controllo Vinile nel pannello Suono Hardware. + Seleziona i dispositivi per Controllo Vinile nel pannello Hardware Suono. @@ -6880,7 +6910,7 @@ The loudness target is approximate and assumes track pregain and master output l HSV - + HSV @@ -6895,7 +6925,7 @@ The loudness target is approximate and assumes track pregain and master output l dropped frames - + frammenti persi @@ -6913,7 +6943,7 @@ The loudness target is approximate and assumes track pregain and master output l Frame rate - + Frame rate @@ -6928,28 +6958,28 @@ The loudness target is approximate and assumes track pregain and master output l Average frame rate - + Frame rate medio Visual gain - + Guadagno Visuale Default zoom level Waveform zoom - Livello di zoom predefinito + Livello zoom predefinito Displays the actual frame rate. - + Mostra il frame rate corrente. Visual gain of the middle frequencies - + Visione guadagno delle frequenze medie @@ -6974,32 +7004,32 @@ The loudness target is approximate and assumes track pregain and master output l Low - + Bassi Middle - + Medi Global - + Globale Visual gain of the high frequencies - + Guadagno visuale delle frequenze alte Visual gain of the low frequencies - + Guadagno visuale delle frequenze basse High - + Alti @@ -7009,7 +7039,7 @@ The loudness target is approximate and assumes track pregain and master output l Global visual gain - + Guadagno visuale globale @@ -7032,7 +7062,7 @@ Select from different types of displays for the waveform, which differ primarily fps - + fps @@ -7047,7 +7077,7 @@ Select from different types of displays for the waveform, which differ primarily Caching - + Caching @@ -7062,17 +7092,17 @@ Select from different types of displays for the waveform, which differ primarily Generate waveforms when analyzing library - Genera forme d'onda quando analizza la libreria + Genera le forme d'onda quando si analizza la libreria Beat grid opacity - + Opacità griglia battute Set amount of opacity on beat grid lines. - + Imposta l'opacità delle linee della griglia battute. @@ -7082,7 +7112,7 @@ Select from different types of displays for the waveform, which differ primarily Play marker position - + Marcatore posizione riproduzione @@ -7092,7 +7122,7 @@ Select from different types of displays for the waveform, which differ primarily Clear Cached Waveforms - Cancella forma d'onda memorizzate + Cancella Forme d'onda Memorizzate @@ -7105,7 +7135,7 @@ Select from different types of displays for the waveform, which differ primarily Controllers - + Controllers @@ -7155,7 +7185,7 @@ Select from different types of displays for the waveform, which differ primarily LV2 Plugins - + LV2 Plugins @@ -7165,12 +7195,12 @@ Select from different types of displays for the waveform, which differ primarily Beat Detection - + Rilevamento Battuta Key Detection - + Rilevamento Chiave @@ -7185,7 +7215,7 @@ Select from different types of displays for the waveform, which differ primarily Live Broadcasting - + Trasmissione Live @@ -7240,17 +7270,17 @@ Select from different types of displays for the waveform, which differ primarily Replace Hotcue Color - + Sostituisci Colore Hotcue Replace cue color if … - + Sostuisci colore cue se ... Hotcue index - + Indice Hotcue @@ -7267,47 +7297,47 @@ Select from different types of displays for the waveform, which differ primarily Current cue color - + Colore attuale cue If you don't specify any conditions, the colors of all cues in the library will be replaced. - + Se non specifichi nessuna condizione, i colori di tutte le cues nella libreria verranno sostituiti. … by: - + … da: New cue color - + Nuovo colore cue Selecting database rows... - + Selezione righe database... No colors changed! - + Nessun colore modificato! No cues matched the specified criteria. - + Nessuna cues soddisfa il criterio specificato. Confirm Color Replacement - + Conferma Sostituzione Colore The colors of %1 cues in %2 tracks will be replaced. This change cannot be undone! Are you sure? - + I colori di %1 cues in %2 tracce verranno sostituiti. Questa modifica non potrà essere annullata! Sei sicuro? @@ -7320,126 +7350,126 @@ Select from different types of displays for the waveform, which differ primarily Select best possible match - + Seleziona la miglior corrispondenza possibile - - + + Track Traccia - - + + Year Anno - + Title Titolo - - + + Artist Artista - - + + Album Album - + Album Artist Album Artista - + Fetching track data from the MusicBrainz database Recupero dati traccia dal database MusicBrainz - + Mixxx could not find this track in the MusicBrainz database. Mixxx non trova questa traccia nel database MusicBrainz. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Ottieni chiave API - + Submit Submits audio fingerprints to the MusicBrainz database. - + Invia - + New Column Nuova Colonna - + New Item Nuovo Elemento - + &Previous &Precedente - + &Next - + &Prossimo - + &Apply &Applica - + &Close &Chiudi - + Status: %1 Stato: %1 - + HTTP Status: %1 Stato HTTP: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx non può connettersi a %1 per un motivo sconosciuto. - + Mixxx can't connect to %1. Mixxx non può connettersi a %1. - + Original tags Tag Originali - + Suggested tags Tag suggeriti @@ -7464,7 +7494,7 @@ Select from different types of displays for the waveform, which differ primarily &Cancel - + &Annulla @@ -7472,7 +7502,7 @@ Select from different types of displays for the waveform, which differ primarily Track Editor - + Editor Traccia @@ -7482,7 +7512,7 @@ Select from different types of displays for the waveform, which differ primarily Filetype: - + Tipo di file: @@ -7492,7 +7522,7 @@ Select from different types of displays for the waveform, which differ primarily Location: - + Posizione: @@ -7502,7 +7532,7 @@ Select from different types of displays for the waveform, which differ primarily Comments - + Commenti @@ -7512,7 +7542,7 @@ Select from different types of displays for the waveform, which differ primarily Sets the BPM to 75% of the current value. - + Imposta il BPM al 75% del valore attuale. @@ -7582,33 +7612,33 @@ Select from different types of displays for the waveform, which differ primarily ReplayGain: - + ReplayGain: Sets the BPM to 200% of the current value. - + Imposta il BPM al 200% del valore attuale. Double BPM - + Raddoppia BPM Halve BPM - + Dimezza BPM Clear BPM and Beatgrid - + Cancella i BPM e Griglia battute Move to the previous item. "Previous" button - + Muove all'elemento precedente. @@ -7619,17 +7649,17 @@ Select from different types of displays for the waveform, which differ primarily Move to the next item. "Next" button - + Muove all'elemento successivo. &Next - + &Prossimo Duration: - + Durata: @@ -7644,97 +7674,99 @@ Select from different types of displays for the waveform, which differ primarily Date added: - + Data inserimento: Open in File Browser - + Apri nel File Manager Track BPM: - + BPM Traccia: Converts beats detected by the analyzer into a fixed-tempo beatgrid. Use this setting if your tracks have a constant tempo (e.g. most electronic music). Often results in higher quality beatgrids, but will not do well on tracks that have tempo shifts. - + Converte le battute rilevate dall'analizzatore in una griglia battute con tempo fisso. +Usa quest'opzione se le tue tracce hanno un ritmo costante (ad esempio la maggior parte della musica elettronica). +Spesso si avrà un buon risultato con tracce a ritmo costante, non funzionerà bene su tracce che hanno cambi di ritmo. Assume constant tempo - + Assume un tempo costante Sets the BPM to 66% of the current value. - + Imposta il BPM al 66% del valore attuale. 2/3 BPM - + 2/3 BPM Sets the BPM to 150% of the current value. - + Imposta il BPM al 150% del valore attuale. 3/2 BPM - + 3/2 BPM Sets the BPM to 133% of the current value. - + Imposta il BPM al 133% del valore attuale. 4/3 BPM - + 4/3 BPM Tap with the beat to set the BPM to the speed you are tapping. - + Premi a ritmo battuta per impostare i BPM alla velocità con cui premi. Tap to Beat - + Premi alla Battuta Hint: Use the Library Analyze view to run BPM detection. - + Suggerimento: Usa la vista Analizza Libreria per eseguire il calcolo dei BPM. Save changes and close the window. "OK" button - + Salva le modifiche e chiude la finestra. &OK - + &OK Discard changes and close the window. "Cancel" button - + Abbandona modifiche e chiude la finestra. Save changes and keep the window open. "Apply" button - + Salva modifiche e tiene la finestra aperta. @@ -7744,7 +7776,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h &Cancel - + &Annulla @@ -7753,7 +7785,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Empty Chain Name for an empty effect chain, that is created after eject - + Catena Vuota @@ -7769,7 +7801,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Visible - + Visibile @@ -7787,32 +7819,32 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Flanger - + Flanger BitCrusher - + BitCrusher Filter - + Filtro Reverb - + Riverbero Echo - + Eco AutoPan - + AutoPan @@ -7825,7 +7857,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Empty - + Vuoto @@ -7833,17 +7865,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Soundtouch (faster) - + Soundtouch (più veloce) Rubberband (better) - + Rubberband (migliore) Unknown (bad value) - + Sconosciuto (bad value) @@ -7851,27 +7883,27 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Fatal error - + Errore Fatale Critical error - + Errore critico Warning - + Avviso Information - + Informazione Question - + Domanda @@ -7911,7 +7943,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h VSyncTest - + VSyncTest @@ -7927,60 +7959,50 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HSV - + HSV HidController - Generic HID Mouse - - - - Generic HID Joystick - + HID Joystick generico - + Generic HID Gamepad - - - - - Generic HID Keyboard - + HID Gamepad generico - + Generic HID Multiaxis Controller - + HID Multiaxis Controller generico - + Unknown HID Desktop Device - + HID Desktop Device sconosciuto - + HID Infrared Control - + HID Infrared Control - + Unknown Apple HID Device - + Apple HID Device sconosciuto - + HID Unknown Device - + HID Device sconosciuto - + HID Interface Number - + HID Interface Number @@ -7989,38 +8011,38 @@ Often results in higher quality beatgrids, but will not do well on tracks that h iTunes - + iTunes Select your iTunes library - + Seleziona la tua libreria iTunes (loading) iTunes - + (caricamento) iTunes Use Default Library - + Usa Libreria Predefinita Choose Library... - + Scegli Libreria... Error Loading iTunes Library - + Errore in caricamento Libreria iTunes There was an error loading your iTunes library. Some of your iTunes tracks or playlists may not have loaded. - + C'e' stato un errore in caricamento della tua libreria iTunes. Alcune delle tue tracce o playlist iTunes possono non essere state caricate. @@ -8029,7 +8051,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Safe Mode Enabled Shown when Mixxx is running in safe mode. - + Modalità Sicura Abilitata @@ -8037,62 +8059,63 @@ Often results in higher quality beatgrids, but will not do well on tracks that h support. Shown when Spinny can not be displayed. Please keep unchanged - + OpenGL +non supportato. activate - + attivato toggle - + attiva/disattiva right - + destra left - + sinistra right small - + destra piccolo left small - + sinistra piccolo up - + sopra down - + sotto up small - + sopra piccolo down small - + sotto piccolo Shortcut - + Scorciatoia @@ -8100,12 +8123,12 @@ support. Add Directory to Library - + Aggiunge Cartella alla Libreria Could not add the directory to your library. Either this directory is already in your library or you are currently rescanning your library. - + Non posso aggiungere la cartella alla tua libreria. O la cartella è già nella tua libreria o attualmente stai riscansionando la libreria. @@ -8118,12 +8141,12 @@ support. Playlist Files (*.m3u *.m3u8 *.pls *.csv) - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Overwrite File? - + Sovrascrivo File? @@ -8131,35 +8154,38 @@ support. The default "m3u" extension was added because none was specified. Do you really want to overwrite it? - + Un file playlist con il nome "%1" esiste già. +L'estensione predefinita "m3u" è stata aggiunta perché nessuna estensione era stata specificata. + +Vuoi veramente sovrascriverlo? LibraryScannerDlg - + Library Scanner - + Scansione Libreria - + It's taking Mixxx a minute to scan your music library, please wait... - + Mixxx ci mette un minuto a scansionare la tua libreria musicale, per favore aspetta... - + Cancel - + Annulla - + Scanning: - + Scansione: - + Scanning cover art (safe to cancel) - + Scansione copertina (annullare non crea problemi) @@ -8175,33 +8201,34 @@ Do you really want to overwrite it? MIDI Controller - + MIDI Controller MixxxControl(s) not found - + MixxxControl(s) non trovato One or more MixxxControls specified in the outputs section of the loaded mapping were invalid. - + Uno o più MixxxControls specificati nella sezione outputs del file mappatura caricato non sono validi. Some LEDs or other feedback may not work correctly. - + Alcuni LED o altri feedback potrebbero non funzionare correttamente. * Check to see that the MixxxControl names are spelled correctly in the mapping file (.xml) - + * Controlla che i nomi MixxxControl siano scritti correttamente nel file mappatura (.xml) + * Make sure the MixxxControls in question actually exist. Visit the manual for a complete list: - + * Assicurati che il MixxxControls in questione attualmente esista. Consulta il manuale per una lista completa: @@ -8209,42 +8236,42 @@ Do you really want to overwrite it? Click OK to exit. - + Clicca OK per uscire. Cannot upgrade database schema - + Impossibile aggiornare database schema Unable to upgrade your database schema to version %1 - + Impossibile aggiornare il tuo database schema alla versione %1 For help with database issues contact: - + Per aiuto con problemi con il database contatta: Your mixxxdb.sqlite file may be corrupt. - + Il tuo file mixxxdb.sqlite potrebbe essere corrotto. Try renaming it and restarting Mixxx. - + Prova a rinominarlo e a far ripartire Mixxx. Your mixxxdb.sqlite file was created by a newer version of Mixxx and is incompatible. - + Il tuo file mixxxdb.sqlite è stato creato con una versione più recente di Mixxx ed è incompatibile. The database schema file is invalid. - + Il database schema file non è valido. @@ -8252,12 +8279,12 @@ Do you really want to overwrite it? Missing Tracks - + Tracce Mancanti Hidden Tracks - + Tracce Nascoste @@ -8270,47 +8297,47 @@ Do you really want to overwrite it? Choose music library directory - + Scegli cartella libreria musica Sound Device Busy - + Sound Device Busy <b>Retry</b> after closing the other application or reconnecting a sound device - + <b>Riprova</b> dopo aver chiuso l'altra applicazione o ricollega un dispositivo musicale <b>Reconfigure</b> Mixxx's sound device settings. - + <b>Riconfigura</b> impostazioni Mixxx's sound device. Get <b>Help</b> from the Mixxx Wiki. - + Ottieni <b>Aiuto</b> dal Wiki Mixxx. <b>Exit</b> Mixxx. - + <b>Esci</b> da Mixxx. Retry - + Riprova Cannot open database - + Impossibile aprire database @@ -8318,60 +8345,63 @@ Do you really want to overwrite it? Mixxx requires QT with SQLite support. Please read the Qt SQL driver documentation for information on how to build it. Click OK to exit. - + Impossibile stabilire una connessione al database. +Mixxx richiede QT con supporto Sqlite. Si prega di leggere la documentazione del driver Qt SQL per informazioni su come costruirlo. + +Fare clic su OK per uscire. Reconfigure - + Riconfigura Help - + Aiuto Exit - + Esci Mixxx was unable to open all the configured sound devices. - + Mixxx non ha potuto aprire tutti i dispositivi musicali configurati. Sound Device Error - + Errore Dispositivo Sound <b>Retry</b> after fixing an issue - + <b>Riprova</b> dopo aver corretto un problema No Output Devices - + Nessun Dispositivo Output Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. - + Mixxx è stato configurato senza alcun dispositivo audio di uscita. L'elaborazione audio sarà disabilitata senza un dispositivo di uscita configurato. <b>Continue</b> without any outputs. - + <b>Continua</b> senza nessun outputs. Continue - + Continua @@ -8381,7 +8411,7 @@ Click OK to exit. Deck %1 is currently playing a track. - + Il deck %1 attualmente stà suonando una traccia. @@ -8399,66 +8429,68 @@ Selezionare un dispositivo in entrata nella sezione nella lista preferenze hardw There is no input device selected for this passthrough control. Please select an input device in the sound hardware preferences first. - + Non c'è nessun dispositivo di input selezionato per questo controllo passthrough. Selezionare prima un dispositivo di input nelle preferenze dell'hardware audio. There is no input device selected for this microphone. Do you want to select an input device? - + Non c'è nessun dispositivo di input selezionato per questo microfono. +Vuoi selezionare un dispositivo di input? There is no input device selected for this auxiliary. Do you want to select an input device? - + Non c'è nessun dispositivo di input selezionato per questo ausiliare. +Vuoi selezionare un dispositivo di input? Error in skin file - + Errore in file skin The selected skin cannot be loaded. - + La skin selezionata non può essere caricata. - + OpenGL Direct Rendering - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - + Direct rendering non è abilitato sulla tua macchina.<br><br>Ciò significa che la visualizzazione delle forme d'onda sarà molto<br><b>lento e può impattare sulla tua CPU pesantemente</b>. Aggiorna la tua<br>configurazione per abilitare il direct rendering, or disabilita la visualizzazione<br>della forma d'onda nelle preferenze di Mixxx selezionando<br>"Vuota" come visualizzazione di forma d'onda nella sezione 'Interfaccia'. - - - + + + Confirm Exit - + Conferma uscita - + A deck is currently playing. Exit Mixxx? - + Un deck stà attualmente suonando. Esco da Mixxx? - + A sampler is currently playing. Exit Mixxx? - + Un campionatore stà attualmente suonando. Esco da Mixxx? - + The preferences window is still open. - + La finestra preferenze è ancora aperta. - + Discard any changes and exit Mixxx? - + Abbandono qualsiasi modifica ed esco da Mixxx? @@ -8471,18 +8503,18 @@ Do you want to select an input device? Playlist Export Failed - + Export Playlist Fallito Could not create file - + Impossibile creare file Readable text Export Failed - + Esportazione del testo Leggibile Fallita @@ -8491,24 +8523,26 @@ Do you want to select an input device? Playlist Export Failed - + Export Playlist Fallito File path contains characters, not allowed in m3u playlists. - + Il sentiero del file contiene caratteri, non ammessi nelle playlists m3u. + Export a m3u8 playlist instead! - + Esporta piuttosto una playlist m3u8! + Could not create file - + Impossibile creare file @@ -8516,12 +8550,12 @@ Do you want to select an input device? Playlist Export Failed - + Export Playlist Fallito Could not create file - + Impossibile creare file @@ -8535,7 +8569,7 @@ Do you want to select an input device? Playlists - + Playlists @@ -8545,22 +8579,22 @@ Do you want to select an input device? Playlists are ordered lists of songs that allow you to plan your DJ sets. - + Le playlist sono liste ordinate di canzoni che consentono di pianificare i tuoi DJ sets. Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. - + Alcuni DJ costruiscono playlist prima di esibirsi dal vivo, ma altri preferiscono costruirle al volo. When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play. - + Quando utilizzi una playlist durante un set live DJ, ricorda di prestare sempre molta attenzione a come il pubblico reagisce alla musica che hai scelto di riprodurre. It may be necessary to skip some songs in your prepared playlist or add some different songs in order to maintain the energy of your audience. - + Può essere necessario saltare alcune canzoni nella playlist preparata o aggiungere alcune canzoni diverse al fine di mantenere l'energia del pubblico. @@ -8571,60 +8605,60 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Aggiornamento Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Mixxx ora supporta la visualizzazione delle copertine. Vuoi scansionare la tua libreria per i file di copertina ora? - + Scan Scansiona - + Later - + Posticipa - + Upgrading Mixxx from v1.9.x/1.10.x. - + Aggiorna Mixxx da v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + Mixxx ha un nuovo e migliorato beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - Quando carichi tracce, Mixxx può rianalizzarle e generare una nuova e più accurata beatgrid. Questo farà si che il beatsync automatico ed il looping sia più affidabile. + Quando carichi tracce, Mixxx può rianalizzarle e generare una nuova e più accurata griglia delle battute. Questo farà si che la sincronizzazione battuta automatico ed il looping sia più affidabile. - + This does not affect saved cues, hotcues, playlists, or crates. - + Questo non coinvolge le cues salvate, le hotcues, le playlist o i contenitori. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Se non vuoi che Mixxx ri-analizzi le tue tracce, scegli "Mantieni le Griglie-battute attuali". È possibile modificare questa impostazione in qualsiasi momento dalla sezione "Rilevamento battuta" dalla sezione nelle Preferenze. - + Keep Current Beatgrids - + Mantieni Griglia-battute Attuali - + Generate New Beatgrids - + Genera Nuova Griglia-battute @@ -8633,153 +8667,153 @@ Do you want to scan your library for cover files now? Invalid - + Non valido Note On - + Nota On Note Off - + Nota Off CC - + CC Pitch Bend - + Pitch Bend Unknown (0x%1) - + Sconosciuto (0x%1) Normal - + Normale Invert - + Inverti Rot64 - + Rot64 Rot64Inv - + Rot64Inv Rot64Fast - + Rot64Fast Diff - + Diff Button - + Pulsante Switch - + Interruttore Spread64 - + Spread64 HercJog - + HercJog SelectKnob - + SelectKnob SoftTakeover - + SoftTakeover Script - + Script 14-bit (LSB) - + 14-bit (LSB) 14-bit (MSB) - + 14-bit (MSB) Master - + Master Booth - + Booth Headphones - + Cuffie Left Bus - + Bus Sinistro Center Bus - + Bus Centrale Right Bus - + Bus Destro Invalid Bus - + Bus non valido Deck - + Deck Record/Broadcast - + Registra/Trasmetti @@ -8789,32 +8823,32 @@ Do you want to scan your library for cover files now? Microphone - + Microfono Auxiliary - + Ausiliario Unknown path type %1 - + Tipo di percorso %1 sconosciuto Using Opus at samplerates other than 48 kHz is not supported by the Opus encoder. Please use 48000 Hz in "Sound Hardware" preferences or switch to a different encoding. - + L'uso di Opus a frequenze di campionamento diverse da 48 kHz non è supportato dall'encoder Opus. Utilizzare 48000 Hz nelle preferenze "Sound Hardware" o passare a una codifica diversa. Encoder - + Encoder Mixxx Needs Access to: %1 - + Mixxx deve accedere a: %1 @@ -8825,17 +8859,23 @@ Do you want to scan your library for cover files now? After clicking OK, you will see a file picker. To give Mixxx permission, you must select '%2' to proceed. If you do not want to grant Mixxx access click Cancel on the file picker. We're sorry for this inconvenience. To abort this action, press Cancel on the file dialog. - + A causa del Sandboxing dei Mac, è necessaria la tua autorizzazione per l'accesso a questo file: + +%1 + +Dopo aver cliccato su OK, apparirà una maschera di selezione file. Per concedere i permessi di accesso a Mixxx dovrai selezionare '%2' per procedere. Se non sei d'accordo a concedere i permessi di accesso a Mixxx, clicca Cancel sulla maschera di apertura file. Ci scusiamo per l'inconveniente. + +Per annullare questa azione, clicca su Cancel nella maschera di dialogo. You selected the wrong file. To grant Mixxx access, please select the file '%1'. If you do not want to continue, press Cancel. - + Hai selezionato il file sbagliato. Per concedere l'accesso a Mixxx, seleziona il file '%1'. Se non vuoi continuare, premi Annulla. Upgrading old Mixxx settings - + Aggiornamento vecchie impostazioni Mixxx @@ -8844,62 +8884,68 @@ To abort this action, press Cancel on the file dialog. To allow Mixxx to use your old library and settings, click the Open button in the file selection dialog. Mixxx will then move your old settings into the sandbox. This only needs to be done once. If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx will create a new music library and use default settings. - + A causa della sandboxing di macOS, Mixxx ha bisogno del tuo permesso per accedere alla tua libreria musicale e alle impostazioni delle versioni di Mixxx prima della 2.3.0. + +Dopo aver fatto clic su OK, verrà visualizzata una finestra di selezione dei file. Per consentire a Mixxx di utilizzare la vecchia libreria e le impostazioni, fare clic sul pulsante Apri nella finestra di dialogo di selezione dei file. + +Mixxx sposterà le tue vecchie impostazioni nella sandbox. Questo deve essere fatto solo una volta. + +Se non si desidera concedere l'accesso a Mixxx, fare clic su Annulla nel selettore file. Mixxx creerà una nuova libreria musicale e utilizzerà le impostazioni predefinite. Bit Depth - + Profondità Bit Bitcrusher - + Bitcrusher Adds noise by the reducing the bit depth and sample rate - + Aggiunge rumore riducendo la profondità di bit e la frequenza di campionamento The bit depth of the samples - + Regola la profondità bit dei campioni Downsampling - + Downsampling Down - + Giù The sample rate to which the signal is downsampled - + Regola la frequenza di campionamento, al quale il segnale è sottocampionato Echo - + Eco Time - + Time Ping Pong - + Ping Pong @@ -8907,12 +8953,12 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx Send - + Invia How much of the signal to send into the delay buffer - + Quanta parte del segnale da inviare nel buffer di ritardo @@ -8920,29 +8966,31 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx Feedback - + Feedback Stores the input signal in a temporary buffer and outputs it after a short time - + Memorizza il segnale in input in un buffer temporaneo e lo riproduce dopo poco tempo Delay time 1/8 - 2 beats if tempo is detected 1/8 - 2 seconds if no tempo is detected - + Tempo ritardo +1/8 - 2 battute se il tempo è rilevato +1/8 - 2 secondi se il tempo non è rilevato Amount the echo fades each time it loops - + Quantità dell'eco che scompare ogni volta che cicla How much the echoed sound bounces between the left and right sides of the stereo field - + Quanto del suono riflesso rimbalza fra il lato sinistro e destro del campo stereo @@ -8950,12 +8998,12 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx Quantize - + Quantizza Round the Time parameter to the nearest 1/4 beat. - + Arrotonda il parametro Tempo di 1/4 alla battuta più vicina. @@ -8966,68 +9014,69 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx Triplets - + Tripletta When the Quantize parameter is enabled, divide rounded 1/4 beats of Time parameter by 3. - + Quando il parametro Quantifica è abilitato, divide le battute arrotondate di 1/4 del parametro Tempo per 3. Filter - + Filtro Allows only high or low frequencies to play. - + Permette di riprodurre solo alte o basse frequenze. Low Pass Filter Cutoff - + Taglio Filtro Passa Bassi LPF - + LPF Corner frequency ratio of the low pass filter - + Rapporto di frequenza angolare del filtro passa-basso Q - + Q Resonance of the filters Default: flat top - + Risonanza dei filtri +Predefinito = flat top High Pass Filter Cutoff - + Taglio Filtro Passa-Alto HPF - + HPF Corner frequency ratio of the high pass filter - + Rapporto di frequenza angolare del filtro passa-alto @@ -9035,13 +9084,13 @@ Default: flat top Depth - + Profondità Flanger - + Flanger @@ -9053,12 +9102,12 @@ Default: flat top Manual - + Manuale Mixes the input with a delayed, pitch modulated copy of itself to create comb filtering - + Mescola l'ingresso con una copia ritardata e modulata del pitch di se stesso per creare un filtro a pettine @@ -9070,13 +9119,14 @@ Default: flat top Delay amplitude of the LFO (low frequency oscillator) - + Ampiezza ritardo dell'LFO (oscillatore a bassa frequenza) Delay offset of the LFO (low frequency oscillator). With width at zero, this allows for manually sweeping over the entire delay range. - + Offset di ritardo dell'LFO (oscillatore a bassa frequenza). +Con larghezza a zero, consente di scorrere manualmente l'intero intervallo di ritardo. @@ -9091,7 +9141,7 @@ With width at zero, this allows for manually sweeping over the entire delay rang How much of the delay output is feed back into the input - + Quanta parte dell'output di ritardo viene immessa nell'input @@ -9103,7 +9153,7 @@ With width at zero, this allows for manually sweeping over the entire delay rang Divide rounded 1/2 beats of the Period parameter by 3. - + Divide 1/2 battute arrotondate del parametro Periodo per 3. @@ -9124,12 +9174,12 @@ With width at zero, this allows for manually sweeping over the entire delay rang Metronome - + Metronomo Adds a metronome click sound to the stream - + Aggiunge un suono click metronomo allo stream @@ -9139,17 +9189,17 @@ With width at zero, this allows for manually sweeping over the entire delay rang Set the beats per minute value of the click sound - + Imposta il valore delle battute per minuto del click sound Sync - + Sync Synchronizes the BPM with the track if it can be retrieved - + Sincronizza il BPM con la traccia se esso può essere recuperato @@ -9157,55 +9207,57 @@ With width at zero, this allows for manually sweeping over the entire delay rang Period - + Periodo Autopan - + Autopan Bounce the sound left and right across the stereo field - + Rimbalza il suono a sinistra e destra attraverso il campo stereo How fast the sound goes from one side to another 1/4 - 4 beats rounded to 1/2 beat if tempo is detected 1/4 - 4 seconds if no tempo is detected - + Quanto veloce il suono va' da un lato all'altro +1/4 - 4 battiti arrotondati a 1/2 battito se il tempo è rilevato +1/4 - 4 secondi se il tempo non viene rilevato Smoothing - + Dolcemente Smooth - + Dolcezza How smoothly the signal goes from one side to the other - + Quanto agevolmente il segnale passa da una parte all'altra How far the signal goes to each side - + Quanto distante il segnale và su ogni lato Reverb - + Riverbero Emulates the sound of the signal bouncing off the walls of a room - + Simula il suono del segnale che rimbalza sui muri di una stanza @@ -9216,68 +9268,69 @@ With width at zero, this allows for manually sweeping over the entire delay rang Lower decay values cause reverberations to fade out more quickly. - + Bassi valori di smorzamento causano riverberi che scompaiono più rapidamente. Bandwidth of the low pass filter at the input. Higher values result in less attenuation of high frequencies. - + Larghezza di banda del filtro passa basso all'input. +Valori alti effettuano meno attenuazione delle alte frequenze. How much of the signal to send in to the effect - + Quanta parte del segnale da inviare all'effetto Bandwidth - + Larghezza di Banda BW - + BW Damping - + Smorzamento Higher damping values cause high frequencies to decay more quickly than low frequencies. - + Alti valori di damping causano un più veloce smorzamento delle alte frequenze rispetto alle basse frequenze. Low - + Basso Gain for Low Filter - + Guadagno per Filtro Bassi Kill Low - + Elimina Bassi Kill the Low Filter - + Elimina Filtro Bassi Mid - + Medi @@ -9287,48 +9340,48 @@ Higher values result in less attenuation of high frequencies. Bessel4 ISO - + Bessel4 ISO A Bessel 4th-order filter isolator with Lipshitz and Vanderkooy mix (bit perfect unity, roll-off -24 dB/octave). - + Un equalizzatore filtro Bessel 4th order con Lipshitz e Vanderkooy mix (bit perfect unity, roll-off -24 db/Oct). Gain for Mid Filter - + Guadagno per Filtro Medi Kill Mid - + Elimina Medi Kill the Mid Filter - + Elimina Filtro Medi High - + Alto Gain for High Filter - + Guadagno per Filtro Alti Kill High - + Elimina Alti Kill the High Filter - + Elimina Filtro Alti @@ -9338,32 +9391,32 @@ Higher values result in less attenuation of high frequencies. Graphic Equalizer - + Equalizzatore Grafico Graphic EQ - + EQ Grafico An 8-band graphic equalizer based on biquad filters - + Un equalizzatore grafico a 8 bande basate su filtri biquadratici Gain for Band Filter %1 - + Guadagno per Filtro Banda %1 Moog Ladder 4 Filter - + Filtro Moog Ladder 4 Moog Filter - + Filtro Moog @@ -9379,17 +9432,17 @@ Higher values result in less attenuation of high frequencies. Resonance - + Risonanza Resonance of the filters. 4 = self oscillating - + Risonanza dei filtri. 4 = auto oscillante Gain for Low Filter (neutral at 1.0) - + Guadagno per Filtro Bassi (neutro a 1.0) @@ -9400,7 +9453,7 @@ Higher values result in less attenuation of high frequencies. Phaser - + Phaser @@ -9417,7 +9470,7 @@ Higher values result in less attenuation of high frequencies. Mixes the input signal with a copy passed through a series of all-pass filters to create comb filtering - + Mixa il segnale in entrara con una copia passata attraverso un serie di filtri passa-tutto per creare filtraggi combinati @@ -9429,28 +9482,28 @@ Higher values result in less attenuation of high frequencies. Controls how much of the output signal is looped - + Controlla quanto del segnale di output viene ripetuto Range - + Intervallo Controls the frequency range across which the notches sweep. - + Controlla l'intervallo di frequenza attraverso il quale i notches agiscono. Number of stages - + Numero di stadi Sets the LFOs (low frequency oscillators) for the left and right channels out of phase with each others - + Imposta gli LFO (oscillatori bassa frequenza) per i canali sinistro e destro sfasandoli un l'altro @@ -9510,7 +9563,7 @@ Higher values result in less attenuation of high frequencies. Bessel8 ISO - + Bessel8 ISO @@ -9525,7 +9578,7 @@ Higher values result in less attenuation of high frequencies. LR8 ISO - + LR8 ISO @@ -9535,12 +9588,12 @@ Higher values result in less attenuation of high frequencies. Biquad Equalizer - + Equalizzatore biquadratico BQ EQ - + BQ EQ @@ -9560,7 +9613,7 @@ Higher values result in less attenuation of high frequencies. BQ EQ/ISO - + BQ EQ/ISO @@ -9587,18 +9640,18 @@ Higher values result in less attenuation of high frequencies. Set the gain of the applied loudness contour - + Imposta il guadagno del loudness a contorno applicato Use Gain - + Usa Guadagno Follow Gain Knob - + Segui Manopola Guadagno @@ -9608,7 +9661,7 @@ Higher values result in less attenuation of high frequencies. Live Mix - + Mix Live @@ -9626,7 +9679,7 @@ Higher values result in less attenuation of high frequencies. Bit depth - + Profondità bit @@ -9670,7 +9723,7 @@ Higher values result in less attenuation of high frequencies. Bypass Frequency - + Frequenza di bypass @@ -9701,83 +9754,88 @@ Centro: non modifica il segnale originale. Param EQ - + Parametri EQ An gentle 2-band parametric equalizer based on biquad filters. It is designed as a complement to the steep mixing equalizers. - + Un equalizzatore parametrico morbido a 2-bande basato su filtri biquadratici. +Esso è progettato a complemento degli equalizzatori steep mixing. Gain 1 - + Guadagno 1 Gain for Filter 1 - + Guadagno per Filtro 1 Q 1 - + Q 1 Controls the bandwidth of Filter 1. A lower Q affects a wider band of frequencies, a higher Q affects a narrower band of frequencies. - + Controlla la larghezza di banda per il Filtro 1. +Un basso Q agisce su una banda di frequenze più larga, +un alto Q agisce su una banda di frequenze più stretta. Center 1 - + Centro 1 Center frequency for Filter 1, from 100 Hz to 14 kHz - + Frequenza Centrale per il Filtro 1, da 100 Hz a 14 kHz Gain 2 - + Guadagno 2 Gain for Filter 2 - + Guadagno per Filtro 2 Q 2 - + Q 2 Controls the bandwidth of Filter 2. A lower Q affects a wider band of frequencies, a higher Q affects a narrower band of frequencies. - + Controlla la larghezza di banda per il Filtro 2. +Un basso Q agisce su una banda di frequenze più larga, +un alto Q agisce su una banda di frequenze più stretta. Center 2 - + Centro 2 Center frequency for Filter 2, from 100 Hz to 14 kHz - + Frequenza Centrale per il Filtro 2, da 100 Hz a 14 kHz @@ -9806,25 +9864,30 @@ a higher Q affects a narrower band of frequencies. Rate of the volume changes 4 beats - 1/8 beat if tempo is detected 1/4 Hz - 8 Hz if no tempo is detected - + Tasso dei cambi di volume +4 battiti - 1/8 beat se il tempo è rilevato +1/4 Hz - 8 Hz se nessun tempo è rilevato Width of the volume peak 10% - 90% of the effect period - + Larghezza del picco volume +10% - 90% del periodo Shape of the volume modulation wave Fully left: Square wave Fully right: Sine wave - + Forma dell'onda modulazione del volume +Completamente a sinistra: Onda quadra +Completamente a destra: Onda sinusoidale When the Quantize parameter is enabled, divide the effect period by 3. - + Quando il parametro Quantifica è abilitato, divide il periodo dell'effetto per 3. @@ -9836,19 +9899,21 @@ Fully right: Sine wave Phase - + Fase Shifts the position of the volume peak within the period Fully left: beginning of the effect period Fully right: end of the effect period - + Trasla la posizione del picco volume nel periodo +Completamente a sinistra: inizio del periodo +Completamente a destra: fine del periodo Round the Rate parameter to the nearest whole division of a beat. - + Arrotonda il parametro Rate alla prima divisione intera alla battuta più vicina. @@ -9864,22 +9929,22 @@ Fully right: end of the effect period This plugin does not support stereo samples as input/output - + Questo plugin non supporta campioni stereo in input/output This plugin has features which are not yet supported - + Questo plugin ha caratteristiche che non sono ancora supportate Unknown status - + Unknown status Parameters of %1 - + Parametri di %1 @@ -9920,34 +9985,34 @@ Fully right: end of the effect period <html>Mixxx cannot record or stream in AAC or HE-AAC without the FDK-AAC encoder. In order to record or stream in AAC or AAC+, you need to download <b>libfdk-aac</b> and install it on your system. - + <html>Mixxx non può registrare o trasmettere in AAC o HE-AAC senza l'encoder FDK-AAC. Al fine di registrare o trasmettere in AAC or AAC+, devi scaricare le <b>libfdk-aac</b> ed installarle sul tuo sistema. The installed AAC encoding library does not support HE-AAC, only plain AAC. Configure a different encoding format in the preferences. - + La libreria di codifica AAC installata non supporta HE-AAC, ma solo pieno AAC. Configura un formato differente di codifica nelle preferenze. MP3 encoding is not supported. Lame could not be initialized - + La codifica MP3 non è supportata. Impossibile inizializzare Lame OGG recording is not supported. OGG/Vorbis library could not be initialized. - + La registrazone OGG non è supportata. Impossibile inizializzare la libreria OGG/Vorbis. encoder failure - + encoder failure Failed to apply the selected settings. - + Applicazione delle impostazioni selezionate non riuscita. @@ -9957,7 +10022,7 @@ Fully right: end of the effect period Deck 1 - + Deck 1 @@ -9965,7 +10030,7 @@ Fully right: end of the effect period HSV - + HSV @@ -9989,7 +10054,7 @@ Fully right: end of the effect period VSyncTest - + VSyncTest @@ -10065,12 +10130,12 @@ Fully right: end of the effect period Rekordbox - + Rekordbox Playlists - + Playlists @@ -10080,7 +10145,7 @@ Fully right: end of the effect period Hot cues - + Hot cues @@ -10090,27 +10155,27 @@ Fully right: end of the effect period Check for attached Rekordbox USB / SD devices (refresh) - + Verifica la presenza di dispositivi Rekordbox USB / SD collegati (aggiorna) Beatgrids - + Grigliabattute Reads databases exported for Pioneer CDJ / XDJ players using the Rekordbox Export mode.<br/>Rekordbox can only export to USB or SD devices with a FAT or HFS file system.<br/>Mixxx can read a database from any device that contains the database folders (<tt>PIONEER</tt> and <tt>Contents</tt>).<br/>Not supported are Rekordbox databases that have been moved to an external device via<br/><i>Preferences > Advanced > Database management</i>.<br/><br/>The following data is read: - + Legge databases esportati dai players Pioneer CDJ / XDJ usando il modo Rekordbox Export.<br/>Rekordbox può esportare solo su USB o dispositivi SD con un file system FAT o HFS.<br/>Mixxx può leggere un database da qualsiasi dispositivo che contiene le cartelle database (<tt>PIONEER</tt> e <tt>Contents</tt>).<br/>Non sono supportati databases Rekordbox che sono stati spostati su un dispositivo esterno usando<br/><i>Preferenze > Avanzate > Gestione Database</i>.<br/><br/>Vengono letti i seguenti dati: Memory cues - + Memoria cues (loading) Rekordbox - + (caricamento) Rekordbox @@ -10127,42 +10192,42 @@ Fully right: end of the effect period Save Sampler Bank - + Salva Raccolta Campioni Mixxx Sampler Banks (*.xml) - + Raccolta Campioni Mixxx (*.xml) Error Saving Sampler Bank - + Errore Salvando Raccolta Campioni Mixxx Sampler Banks (*%1) - + Raccolta Campionatori Mixxx (*%1) Could not write the sampler bank to '%1'. - + Impossibile scrivere la raccolta del campionatore su '1%'. Load Sampler Bank - + Carica Raccolta Campionatore Error Reading Sampler Bank - + Errore Leggendo Raccolta Campioni Could not open the sampler bank file '%1'. - + Impossibile aprire il file di Raccolta Campioni '1%'. @@ -10177,7 +10242,7 @@ Fully right: end of the effect period Reads the following from the Serato Music directory and removable devices: - + Legge i sottostanti da cartella Serato Music e dispositivi rimovibili: @@ -10187,12 +10252,12 @@ Fully right: end of the effect period Crates - Ceste + Contenitori Check for Serato databases (refresh) - + Verifica la presenza di database Serato (aggiorna) @@ -10255,27 +10320,27 @@ Fully right: end of the effect period Mixxx encountered a problem - + Mixxx ha riscontrato un problema Could not allocate shout_t - + Impossibile allocare shout_t Could not allocate shout_metadata_t - + Impossibile allocare shout_metadata_t Error setting non-blocking mode: - + Errore impostando il modo non-blocking: Error setting tls mode: - + Errore impostando il modo tls: @@ -10340,27 +10405,27 @@ Fully right: end of the effect period Error setting stream public! - + Errore impostando stream pubblico! Unknown stream encoding format! - + Formato codifica stream sconosciuto! Use a libshout version with %1 enabled - + Usa una versione libshout con %1 abilitato Error setting stream encoding format! - + Errore impostando formato codifica stream! Broadcasting at 96 kHz with Ogg Vorbis is not currently supported. Please try a different sample rate or switch to a different encoding. - + La trasmissione a 96 kHz con Ogg Vorbis non è attualmente supportata. Prova una frequenza di campionamento diversa o passa a una codifica diversa. @@ -10370,7 +10435,7 @@ Fully right: end of the effect period Unsupported sample rate - + Frequenza di campionamento non supportata @@ -10385,7 +10450,7 @@ Fully right: end of the effect period Error: Shoutcast only supports MP3 and AAC encoders - + Errore: Shoutcast supporta solo codifiche MP3 e AAC @@ -10405,7 +10470,7 @@ Fully right: end of the effect period One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> - + Una delle connessioni per la Trasmissione Live riportano questo errore:<br><b>Errore con connessione '%1':</b><br> @@ -10415,7 +10480,7 @@ Fully right: end of the effect period <b>Message from Live Broadcasting connection '%1':</b><br> - <b>Messaggio dalla connessione Live Broadcasting '%1':</b><br> + <b>Messaggio dalla connessione Trasmissione Live '%1':</b><br> @@ -10467,7 +10532,7 @@ Fully right: end of the effect period Two outputs cannot share channels on "%1" - + Due uscite non possono condividere canali su %1 @@ -10485,7 +10550,7 @@ Fully right: end of the effect period Count - + Conteggio @@ -10495,37 +10560,37 @@ Fully right: end of the effect period Units - + Unità Sum - + Somma Min - + Min Max - + Max Mean - + Media Variance - + Varianza Standard Deviation - + Deviazione Standard @@ -10538,7 +10603,7 @@ Fully right: end of the effect period Identifying track through Acoustid - + Identificazione della traccia attraverso Acoustid @@ -10556,17 +10621,17 @@ Fully right: end of the effect period Left-click - + Click-sinistro Right-click - + Click-destro Double-click - + Doppio-click @@ -10581,17 +10646,17 @@ Fully right: end of the effect period loop active - + loop attivo loop inactive - + loop inattivo Effects within the chain must be enabled to hear them. - + Gli effetti legati alla catena devono essere abilitati per sentirli. @@ -10601,7 +10666,7 @@ Fully right: end of the effect period Use the mouse to scratch, spin-back or throw tracks. - + Usa il mouse per fare scratch, spin-back oppure gettare tracce. @@ -10647,7 +10712,7 @@ Fully right: end of the effect period Rotates during playback and shows the position of a track. - + Ruota durante l'esecuzione e mostra la posizione della traccia. @@ -10657,17 +10722,17 @@ Fully right: end of the effect period Big Spinny/Cover Art - + Spinny/Copertina Grande Show a big version of the Spinny or track cover art if enabled. - + Mostra una versione ingrandita dello Spinny o della copertina della traccia se abilitato. Gain - + Guadagno @@ -10677,72 +10742,72 @@ Fully right: end of the effect period (too loud for the hardware and is being distorted). - + (troppo alto per l'hardware e risulterà distorto). Indicates when the signal on the channel is clipping, - + Indica quando il segnale del canale è in clipping . Master Peak Indicator - + Indicatore Picchi Master Indicates when the signal on the master output is clipping, - + Indica quando il segnale sul master output è in clipping. Channel Volume Meter - + Livello Volume Canale. Shows the current channel volume. - + Mostra il livello di volume del canale corrente. Microphone Volume Meter - + Livello Volume Microfono Shows the current microphone volume. - + Mostra il volume del microfono corrente. Auxiliary Volume Meter - + Indicatore Volume Ausiliario Shows the current auxiliary volume. - + Mostra il volume dell'ausiliario attuale. Auxiliary Peak Indicator - + Indicatore Picco Ausiliario Indicates when the signal on the auxiliary is clipping, - + Indica quando il segnale dell'ausiliario è in clipping, Shows the current master volume for the left channel. - + Mostra il volume master corrente per il canale sinistro. Master Channel R Volume Meter - + Livello Volume Canale Master R @@ -10767,7 +10832,7 @@ Fully right: end of the effect period Master Gain - + Guadagno Master @@ -10777,12 +10842,12 @@ Fully right: end of the effect period Booth Gain - + Guadagno Booth Adjusts the booth output gain. - + Regola il guadagno dell'uscita booth. @@ -10792,7 +10857,7 @@ Fully right: end of the effect period Determines the master output by fading between the left and right channels. - + Determina l'output master eseguendo la dissolvenza tra i canali sinistro e destro. @@ -10807,7 +10872,7 @@ Fully right: end of the effect period Headphone Volume - Volume Cuffie + Volume Cuffia @@ -10817,7 +10882,7 @@ Fully right: end of the effect period Headphone Gain - + Guadagno Cuffia @@ -10827,27 +10892,27 @@ Fully right: end of the effect period Headphone Mix - + Mix Cuffia Headphone Split Cue - + Split Cue Cuffia If activated, the master signal plays in the right channel, while the cueing signal plays in the left channel. - + Se attivato, il segnale master viene eseguito nel canale destro metro il segnale cueing viene eseguito nel canale sinistro. Adjust the Headphone Mix so in the left channel is not the pure cueing signal. - + Regola il Mix delle cuffie così il canale sinistro non è il puro segnale di cueing. Microphone - + Microfono @@ -10857,12 +10922,12 @@ Fully right: end of the effect period Sampler - + Campionatore Show/hide the Sampler section. - + Mostra/Nasconde la sezione Campionatori. @@ -10899,37 +10964,37 @@ Fully right: end of the effect period Show/hide Cover Art of the selected track in the library. - + Mostra/nasconde Copertina della traccia selezionata nella libreria. Toggle 4 Decks - + Abilita/disabilita 4 Decks Switches between showing 2 decks and 4 decks. - + Mostra 2 o 4 decks. Show/hide the scrolling waveforms - + Mostra/Nasconde lo scorrimento delle forme d'onda Show/hide the beatgrid controls section - + Mostra/nasconde la sezione controlli Grigliabattute Show Library - + Mostra Libreria Show or hide the track library. - + Mostra o nasconde la libreria tracce. @@ -10944,12 +11009,12 @@ Fully right: end of the effect period Hide all skin sections except the decks to have more screen space for the track library. - + Nasconde tutte le sezioni skin ad eccezione dei decks per avere più spazio schermo per la libreria traccia. Toggle Mixer - + Abilita/disabilita Mixer @@ -10959,12 +11024,12 @@ Fully right: end of the effect period Volume Meters - + Misuratori Volume Show/hide volume meters for channels and master output. - + Mostra/nasconde gli indicatori del volume per canali ed uscita master. @@ -10974,7 +11039,7 @@ Fully right: end of the effect period Adjusts the microphone volume. - Regola il volume del microfono + Regola il volume del microfono. @@ -10989,7 +11054,7 @@ Fully right: end of the effect period Auxiliary Gain - + Guadagno Ausiliario @@ -10999,22 +11064,22 @@ Fully right: end of the effect period Microphone Talk-Over - + Talk-Over Microfono Hold-to-talk or short click for latching to - + Premi per parlare oppure rapido click per allacciarsi mix microphone input into the master output. - + Mixa l'input del microfono nell'uscita master. Microphone Talkover Mode - + Modo Microfono Talkover @@ -11024,12 +11089,12 @@ Fully right: end of the effect period Manual: Reduce music volume by a fixed amount set by the Strength knob. - Manuale: Riduce il volume della musica di una quantità fissa impostata con la manopola Strength. + Manuale: Riduce il volume della musica di una quantità fissa impostata con la manopola Forza. Behavior depends on Microphone Talkover Mode: - + Aspetti dipendenti dal Modo Microfono Talkover: @@ -11039,62 +11104,62 @@ Fully right: end of the effect period Raise Pitch - + Aumenta Tono Sets the pitch higher. - + Imposta il tono più in alto. Sets the pitch higher in small steps. - + Imposta il tono più in alto a piccoli passi. Lower Pitch - + Abbassa Tono Sets the pitch lower. - + Imposta il tono più in basso. Sets the pitch lower in small steps. - + Imposta il tono più in basso a piccoli passi. Raise Pitch Temporary (Nudge) - + Aumenta Tono Temporaneamente (Nudge) Holds the pitch higher while active. - + Tiene il tono più alto mentre è attivo. Holds the pitch higher (small amount) while active. - + Tiene il tono più alto (di poco) mentre è attivo. Lower Pitch Temporary (Nudge) - + Abbassa Tono Temporaneamente (Nudge) Holds the pitch lower while active. - + Tiene il tono più basso mentre è attivo. Holds the pitch lower (small amount) while active. - + Tiene il tono più basso (di poco) mentre attivo. @@ -11139,7 +11204,7 @@ Fully right: end of the effect period Holds the gain of the high EQ to zero while active. - + Mantiene il guadagno equalizzazione alti a zero mentre è attivo. @@ -11149,7 +11214,7 @@ Fully right: end of the effect period Holds the gain of the mid EQ to zero while active. - + Mantiene il guadagno equalizzazione medi a zero mentre è attivo. @@ -11159,12 +11224,12 @@ Fully right: end of the effect period Holds the gain of the low EQ to zero while active. - + Mantiene il guadagno equalizzazione bassi a zero mentre è attivo. Displays the tempo of the loaded track in BPM (beats per minute). - + Mostra il tempo della traccia caricata in BPM (battute per minuto). @@ -11180,7 +11245,7 @@ Fully right: end of the effect period BPM Tap - + BPM Tap @@ -11211,22 +11276,22 @@ Fully right: end of the effect period Adjust Beats Earlier - Regola Beats Anticipando + Regola Battute Anticipando When tapped, moves the beatgrid left by a small amount. - + Quando premuto, sposta leggermente la grigliabattute a sinistra. Adjust Beats Later - Regola Beats Ritardando + Regola Battute Posticipando When tapped, moves the beatgrid right by a small amount. - + Quando premuto, sposta leggermente la grigliabattute a destra. @@ -11241,12 +11306,12 @@ Fully right: end of the effect period Keylock - + Blocco tastiera Toggling keylock during playback may result in a momentary audio glitch. - + La commutazione del blocco dei tasti durante la riproduzione può causare un momentaneo problema audio. @@ -11256,7 +11321,7 @@ Fully right: end of the effect period (while previewing) - + (durante anteprima) @@ -11271,7 +11336,7 @@ Fully right: end of the effect period Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). - + Imposta punto cue (modo Pioneer/Mixxx/Numark), imposta il punto cue e riproduce al rilascio (modo CUP) O preascolta da esso (modo Denon). @@ -11281,7 +11346,7 @@ Fully right: end of the effect period Seeks the track to the cue point and stops. - + Posiziona la traccia al punto cue e si arresta. @@ -11296,7 +11361,7 @@ Fully right: end of the effect period Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. - + Invia il canale audio selezionato all'uscita cuffie, selezionato in Preferenze -> Hardware Suono. @@ -11306,32 +11371,32 @@ Fully right: end of the effect period Hold or short click for latching to mix this input into the master output. - + Tenere premuto o fare clic brevemente per agganciare questo input e mixare nell'uscita master. Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. - + Cambia la velocità dell'esecuzione della traccia (coinvolge sia il tempo che il tono). Se keylock è abilitato, sarà modificato solo il tempo. Tempo Range Display - + Mostra Intervallo Tempo Displays the current range of the tempo slider. - + Mostra l'intervallo attuale del cursore tempo. Delete selected hotcue. - + Cancella hotcue selezionate. Opens separate artwork viewer. - + Apre visualizzatore copertine seperatamente. @@ -11346,59 +11411,59 @@ Fully right: end of the effect period Auto: Automatically reduce music volume when microphone volume rises above threshold. - + Auto: Riduce automaticamente il volume della musica quando il volume del microfono supera la soglia. Adjust the amount the music volume is reduced with the Strength knob. - + Regola la quantità di volume musicale ridotta con la manopola Forza. Auto: Sets how much to reduce the music volume when the volume of active microphones rises above threshold. - + Auto: Imposta di quanto ridurre il volume della musica quando il volume dei microfoni attivi superano la soglia. Manual: Sets how much to reduce the music volume, when talkover is activated regardless of volume of microphone inputs. - + Manuale: Imposta di quanto ridurre il volume della musica, quando talkover è attivo senza badare all'entrata microfono. Shift cues earlier - + Trasla anticipando cues Shift cues imported from Serato or Rekordbox if they are slightly off time. - + Trasla cues importate da Serato o Rekordbox se sono leggermente fuori tempo. Left click: shift 10 milliseconds earlier - + Click sinistro: trasla anticipando 10 millisecondi Right click: shift 1 millisecond earlier - + Click destro: trasla anticipando 1 millisecondo Shift cues later - + Trasla cues posticipando Left click: shift 10 milliseconds later - + Click sinistro: trasla 10 milliseconds posticipando Right click: shift 1 millisecond later - + Click destro: trasla 1 millisecondo posticipando @@ -11408,137 +11473,137 @@ Fully right: end of the effect period Auto DJ is active - + Auto DJ è attivo Hot Cue - Track will seek to nearest previous hotcue point. - + Hot Cue - La traccia si posizionerà al punto hotcue precedente più vicino. Sets the track Loop-In Marker to the current play position. - + Fissa il punto Loop-In alla posizione di riproduzione attuale. Press and hold to move Loop-In Marker. - + Premi e tieni premuto per muovere il punto di Loop-In. Jump to Loop-In Marker. - + Passa al Marcatore Loop-In. Sets the track Loop-Out Marker to the current play position. - + Imposta il marcatore Loop-In alla posizione di riproduzione attuale. Press and hold to move Loop-Out Marker. - + Premi e tieni premuto per muovere il marcatore Loop-Out. Jump to Loop-Out Marker. - + Passa al Marcatore Loop-Out. Beatloop Size - + Dimensione Beatloop Select the size of the loop in beats to set with the Beatloop button. - + Seleziona la dimensione del loop in battute per abbinarlo al bottone Beatloop. Changing this resizes the loop if the loop already matches this size. - + La modifica di questa opzione ridimensiona il ciclo se il ciclo corrisponde già a questa dimensione. Halve the size of an existing beatloop, or halve the size of the next beatloop set with the Beatloop button. - + Dimezza la dimensione di un beatloop esistente, o dimezza la dimensione del prossimo beatloop impostato con il bottone Beatloop. Double the size of an existing beatloop, or double the size of the next beatloop set with the Beatloop button. - + Raddoppia la dimensione di un beatloop esistente, o raddoppia la dimensione del prossimo beatloop impostato con il bottone Beatloop. Start a loop over the set number of beats. - + Inizia un loop per il numero di battute selezionate. Temporarily enable a rolling loop over the set number of beats. - + Abilita temporaneamente un loop continuo in base al numero di battute impostate. Beatjump/Loop Move Size - + Saltobattuta / Loop Sposta Dimensione Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. - + Seleziona il numero di beats da saltare o muove il loop con i bottoni Beatjump Avanti/Indietro. Beatjump Forward - + Saltobattuta Avanti Jump forward by the set number of beats. - + Salta in avanti del numero di battute impostato. Move the loop forward by the set number of beats. - + Muove il loop in avanti del numero di battute impostato. Jump forward by 1 beat. - + Salta in avanti di %1 battuta. Move the loop forward by 1 beat. - + Muove il loop in avanti di 1 battuta. Beatjump Backward - + Saltobattuta Indietro Jump backward by the set number of beats. - + Salta all'indietro del numero di battute impostato. Move the loop backward by the set number of beats. - + Muove il loop all'indietro del numero di beats impostato. Jump backward by 1 beat. - + Salta all'indietro di %1 battuta. Move the loop backward by 1 beat. - + Muove il loop all'indietro di 1 beat. @@ -11548,17 +11613,17 @@ Fully right: end of the effect period If the loop is ahead of the current position, looping will start when the loop is reached. - + Se il loop successivo alla posizione corrente, il looping inizierà quando il loop viene raggiunto. Works only if Loop-In and Loop-Out Marker are set. - + Funziona solo se i marcatori Loop-In e Loop-Out sono impostati. Enable loop, jump to Loop-In Marker, and stop playback. - + Abilita loop, passa al marcatore di Loop-In, ed interrompe la riproduzione. @@ -11573,7 +11638,7 @@ Fully right: end of the effect period Hint: Change the time format in Preferences -> Decks. - + Suggerimento: Modifica il formato del tempo in Preferenze -> Decks. @@ -11583,7 +11648,7 @@ Fully right: end of the effect period Intro Start Marker - + Marcatore Inizio Intro @@ -11591,7 +11656,7 @@ Fully right: end of the effect period If marker is set, jumps to the marker. - + Se il marcatore è impostato, passa al marcatore. @@ -11599,7 +11664,7 @@ Fully right: end of the effect period If marker is not set, sets the marker to the current play position. - + Se il marcatore non è impostato, imposta il marcatore sulla posizione di riproduzione corrente. @@ -11607,22 +11672,22 @@ Fully right: end of the effect period If marker is set, clears the marker. - + Se il marcatore è impostato, cancella il marcatore. Intro End Marker - + Marcatore Fine Intro Outro Start Marker - + Marcatore Inizio Outro Outro End Marker - + Marcatore Fine Outro @@ -11647,7 +11712,7 @@ Fully right: end of the effect period Mix Mode - + Modo Mix @@ -11658,58 +11723,59 @@ Fully right: end of the effect period Dry/Wet mode (crossed lines): Mix knob crossfades between dry and wet Use this to change the sound of the track with EQ and filter effects. - + Modo Dry/Wet (linee incrociate): Mixa manopola dissolvenze incrociate tra dry e wet +Usa questo per cambiare il suono della traccia con l'EQ e gli effetti filtro. Dry+Wet mode (flat dry line): Mix knob adds wet to dry Use this to change only the effected (wet) signal with EQ and filter effects. - + Modo Dry+Wet (linea dry piatta): La manopola Mix aggiunge wet a dry. Usalo per cambiare solo il segnale realizzato (wet) con EQ ed effetti del filtro. Route the left crossfader bus through this effect unit. - + Instrada il crossfader bus attraverso questa unità effetto. Route the right crossfader bus through this effect unit. - + Instrada il crossfader destro attraverso questa unità effetto. Right side active: parameter moves with right half of Meta Knob turn - + Lato destro attivo: il parametro si muove con la metà destra della rotazione del Meta Knob Skin Settings Menu - + Menu Impostazioni Skin Show/hide skin settings menu - + Mostra/nasconde menu impostazioni skin Save Sampler Bank - + Salva Raccolta Campioni Save the collection of samples loaded in the samplers. - + Salva la collezione di campioni caricata nei campionatori. Load Sampler Bank - + Carica Raccolta Campionatore Load a previously saved collection of samples into the samplers. - + Carica nei campionatori una collezione di campioni salvata in precedenza. @@ -11729,7 +11795,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Set how this parameter is linked to the effect's Meta Knob. - + Mostra come questo parametro è collegato all'effetto di Meta Knob. @@ -11739,27 +11805,27 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Inverts the direction this parameter moves when turning the effect's Meta Knob. - + Inverte la direzione in cui questo parametro si muove quando si gira la Meta Knob dell'effetto. Super Knob - + Super Manopola Next Chain - + Prossima Catena Previous Chain - + Catena Precedente Next/Previous Chain - + Catena Successiva/Precedente @@ -11769,7 +11835,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Clear the current effect. - + Toglie l'effetto corrente. @@ -11779,7 +11845,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Toggle the current effect. - + Attiva/disattiva l'effetto corrente. @@ -11789,12 +11855,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Clear Unit - + Cancella Unità Clear effect unit. - + Cancella unità effetto. @@ -11804,7 +11870,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Toggle Unit - + Attiva/disattiva Unità @@ -11814,22 +11880,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Controls the Meta Knob of all effects in this unit together. - + Controlla il Meta Knob di tutti gli effetti di questa unità assieme. Load next effect chain preset into this effect unit. - + Carica la catena effetto preimpostata successiva in questa unità effetto. Load previous effect chain preset into this effect unit. - + Carica la catena effetto preimpostata precedente in questa unità effetto. Load next or previous effect chain preset into this effect unit. - + Carica la catena effetto preimpostata precedente o successiva in questa unità effetto. @@ -11852,32 +11918,32 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Route the headphone channel through this effect unit. - + Indirizza il canale cuffia attraverso questa unità effetto. Route the master mix through this effect unit. - + Instrada il master mix attraverso questa unità effetto. Route this deck through the indicated effect unit. - + Instrada questo deck attraverso l'unità effetto indicata. Route this sampler through the indicated effect unit. - + Instrada questo campionatore attraverso l'unità effetto indicata. Route this microphone through the indicated effect unit. - + Instrada questo microfono attraverso l'unità effetto indicata. Route this auxiliary input through the indicated effect unit. - + Instrada questo ausiliario attraverso l'unità effetto indicata. @@ -11887,7 +11953,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Switch to the next effect. - + Passa all'effetto successivo. @@ -11897,7 +11963,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Switch to the previous effect. - + Passa all'effetto precedente. @@ -11907,17 +11973,17 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Switch to either the next or previous effect. - + Passa all'effetto precedente o al successivo. Meta Knob - + Manopola Meta Controls linked parameters of this effect - + Controlla parametri collegati a questo effetto. @@ -11937,12 +12003,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Refer to the web page on the Mixxx wiki for your controller for more information. - + Per maggiori informazioni per il tuo controller fai riferimento alla pagine web del wiki Mixxx. Effect Parameter - + Parametro Effetto @@ -11952,54 +12018,54 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Inactive: parameter not linked - + Inattivo; parametro non legato Active: parameter moves with Meta Knob - + Attivo: il parametro si muove con il Meta Knob Left side active: parameter moves with left half of Meta Knob turn - + Lato sinistro attivo: il parametro si muove con la metà sinistra della rotazione del Meta Knob Left and right side active: parameter moves across range with half of Meta Knob turn and back with the other half - + Lato sinistro e destro attivo: il parametro si muove nell'intervallo con metà del giro di Meta Knob e indietro con l'altra metà Equalizer Parameter Kill - + Elimina Parametro Equalizzatore Holds the gain of the EQ to zero while active. - + Mantiene il guadagno equalizzazione a zero mentre è attivo. Quick Effect Super Knob - + Super Manopola Effetto Rapido Quick Effect Super Knob (control linked effect parameters). - + Super Manopola Effetto Rapido (controlla parametri di effetti collegati). Hint: Change the default Quick Effect mode in Preferences -> Equalizers. - + Suggerimento: Cambia il modo di default dell'Effetto Rapido in Preferenze -> Equalizzatori. Equalizer Parameter - + Parametro Equalizzatore @@ -12009,101 +12075,101 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Hint: Change the default EQ mode in Preferences -> Equalizers. - + Suggerimento: Cambia il modo EQ di default in Preferenze -> Equalizzatori. Adjust Beatgrid - Regolazione Beatgrid + Regolazione Grigliabattute Adjust beatgrid so the closest beat is aligned with the current play position. - Regola la beatgrid così che il beat più vicino sia allineato all'attuale posizione in play. + Regola la grigliabattute così che la battuta più vicina sia allineata all'attuale posizione in riproduzione. Adjust beatgrid to match another playing deck. - Regola beatgrid in modo che sia similare al deck in play + Regola la grigliabattute in modo che sia simile al deck in riproduzione If quantize is enabled, snaps to the nearest beat. - + Se quantizza è abilitato, si aggancia alla battuta più vicina. Quantize - + Quantizza Toggles quantization. - + Attiva/disattiva modo quantizzazione. Loops and cues snap to the nearest beat when quantization is enabled. - + I loop e i cues si agganciano al beat più vicino quando la quantizzazione è abilitata. Reverse - + Inverti Reverses track playback during regular playback. - + Inverte la riproduzione della traccia durante la riproduzione normale. Puts a track into reverse while being held (Censor). - + Pone una traccia in inverti mentre è cliccato (Censore). Playback continues where the track would have been if it had not been temporarily reversed. - + La riproduzione continua dove la traccia sarebbe stata se non fosse stata temporaneamente invertita. Play/Pause - + Riproduci/Pausa Jumps to the beginning of the track. - + Salta all'inizio della traccia. Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. - + Sincronizza il tempo (BPM) e la fase con quello dell'altra traccia, se il BPM viene rilevato su entrambi. Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. - + Sincronizza il tempo (BPM) con quello dell'altra traccia, se il BPM viene rilevato su entrambi. Sync and Reset Key - + Sincronizza e Resetta Chiave Increases the pitch by one semitone. - + Incrementa il pitch di un semitono. Decreases the pitch by one semitone. - + Decrementa il pitch di un semitono @@ -12113,7 +12179,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. When disabled, the track is controlled by Mixxx playback controls. - + Quando disabilitato, la traccia è controllata dai controlli di riproduzione di Mixxx. @@ -12123,27 +12189,27 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Enable Passthrough - + Abiita Passthrough Indicates that the audio buffer is too small to do all audio processing. - + Indica che il buffer audio è troppo piccolo per elaborare tutto l'audio. Displays cover artwork of the loaded track. - + Mostra la copertina della traccia caricata Displays options for editing cover artwork. - + Visualizza le opzioni per modificare la copertina. Star Rating - + Valutazione Stelle @@ -12153,283 +12219,283 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Channel Peak Indicator - + Indicatore Picco Canale Drag this item to other decks/samplers, to crates and playlist or to external file manager. - + Trascina questo elemento su altri deck/campionatori, su contenitori e playlist o su un file manager esterno. Shows information about the track currently loaded in this deck. - + Mostra informazioni circa la traccia correntemente caricata in questo deck. Left click to jump around in the track. - + Click sinistro per saltare fra la traccia. Right click hotcues to edit their labels and colors. - + Click destro su hotcues per modificare le loro etichette e colori. Right click anywhere else to show the time at that point. - + Clicca con il destro in qualsiasi punto per vedere il tempo a quel punto. Channel L Peak Indicator - + Indicatore Picco Canale Sx Indicates when the left signal on the channel is clipping, - + Indica quando il segnale sinistro sul canale è in clipping, Channel R Peak Indicator - + Indicatore Picco Canale Dx Indicates when the right signal on the channel is clipping, - + Indica quando il segnale destro del canale è in clipping. Master L Peak Indicator - + Indicatore Picco Master Sx Indicates when the left signal on the master output is clipping, - + Indica quando il segnale sinistro sul master output è in clipping, Master R Peak Indicator - + Indicatore Picco Master Dx Indicates when the right signal on the master output is clipping, - + Indica quando il segnale destro sul master output è in clipping, Channel L Volume Meter - + Livello Volume Canale Sx Shows the current channel volume for the left channel. - + Mostra il volume corrente del canale sinistro. Channel R Volume Meter - + Livello Volume Canale Dx Shows the current channel volume for the right channel. - + Mostra il volume corrente del canale destro. Microphone Peak Indicator - + Indicatore Picco Microfono Indicates when the signal on the microphone is clipping, - + Indica quando il segnale del microfono è in clipping, Sampler Volume Meter - + Livello Volume Campionatore Shows the current sampler volume. - + Mostra il volume del campionatore attuale. Sampler Peak Indicator - + Indicatore Picco Campionatore Indicates when the signal on the sampler is clipping, - + Indica quando il segnale del campionatore è in clipping, Preview Deck Volume Meter - + Anteprima Deck Volume Meter Shows the current Preview Deck volume. - + Mostra Anteprima volume del Deck attuale. Preview Deck Peak Indicator - + Anteprima Indicatore Picchi Deck Indicates when the signal on the Preview Deck is clipping, - + Indica quando il segnale nell'Anteprima Deck è in clipping, Master Channel L Volume Meter - + Livello Volume Canale Master L Maximize Library - + Massimizza Libreria Microphone Talkover Ducking Strength - + Forza Ducking Talkover Microfono Prevents the pitch from changing when the rate changes. - + Impedisce che il tono cambi quando cambia la velocità. Changes the number of hotcue buttons displayed in the deck - + Modifica il numero di pulsanti hotcue visualizzati nel deck Starts playing from the beginning of the track. - + Inizia a riprodurre dall'inizio della traccia. Jumps to the beginning of the track and stops. - + Salta all'inizio della traccia e si arresta. Plays or pauses the track. - + Riproduce o pausa la traccia. (while playing) - + (quando riproduce) Opens the track properties editor - + Apre l'editor delle proprietà traccia Opens the track context menu. - + Apre il menu contestuale della traccia. (while stopped) - + (mentre è fermo) Cue - + Cue Headphone - + Cuffia Mute - + Muto Mutes the selected channel's audio in the master output. - + Rende muto il canale selezionato nell'output principale. Old Synchronize - + Vecchio Sincronizza (This skin should be updated to use Master Sync!) - + (Questa skin deve essere aggiornata per usare il Master Sync!) Syncs to the first deck (in numerical order) that is playing a track and has a BPM. - + Sincronizza con il primo deck (in ordine numerico) che stà riproducendo una traccia e ha un BPM. If no deck is playing, syncs to the first deck that has a BPM. - + Se nessun deck stà suonando, sincronizza al primo deck che ha un BPM. Decks can't sync to samplers and samplers can only sync to decks. - + I decks non possono sincronizzarsi con i campionatori e i campionatori possono sincronizzarsi solo con decks. Enable Master Sync - + Abilita Master Sync Tap to sync the tempo to other playing tracks or the master clock. - + Premi per sincronizzare il tempo ad un altra traccia in riproduzione oppure al master clock. Hold for at least a second to enable sync lock for this deck. - + Tieni per almeno un secondo per abilitare il blocco sync per questo deck. Decks with sync locked will all play at the same tempo, and decks that also have quantize enabled will always have their beats lined up. - + Decks con sync bloccato suoneranno con lo stesso tempo, e decks che hanno anche abilitato il quantizza avranno sempre le loro battute allineate. Resets the key to the original track key. - + Resetta la chiave alla chiave originale della traccia. Enable Sync Clock Master - + Abilita Master Sync Clock When enabled, this device will serve as the master clock for all other decks. - + Quando abilitato, questo dispositivo verrà utilizzato come clock principale per tutti gli altri decks. @@ -12441,17 +12507,17 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Changes the track pitch independent of the tempo. - + Cambia il tono della traccia indipendentemente dal tempo. Increases the pitch by 10 cents. - + Incrementa il tono di 10 centesimi. Decreases the pitch by 10 cents. - + Decrementa il tono di 10 centesimi. @@ -12461,42 +12527,42 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Adjust the pitch in addition to the speed slider pitch. - + Regola il tono in aggiunta al tono impostato dal cursore della velocità. Opens a menu to clear hotcues or edit their labels and colors. - + Apre un menu per cancellare gli hotcue o modificarne le etichette e i colori. Record Mix - + Registra il Mix Toggle mix recording. - + Abilita/disabilita registrazione del mix. Enable Live Broadcasting - Abilita Live Broadcasting + Abilita Trasmissione Live Stream your mix over the Internet. - + Trasmette il tuo mix su Internet. Provides visual feedback for Live Broadcasting status: - Fornisce feedback visivo dello stato del Live Broadcasting: + Fornisce feedback visivo dello stato della Trasmissione Live: disabled, connecting, connected, failure. - + disabilitato, in connessione, connesso, guasto. @@ -12506,48 +12572,48 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Blue for passthrough enabled. - + Blu per inoltro diretto abilitato. Playback will resume where the track would have been if it had not entered the loop. - + La riproduzione riprenderà dove sarebbe stata la traccia se non fosse entrata nel loop. Loop Exit - + Uscita Loop Turns the current loop off. - + Interrompe il loop attuale. Slip Mode - + Modo Slip When active, the playback continues muted in the background during a loop, reverse, scratch etc. - + Quando attivo, la riproduzione continua muta in sottofondo durante un loop, un reverse, scratch etc. Once disabled, the audible playback will resume where the track would have been. - + Una volta disabilitata, la riproduzione udibile riprenderà dove sarebbe stata la traccia. Track Key The musical key of a track - + Chiave Traccia Displays the musical key of the loaded track. - + Visualizza la chiave musicale della traccia caricata. @@ -12557,87 +12623,87 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Displays the current time. - + Mostra l'ora attuale. Audio Latency Usage Meter - + Misuratore Utilizzo Latenza Audio Displays the fraction of latency used for audio processing. - + Visualizza la frazione di latenza utilizzata per l'elaborazione audio. A high value indicates that audible glitches are likely. - + Un valore elevato indica che sono probabili anomalie udibili. Do not enable keylock, effects or additional decks in this situation. - + Non abilitare keylock, effetti o deck aggiuntivi in questa situazione. Audio Latency Overload Indicator - + Indicatore Sovraccarico Latenza Audio If Vinyl control is enabled, displays time-coded vinyl signal quality (see Preferences -> Vinyl Control). - + Se è abilitato il controllo tramite Vinile, mostra la qualità del segnale codificato (vedi Opzioni > Controllo vinile). Drop tracks from library, external file manager, or other decks/samplers here. - + Rilascia tracce dalla libreria, dal file manager esterno o da altri deck/campionatore qui. Shows the current master volume for the right channel. - + Mostra il volume corrente del canale master destro. Change the crossfader curve in Preferences -> Crossfader - + Modifica la curva crossfader in Preferenze -> Crossfader Crossfades the headphone output between the master mix and cueing (PFL or Pre-Fader Listening) signal. - + Dissolve in modo incrociato l'uscita delle cuffie tra il mix master e il segnale cueing (PFL o Pre-Fader Listening). Crossfader Orientation - + Orientamento Crossfader Set the channel's crossfader orientation. - + Imposta l'orientamento del crossfader del canale. Either to the left side of crossfader, to the right side or to the center (unaffected by crossfader) - + Sul lato sinistro del crossfader, sul lato destro o al centro (non influenzato dal crossfader) Activate Vinyl Control from the Menu -> Options. - + Attiva il Controllo Vinile dal Menu -> Opzioni. Change the step-size in the Preferences -> Interface menu. - + Modifica l'incremento in Preferenze -> Menu interfaccia. Displays the current musical key of the loaded track after pitch shifting. - + Mostra la chiave musicale attuale della traccia caricata dopo la traslazione pitch. @@ -12647,7 +12713,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Fast rewind through the track. - + Indietro veloce attraverso la traccia. @@ -12657,24 +12723,24 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Fast forward through the track. - + Avanti veloce attraverso la traccia. Jumps to the end of the track. - + Salta alla fine della traccia. Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. - + Configura il tono con una chiave che permetta una transizione armonica all'altra traccia. Richiede che sia stata calcolata una chiave su entrambe le tracce dei decks coinvolti. Pitch Control - + Controllo Tono @@ -12684,7 +12750,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Displays the current playback rate of the track. - + Visualizza la velocità di riproduzione corrente della traccia. @@ -12694,7 +12760,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. When active the track will repeat if you go past the end or reverse before the start. - + Quando è attiva, la traccia si ripeterà se si supera la fine o si retrocederà prima dell'inizio. @@ -12709,17 +12775,17 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Hotcue - + Hotcue If hotcue is set, jumps to the hotcue. - + Se hotcue è impostato, salta all'hotcue. If hotcue is not set, sets the hotcue to the current play position. - + Se hotcue non è impostato, imposta l'hotcue sulla posizione di riproduzione corrente. @@ -12729,17 +12795,17 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Absolute mode - track position equals needle position and speed. - + Modo assoluto - la posizione della traccia equivale alla posizione e alla velocità della puntina. Relative mode - track speed equals needle speed regardless of needle position. - + Modo relativo: la velocità della traccia è uguale alla velocità della puntina indipendentemente dalla posizione della puntina. Constant mode - track speed equals last known-steady speed regardless of needle input. - + Modo costante: la velocità della traccia è uguale all'ultima velocità costante nota indipendentemente dall'input della puntina. @@ -12754,47 +12820,47 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Green for control enabled. - + Verde per controllo abilitato. Blinking yellow for when the needle reaches the end of the record. - + Lampeggia giallo quando la puntina raggiunge la fine del disco. Loop-In Marker - + Marcatore Loop-In Loop-Out Marker - + Marcatore Loop-Out Loop Halve - + Dimezza Loop Halves the current loop's length by moving the end marker. - + Dimezza la lunghezza del loop corrente spostando il marcatore finale. Deck immediately loops if past the new endpoint. - + Il deck passa immediatamente in loop se supera il nuovo endpoint. Loop Double - + Raddoppia Loop Doubles the current loop's length by moving the end marker. - + Raddoppia la lunghezza del loop corrente spostando il marcatore finale. @@ -12804,52 +12870,52 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Toggles the current loop on or off. - + Attiva/disattiva il loop attuale. Works only if Loop-In and Loop-Out marker are set. - + Funziona solo se i marcatori Loop-In e Loop-Out sono impostati. Hint: Change the default cue mode in Preferences -> Interface. - + Suggerimento: Cambia il modo cue di default in Preferenze -> Interfaccia. Vinyl Cueing Mode - + Modo Cueing Vinile Determines how cue points are treated in vinyl control Relative mode: - + Determina il modo in cui i cue points vengono trattati nel Modo di Controllo Vinile Relativo: Off - Cue points ignored. - + Off - Punti Cue ignorati. One Cue - If needle is dropped after the cue point, track will seek to that cue point. - + Un Cue - Se la puntina è rilasciata dopo il punto cue, la traccia si posizionerà a quel punto cue. Track Time - + Tempo Traccia Track Duration - + Durata Traccia Displays the duration of the loaded track. - + Mostra la durata della traccia caricata, @@ -12859,42 +12925,42 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Track Artist - + Artista Traccia Displays the artist of the loaded track. - + Mostra l'artista della traccia caricata. Track Title - + Titolo Traccia Displays the title of the loaded track. - + Mostra il titolo della traccia caricata. Track Album - + Album Traccia Displays the album name of the loaded track. - + Mostra il nome dell'album della traccia caricata. Track Artist/Title - + Traccia Artista/Titolo Displays the artist and title of the loaded track. - + Mostra l'artista e il titolo della traccia caricata. @@ -12902,12 +12968,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Hiding tracks - + Nascondi tracce The selected tracks are in the following playlists:%1Hiding them will remove them from these playlists. Continue? - + Le traccie selezionate sono nelle seguenti playlists:%1 Nascondendole verranno rimosse da quelle playlists. Continuo? @@ -12915,47 +12981,47 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Export finished - + Esportazione terminata Exporting %1 - + Esportazione di %1 Overwrite Existing File? - + Sovrascrivere il File Esistente? "%1" already exists, overwrite? - + "%1" esiste già, sovrascrivere? &Overwrite - + &Sovrascrivi Over&write All - + Sovrascrivi &Tutti &Skip - + S&alta Skip &All - + Salta T&utti Export Error - + Errore di Esportazione @@ -12972,22 +13038,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Export process was canceled - + L'esportazione è stata cancellata Error removing file %1: %2. Stopping. - + Errore rimozione file %1: %2. Interruzione in corso. Error exporting track %1 to %2: %3. Stopping. - + Errore esportando traccia %1 in %2: %3. Interruzione in corso. Error exporting tracks - + Errore esportando tracce @@ -12996,22 +13062,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Traktor - + Traktor (loading) Traktor - + (caricamento) Traktor Error Loading Traktor Library - + Errore Caricamento Libreria Traktor There was an error loading your Traktor library. Some of your Traktor tracks or playlists may not have loaded. - + Si è verificato un errore in caricamento della libreria Traktor. Alcuni dei vostri brani o le playlist Traktor non possono essere caricati. @@ -13019,27 +13085,27 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Timer (Fallback) - + Timer (alternativa) MESA vblank_mode = 1 - + MESA vblank_mode = 1 Wait for Video sync - + Attesa per Video Sync Sync Control - + Controllo Sync Free + 1 ms (for benchmark only) - + Libero + 1 ms (solo per benchmark) @@ -13047,17 +13113,17 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Time until charged: %1 - + Tempo al caricamento: %1 Time left: %1 - + Tempo rimasto: %1 Battery fully charged. - + Batteria caricata completamente. @@ -13065,12 +13131,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. No color - + No color Custom color - + Colore personalizzato @@ -13079,7 +13145,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Choose new cover change cover art location - + Scegli nuova copertina @@ -13091,17 +13157,17 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Reload from file/folder reload cover art from file metadata or folder - + Ricarica da file/cartella Image Files - + Files Immagine Change Cover Art - + Cambia la copertina @@ -13109,32 +13175,32 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Cue number - + Numero cue Cue position - + Posizione cue Edit cue label - + Modifica etichetta cue Label... - + Etichetta... Delete this cue - + Cancella questa cue Hotcue #%1 - + Hotcue #%1 @@ -13156,7 +13222,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. No effect chain loaded. - + Nessuna catena effetto caricata. @@ -13180,7 +13246,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. &File - + &File @@ -13190,115 +13256,115 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Loads a track in deck %1 - + Carica una traccia sul deck %1 Open - + Apri &Exit - + &Esci Quits Mixxx - + Esce da Mixxx Ctrl+q - + Ctrl+q &Library - + &Libreria &Rescan Library - + &Riscansiona la libreria Rescans library folders for changes to tracks. - + Riscansiona le cartelle della libreria per rilevare cambiamenti alle tracce. Create &New Playlist - + Crea &Nuova Playlist Create a new playlist - + Crea una nuova playlist Ctrl+n - + Ctrl+n Create New &Crate - Crea Nuova &Cesta + Crea Nuovo &Contenitore Create a new crate - Crea una nuova cesta + Crea un nuovo contenitore Ctrl+Shift+N - + Ctrl+Shift+N &View - + &Vista May not be supported on all skins. - + Potrebbe non essere supportata su tutte le skins. Show Skin Settings Menu - + Mostra Menu Impostazioni Skin Show the Skin Settings Menu of the currently selected Skin - + Mostra Menu Impostazioni Skin della Skin correntemente selezionata Ctrl+1 Menubar|View|Show Skin Settings - + Ctrl+1 Show Microphone Section - + Mostra Sezione Microfono Show the microphone section of the Mixxx interface. - + Mostra la sezione microfono della interfaccia Mixxx. Ctrl+2 Menubar|View|Show Microphone Section - + Ctrl+2 @@ -13314,7 +13380,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Ctrl+3 Menubar|View|Show Vinyl Control Section - + Ctrl+3 @@ -13330,54 +13396,54 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Ctrl+4 Menubar|View|Show Preview Deck - + Ctrl+4 Show Cover Art - + Mostra Copertina Show cover art in the Mixxx interface. - + Mostra copertina nell'interfaccia Mixxx. Ctrl+6 Menubar|View|Show Cover Art - + Ctrl+6 Maximize Library - + Massimizza Libreria Maximize the track library to take up all the available screen space. - + Massimizza la libreria tracce per occupare tutto lo spazio disponibile sullo schermo. Space Menubar|View|Maximize Library - + Spazio &Full Screen - + &Schermo Intero Display Mixxx using the full screen - + Visualizza Mixxx usando lo schermo intero &Options - + &Opzioni @@ -13387,7 +13453,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Use timecoded vinyls on external turntables to control Mixxx - + Usa vinili timecoded su piatti esterni per controllare Mixxx @@ -13397,192 +13463,192 @@ Use this to change only the effected (wet) signal with EQ and filter effects. &Record Mix - + &Registra Mix Record your mix to a file - + Registra il tuo mix su un file Ctrl+R - + Ctrl+R Enable Live &Broadcasting - Abilita Live &Broadcasting + Abilita Trasmissione &Live Stream your mixes to a shoutcast or icecast server - + Invia i tuoi mix a un server shoutcast o icecast Ctrl+L - + Ctrl+L Enable &Keyboard Shortcuts - + Attiva &Scorciatoie Tastiera Toggles keyboard shortcuts on or off - + Attiva/disattiva le scorciatoie da tastiera Ctrl+` - + Ctrl+` &Preferences - + &Preferenze Change Mixxx settings (e.g. playback, MIDI, controls) - + Modifica le impostazioni di Mixxx (es. riproduzione, MIDI, controlli) &Developer - + &Sviluppatore &Reload Skin - + &Ricarica Skin Reload the skin - + Ricarica la skin Ctrl+Shift+R - + Ctrl+Shift+R Developer &Tools - + Strumenti Sviluppa&tori Opens the developer tools dialog - + Apre la dialog strumenti sviluppatore Ctrl+Shift+T - + Ctrl+Shift+T Stats: &Experiment Bucket - + Statistiche: Cassetto &Esperimento Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. - + Abilita modo esperimento. Colleziona statistiche nel cassetto di tracciamento EXPERIMENT. Ctrl+Shift+E - + Ctrl+Shift+E Stats: &Base Bucket - + Statistiche: Cassetto &Base Enables base mode. Collects stats in the BASE tracking bucket. - + Abilita modo base. Colleziona statistiche nel cassetto tracciamento BASE. Ctrl+Shift+B - + Ctrl+Shift+B Deb&ugger Enabled - + Deb&ugger Abilitato Enables the debugger during skin parsing - + Abilita il debugger durante l'analisi skin Ctrl+Shift+D - + Ctrl+Shift+D &Help - + &Aiuto &Community Support - + Supporto &Comunità Get help with Mixxx - + Ottieni aiuto su Mixxx &User Manual - + Manuale &Utente Read the Mixxx user manual. - + Legge il manuale utente di Mixxx. &Keyboard Shortcuts - + Scorciatoie Tastiera Speed up your workflow with keyboard shortcuts. - + Velocizza il tuo flusso di lavoro con le scorciatoie da tastiera. &Translate This Application - + &Traduci Questa Applicazione Help translate this application into your language. - + Aiuta a tradurre questo programma nella tua lingua. &About - + &Informazioni About the application - + Informazioni sull'applicazione @@ -13590,26 +13656,26 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Passthrough - + Passthrough - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - + Pronto a partire, analizzo.. - - + + Loading track... Text on waveform overview when file is cached from source - + Caricamento traccia... - + Finalizing... Text on waveform overview during finalizing of waveform analysis - + Finalizzazione... @@ -13618,84 +13684,84 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Clear input Clear the search bar input field - + Pulisce input Ctrl+F Search|Focus - + Ctrl+F Search noun - + Cerca Clear input - + Pulisce input Search... Shown in the library search bar when it is empty. - + Cerca... Clear the search bar input field - + Pulisce il campo della barra di ricerca Enter a string to search for - + Inserisci una stringa da cercare Use operators like bpm:115-128, artist:BooFar, -year:1990 - + Usa operatori come bpm:115-128, artist:BooFar, -year:1990 For more information see User Manual > Mixxx Library - + Per maggiori informazioni vedi il Manuale Utente > Mixxx Library Shortcut - + Scorciatoia Ctrl+F - + Ctrl+F Focus Give search bar input focus - + Focus Ctrl+Backspace - + Ctrl+Backspace Esc - + Esc Exit search Exit search bar and leave focus - + Esci dalla ricerca @@ -13708,22 +13774,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Deck - + Deck Sampler - + Campionatore Add to Playlist - + Aggiungi a Playlist Crates - Ceste + Contenitori @@ -13733,7 +13799,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Update external collections - + Aggiorna collezioni estrerne @@ -13748,23 +13814,23 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Select Color - + Seleziona Colore Reset Reset metadata in right click track context menu in library - + Reimposta Add to Auto DJ Queue (bottom) - Aggiungi alla coda di Auto DJ (in fondo) + Aggiunge alla coda di Auto DJ (in fondo) Add to Auto DJ Queue (top) - Aggiungi alla coda di Auto DJ (in cima) + Aggiunge alla coda di Auto DJ (in cima) @@ -13784,62 +13850,62 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Remove from Playlist - + Rimuovi dalla Playlist Remove from Crate - Togli da Cesta + Togli da Contenitore Hide from Library - + Nascondi dalla Libreria Unhide from Library - + Mostra dalla Libreria Purge from Library - + Elimina dalla Libreria Properties - + Proprietà Open in File Browser - + Apri nel File Manager Import From File Tags - + Importa Da File Tags Import From MusicBrainz - + Importa Da MusicBrainz Export To File Tags - + Esporta su File Tags BPM and Beatgrid - + BPM e Grigliabattute Play Count - + Conteggio Play @@ -13849,27 +13915,27 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Cue Point - + Punto Cue Hotcues - + Hotcue Intro - + Intro Outro - + Outro Loop - + Loop @@ -13889,32 +13955,32 @@ Use this to change only the effected (wet) signal with EQ and filter effects. All - + Tutto Lock BPM - + Blocca BPM Unlock BPM - + Sblocca BPM Double BPM - + Raddoppia BPM Halve BPM - + Dimezza BPM 2/3 BPM - + 2/3 BPM @@ -13924,17 +13990,17 @@ Use this to change only the effected (wet) signal with EQ and filter effects. 4/3 BPM - + 4/3 BPM 3/2 BPM - + 3/2 BPM Reset BPM - + Reimposta BPM @@ -13944,17 +14010,17 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Sampler %1 - + Campionatore %1 Importing metadata of %n track(s) from file tags - + Importo metadata di %n traccia(e) dal tags fileImportazione metadati di %n traccia(e) dal tags file Marking metadata of %n track(s) to be exported into file tags - + Scrivo metadati di %n traccia(e) da esportare in tags fileScrittura metadati di %n traccia(e) da esportare in tags file @@ -13997,97 +14063,97 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Add to New Crate - Aggiungi a Nuova Cesta + Aggiungi a Nuovo Contenitore Scaling BPM of %n track(s) - + Scalatura BPM di %n traccia(e)Scalatura BPM di %n traccia(e) Locking BPM of %n track(s) - + Blocco BPM di %n traccia(e)Blocco BPM di %n traccia(e) Unlocking BPM of %n track(s) - + Sblocco BPM di %n traccia(e)Sblocco BPM di %n traccia(e) Setting color of %n track(s) - + Imposto colore di %n traccia(e)Impostazione colore di %n traccia(e) Resetting play count of %n track(s) - + Azzeramento del conteggio play di %n traccia(e)Azzeramento del conteggio play di %n traccia(e) Resetting beats of %n track(s) - + Reimpostazione beats di %n traccia(e)Reimpostazione battute di %n traccia(e) Clearing rating of %n track(s) - + Cancellazione punteggio di %n traccia(e)Cancellazione punteggio di %n traccia(e) Removing main cue from %n track(s) - + Rimozione del main cue da %n traccia(e)Rimozione del main cue da %n traccia(e) Removing outro cue from %n track(s) - + Rimozione dell'outro cue da %n traccia(e)Rimozione dell'outro cue da %n traccia(e) Removing intro cue from %n track(s) - + Rimozione dell'intro cue da %n traccia(e)Rimozione dell'intro cue da %n traccia(e) Removing loop cues from %n track(s) - + Rimozione loop cues da %n traccia(e)Rimozione loop cues da %n traccia(e) Removing hot cues from %n track(s) - + Rimozione hot cues da %n traccia(e)Rimozione hot cues da %n traccia(e) Resetting keys of %n track(s) - + Rimozione keys da %n traccia(e)Rimozione keys da %n traccia(e) Resetting replay gain of %n track(s) - + Rimozione replay gain da %n traccia(e)Rimozione replay gain da %n traccia(e) Resetting waveform of %n track(s) - + Rimozione di forma d'onda da %n traccia(e)Rimozione di forma d'onda da %n traccia(e) Resetting all performance metadata of %n track(s) - + Rimozione metadati performance da %n traccia(e)Rimozione metadati performance da %n traccia(e) Setting cover art of %n track(s) - + Imposto copertina di %n traccia(e)Imposto copertina di %n traccia(e) Reloading cover art of %n track(s) - + Ricaricamento copertina di %n traccia(e)Ricaricamento copertina di %n traccia(e) @@ -14096,7 +14162,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. ESC Focus - + ESC @@ -14104,7 +14170,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Show or hide columns. - + Mostra o nasconde colonne. @@ -14112,22 +14178,22 @@ Use this to change only the effected (wet) signal with EQ and filter effects. (GLSL) - + (GLSL) (GL) - + (GL) (GLSL ES) - + (GLSL) (GL ES) - + (GLSL) @@ -14140,7 +14206,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Mixxx may wait to modify files until they are not loaded to any decks or samplers. If you do not see changed metadata in other programs immediately, eject the track from all decks and samplers or shutdown Mixxx. - + Mixxx può attendere prima di modificare files fino a che essi non vengono caricati in qualsiasi decks o campionatori. Se non vedi immediatamente cambiamenti nei metadati in altri programmi, espelli la traccia da tutti i decks e campionatori o chiudi Mixxx. @@ -14148,7 +14214,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Abort - + Termina @@ -14156,7 +14222,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. No network access - + Nessun accesso alla rete \ No newline at end of file diff --git a/res/translations/mixxx_ja.ts b/res/translations/mixxx_ja.ts index 071132c6b59..6e544882d62 100644 --- a/res/translations/mixxx_ja.ts +++ b/res/translations/mixxx_ja.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates レコードボックス - + Remove Crate as Track Source - + Auto DJ オートDJ - + Add Crate as Track Source トラックソースを追加 @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. トラックを読み込めませんでした @@ -640,12 +640,12 @@ ファイルを作成しました - + Mixxx Library Mixxx ライブラリ - + Could not load the following file because it is in use by Mixxx or another application. Mixxxもしくは他のアプリケーションで使用中のため、以下のファイルを読み込めませんでした @@ -3362,37 +3362,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: 寄付する方法: - + And special thanks to: そしてスペシャルサンクスを: - + Past Developers 過去の開発 - + Past Contributors 過去の開発 - + Official Website - + Donate @@ -7285,123 +7285,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year 発売年 - + Title タイトル - - + + Artist アーティスト - - + + Album アルバム - + Album Artist アルバム アーティスト - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply 適用(&A) - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7896,51 +7896,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8099,27 +8089,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner ライブラリースキャナー - + It's taking Mixxx a minute to scan your music library, please wait... ミュージックライブラリをスキャンするのに若干時間がかかります。しばらくお待ちください。 - + Cancel キャンセル - + Scanning: - + Scanning cover art (safe to cancel) @@ -8388,39 +8378,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit 終了の確認 - + A deck is currently playing. Exit Mixxx? デッキは現在再生中です。Mixxxを終了しますか? - + A sampler is currently playing. Exit Mixxx? サンプラーは現在再生中です。MIXXXを終了しますか? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8537,58 +8527,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan スキャン - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13556,20 +13546,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects.パススルー - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_ko.ts b/res/translations/mixxx_ko.ts index 6d4333fb4b0..16adc30ffff 100644 --- a/res/translations/mixxx_ko.ts +++ b/res/translations/mixxx_ko.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates 상자 - + Remove Crate as Track Source 트랙 영역에 삭제 - + Auto DJ 자동 디제잉 - + Add Crate as Track Source 트랙 영역에 추가 @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. 트랙을 불러올 수 없습니다. @@ -640,12 +640,12 @@ 파일 생성 완료 - + Mixxx Library Mixxx 라이브러리 - + Could not load the following file because it is in use by Mixxx or another application. Mixxx 또는 다른 프로그램에 의해 사용되고 있어서 다음 파일을 로드할 수 없었습니다. @@ -3361,37 +3361,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -7285,123 +7285,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year 년도 - + Title 제목 - - + + Artist 악곡가 - - + + Album 앨범 - + Album Artist 앨범 작가 - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7896,51 +7896,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8099,27 +8089,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8385,39 +8375,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8532,58 +8522,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13551,20 +13541,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_lb.ts b/res/translations/mixxx_lb.ts index 127c8cbc34d..36dbcf68c61 100644 --- a/res/translations/mixxx_lb.ts +++ b/res/translations/mixxx_lb.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Datei - + Remove Crate as Track Source - + Auto DJ Auto Dj - + Add Crate as Track Source @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Konnt net gelueden gin @@ -640,12 +640,12 @@ - + Mixxx Library Mixxx Library - + Could not load the following file because it is in use by Mixxx or another application. Konnt net gelueden gin, wel et vun Mixx oder eng anner applicatioun benotzt gett. @@ -3361,37 +3361,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -7284,123 +7284,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Joër - + Title Titel - - + + Artist Kënschtler - - + + Album Album - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7895,51 +7895,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8098,27 +8088,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8384,39 +8374,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8531,58 +8521,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13550,20 +13540,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_lt.ts b/res/translations/mixxx_lt.ts index 451c516fe21..13c4c70a8c9 100644 --- a/res/translations/mixxx_lt.ts +++ b/res/translations/mixxx_lt.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Paketai - + Remove Crate as Track Source - + Auto DJ Automatinis DJ - + Add Crate as Track Source @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Negalima įkrauti takelio. @@ -640,12 +640,12 @@ - + Mixxx Library Mixxx Biblioteka - + Could not load the following file because it is in use by Mixxx or another application. Negalima įkrauti šios bylos, nes ji naudojama Mixxx ar kitos programos. @@ -3361,37 +3361,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -7284,123 +7284,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Metai - + Title Pavadinimas - - + + Artist Atlikėjas - - + + Album Albumas - + Album Artist Albumas Atlikėjas - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7895,51 +7895,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8098,27 +8088,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8384,39 +8374,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8531,58 +8521,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13550,20 +13540,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_lv.ts b/res/translations/mixxx_lv.ts index 90008d3ac29..540be015404 100644 --- a/res/translations/mixxx_lv.ts +++ b/res/translations/mixxx_lv.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Grozi - + Remove Crate as Track Source - + Auto DJ Auto DJ - + Add Crate as Track Source @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Nevar ielādēt celiņu @@ -640,12 +640,12 @@ - + Mixxx Library Mixxx bibliotēka - + Could not load the following file because it is in use by Mixxx or another application. Nevar ielādēt šo failu, jo to patreiz lieto Mixxx vai cita aplikācija. @@ -3361,37 +3361,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -7284,123 +7284,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Gads - + Title Nosaukums - - + + Artist Izpildītājs - - + + Album Albūms - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7895,51 +7895,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8098,27 +8088,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8384,39 +8374,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8531,58 +8521,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Skenēt - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13550,20 +13540,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_mi.ts b/res/translations/mixxx_mi.ts index a3c730090b4..e04ff0729fb 100644 --- a/res/translations/mixxx_mi.ts +++ b/res/translations/mixxx_mi.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates - + Remove Crate as Track Source - + Auto DJ - + Add Crate as Track Source @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. @@ -640,12 +640,12 @@ - + Mixxx Library - + Could not load the following file because it is in use by Mixxx or another application. @@ -3361,37 +3361,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -7284,123 +7284,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Tau - + Title Taitara - - + + Artist Mataoro - - + + Album Pukaemi - + Album Artist Mataoro Pukaemi - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7895,51 +7895,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8098,27 +8088,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8384,39 +8374,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8531,58 +8521,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13550,20 +13540,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_mk.ts b/res/translations/mixxx_mk.ts index df5c9776529..9566f567897 100644 --- a/res/translations/mixxx_mk.ts +++ b/res/translations/mixxx_mk.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates - + Remove Crate as Track Source - + Auto DJ Авто-Диџеј - + Add Crate as Track Source @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Не може да се вчита датотеката @@ -640,12 +640,12 @@ - + Mixxx Library Mixxx библиотека - + Could not load the following file because it is in use by Mixxx or another application. Не може да се вчитаат следните датотеки поради тоа што се користат од Mixxx или друга апликација. @@ -3361,37 +3361,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -7284,123 +7284,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Година - + Title Наслов - - + + Artist Изведувач - - + + Album Албум - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7895,51 +7895,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8098,27 +8088,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8384,39 +8374,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8531,58 +8521,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13550,20 +13540,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_ml.ts b/res/translations/mixxx_ml.ts index 1d6abc965e5..d27bcfeeaa2 100644 --- a/res/translations/mixxx_ml.ts +++ b/res/translations/mixxx_ml.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates - + Remove Crate as Track Source - + Auto DJ - + Add Crate as Track Source @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. @@ -640,12 +640,12 @@ - + Mixxx Library - + Could not load the following file because it is in use by Mixxx or another application. @@ -3361,37 +3361,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -7284,123 +7284,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year വര്‍ഷം - + Title ശീര്‍ഷകം - - + + Artist ഗായകന്‍ - - + + Album ആല്‍ബം - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply &നടപ്പിലാക്കുക - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7895,51 +7895,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8098,27 +8088,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel റദ്ദാക്കുക - + Scanning: - + Scanning cover art (safe to cancel) @@ -8384,39 +8374,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8531,58 +8521,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13550,20 +13540,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_mn.ts b/res/translations/mixxx_mn.ts index 0a9d9eb6940..f498f7270da 100644 --- a/res/translations/mixxx_mn.ts +++ b/res/translations/mixxx_mn.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates - + Remove Crate as Track Source - + Auto DJ Автомат ДиЖэи - + Add Crate as Track Source @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Уншиж чадахгүй байна @@ -640,12 +640,12 @@ - + Mixxx Library Мixxx-ийн Сан - + Could not load the following file because it is in use by Mixxx or another application. @@ -3361,37 +3361,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -7284,123 +7284,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Он - + Title - - + + Artist Уран бүтээлч - - + + Album Цомог - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7895,51 +7895,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8098,27 +8088,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8384,39 +8374,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8531,58 +8521,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13550,20 +13540,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_mr.qm b/res/translations/mixxx_mr.qm index 6cc952b6595d1388ffa94e5a4d19924087f9c64d..44460b8b20b9086e781b803bd04e2d53ed4834a9 100644 GIT binary patch literal 9688 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 delta 685 zcmXZZOGs2<6bJA#dcQk!pEFGo-fU!s6e^8cG~i+aNl|-=A#MsXK^GD|@KMobq8F2h zi%!u%K?H$88q#ds47KPMnL>{VBoU&poz*5Nr09(Q`)z(7AAio_oNw{q=dIbyY=8CK zk9)TlQd^##cu-v4M^v$m=*VmF71T4(-V5EMfwQF2cd2~VjckI>p1`N1o(~XJPD6be z8bxT&lggF@ZX>C+%Mx6H;W)G|Li;{7wysDQpE|Y|i9&r)n}p_tz%S5xM2G!rGQb4X zb!c3LwnfLRdg(Vp+4YM)iHC3tG^e1|4((HwbAOwqaZB!0>3GZ_fX@B85FW zH}zd|T~LiVi6=Yd>#h$HMep!CZx@$h9v_N!@};E4ZfvZu8tc*d(}o?KuRhNoz2Aj& zO)11LQ&n73YZiJFS_Qv}r%a=(Z)kX6sAc#Zzx8(W$z(S-CmT4CTH;&rTAr@!;lcVd F{{igOvvmLf diff --git a/res/translations/mixxx_mr.ts b/res/translations/mixxx_mr.ts index 5597406df3b..cf82cee8f34 100644 --- a/res/translations/mixxx_mr.ts +++ b/res/translations/mixxx_mr.ts @@ -13,30 +13,30 @@ Analyze - + Analyze AutoDJFeature - + Crates - + Crates - + Remove Crate as Track Source - + Remove Crate as Track Source - + Auto DJ - + Auto DJ - + Add Crate as Track Source - + Add Crate as Track Source @@ -45,25 +45,27 @@ Banshee - + Banshee Error loading Banshee database - + Error loading Banshee database Banshee database file not found at - + Banshee database file not found at + There was an error loading your Banshee database at - + There was an error loading your Banshee database at + @@ -71,12 +73,12 @@ Add to Auto DJ Queue (bottom) - + Add to Auto DJ Queue (bottom) Add to Auto DJ Queue (top) - + Add to Auto DJ Queue (top) @@ -86,17 +88,17 @@ Import Playlist - + Import Playlist Playlist Creation Failed - + Playlist Creation Failed An unknown error occurred while creating playlist: - + An unknown error occurred while creating playlist: @@ -109,18 +111,18 @@ Add to Auto DJ Queue (bottom) - + Add to Auto DJ Queue (bottom) Create New Playlist - + Create New Playlist Add to Auto DJ Queue (top) - + Add to Auto DJ Queue (top) @@ -140,45 +142,45 @@ Duplicate - + Duplicate Import Playlist - + Import Playlist Export Track Files - + Export Track Files Analyze entire Playlist - + Analyze entire Playlist Enter new name for playlist: - + Enter new name for playlist: Duplicate Playlist - + Duplicate Playlist Enter name for new playlist: - + Enter name for new playlist: Export Playlist - + Export Playlist @@ -188,7 +190,7 @@ Rename Playlist - + Rename Playlist @@ -225,13 +227,13 @@ Playlist Creation Failed - + Playlist Creation Failed An unknown error occurred while creating playlist: - + An unknown error occurred while creating playlist: @@ -260,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. @@ -640,12 +642,12 @@ - + Mixxx Library - + Could not load the following file because it is in use by Mixxx or another application. @@ -1808,7 +1810,7 @@ Add to Auto DJ Queue (bottom) - + Add to Auto DJ Queue (bottom) @@ -1818,7 +1820,7 @@ Add to Auto DJ Queue (top) - + Add to Auto DJ Queue (top) @@ -2863,7 +2865,7 @@ Auto DJ - + Auto DJ @@ -3199,12 +3201,12 @@ Export Track Files - + Export Track Files Duplicate - + Duplicate @@ -3225,7 +3227,7 @@ Crates - + Crates @@ -3361,37 +3363,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -3443,7 +3445,7 @@ Analyze - + Analyze @@ -3649,7 +3651,7 @@ last sound. Auto DJ - + Auto DJ @@ -7086,7 +7088,7 @@ Select from different types of displays for the waveform, which differ primarily Auto DJ - + Auto DJ @@ -7284,123 +7286,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year वर्ष - + Title शिर्षक - - + + Artist कलाकार - - + + Album अल्बम - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7895,51 +7897,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8074,7 +8066,7 @@ support. Import Playlist - + Import Playlist @@ -8098,27 +8090,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8384,39 +8376,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8525,64 +8517,64 @@ Do you want to select an input device? Create New Playlist - + Create New Playlist QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -10144,7 +10136,7 @@ Fully right: end of the effect period Crates - + Crates @@ -13550,20 +13542,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -13680,7 +13672,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Crates - + Crates @@ -13716,12 +13708,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Add to Auto DJ Queue (bottom) - + Add to Auto DJ Queue (bottom) Add to Auto DJ Queue (top) - + Add to Auto DJ Queue (top) @@ -13917,12 +13909,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Create New Playlist - + Create New Playlist Enter name for new playlist: - + Enter name for new playlist: @@ -13934,7 +13926,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Playlist Creation Failed - + Playlist Creation Failed @@ -13949,7 +13941,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. An unknown error occurred while creating playlist: - + An unknown error occurred while creating playlist: diff --git a/res/translations/mixxx_ms.ts b/res/translations/mixxx_ms.ts index c014ad6401a..f87475bbbcd 100644 --- a/res/translations/mixxx_ms.ts +++ b/res/translations/mixxx_ms.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates - + Remove Crate as Track Source - + Auto DJ DJ Automatik - + Add Crate as Track Source @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Tidak dapat memuatkan trek. @@ -640,12 +640,12 @@ - + Mixxx Library Pustaka Mixxx - + Could not load the following file because it is in use by Mixxx or another application. Tidak dapat memuatkan fail berikut kerana ia sedang digunakan oleh Mixxx atau aplikasi lain. @@ -3361,37 +3361,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -7284,123 +7284,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Tahun - + Title Tajuk - - + + Artist Artis - - + + Album Album - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7895,51 +7895,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8098,27 +8088,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8384,39 +8374,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8531,58 +8521,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13550,20 +13540,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_my.ts b/res/translations/mixxx_my.ts index febe852d7fd..4df2ecb9be8 100644 --- a/res/translations/mixxx_my.ts +++ b/res/translations/mixxx_my.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates အကန့်ကန့်ရန် - + Remove Crate as Track Source မူရင်း အသံပုဒ် မှ အကုန့်ကန့်ကာ ဖယ်ရှားပါ - + Auto DJ အော်တို ဒီဂျေ - + Add Crate as Track Source ရင်းမြစ် တေးဂီတ အဖြစ် ထည့်သွင်းဖန်တီးရန် @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. တေးဂီတပုဒ် မဖွင့်နိုင်ပါ @@ -640,12 +640,12 @@ - + Mixxx Library - + Could not load the following file because it is in use by Mixxx or another application. @@ -3361,37 +3361,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -7284,123 +7284,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year ခုနှစ် - + Title ခေါင်းစဉ် - - + + Artist အဆိုတော် - - + + Album - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7895,51 +7895,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8098,27 +8088,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8384,39 +8374,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8533,58 +8523,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan ထောက်လှမ်းရှာဖွေရန် - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13552,20 +13542,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_nb.ts b/res/translations/mixxx_nb.ts index fb8590247d4..1561ee33e65 100644 --- a/res/translations/mixxx_nb.ts +++ b/res/translations/mixxx_nb.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Kasser - + Remove Crate as Track Source Fjern Kasse som Sporkilde - + Auto DJ Auto DJ - + Add Crate as Track Source Legg til Kasse som Sporkilde @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Fikk ikke lastet sporet @@ -642,12 +642,12 @@ Fil Opprettet - + Mixxx Library Mixxx Bibliotek - + Could not load the following file because it is in use by Mixxx or another application. Filen er allerede i bruk av Mixxx eller et annet program, og kunne ikke lastes. @@ -3364,37 +3364,37 @@ Markørknapp DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: Med bidrag fra: - + And special thanks to: Og spesielt takk til: - + Past Developers Tidligere utviklere - + Past Contributors Tidligere bidragsytere - + Official Website - + Donate @@ -7287,123 +7287,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year År - + Title Tittel - - + + Artist Artist - - + + Album Album - + Album Artist Albumartist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous &Forrige - + &Next &Neste - + &Apply &Bruk - + &Close &Lukk - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7898,51 +7898,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8101,27 +8091,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... Mixxx bruker litt tid på å søke gjennom musikksamlingen din. Det er bare å vente... - + Cancel Avbryt - + Scanning: - + Scanning cover art (safe to cancel) @@ -8387,39 +8377,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8534,58 +8524,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Skann - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13553,20 +13543,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_nl.qm b/res/translations/mixxx_nl.qm index 4e7f6693114cb3eb946c8325d05080bf73c93169..45f21dd8ff9d039edf2799bf2d120c7d35c142eb 100644 GIT binary patch delta 13393 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 diff --git a/res/translations/mixxx_nl.ts b/res/translations/mixxx_nl.ts index 3bd2a33c253..0ff4c9ebd80 100644 --- a/res/translations/mixxx_nl.ts +++ b/res/translations/mixxx_nl.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Kratten - + Remove Crate as Track Source Verwijder krat als Track bron - + Auto DJ Auto DJ - + Add Crate as Track Source Voeg krat toe als Track bron @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Kan het nummer niet laden. @@ -642,12 +642,12 @@ Bestand Aangemaakt - + Mixxx Library Mixxx Bibliotheek - + Could not load the following file because it is in use by Mixxx or another application. Kon het volgende bestand niet laden omdat het in gebruik is door Mixxx of een andere applicatie. @@ -3363,37 +3363,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: Met bijdragen van: - + And special thanks to: En speciale dank aan: - + Past Developers Eerdere Ontwikkelaars - + Past Contributors Eerdere Medewerkers - + Official Website - + Donate @@ -7350,123 +7350,123 @@ Kies uit verschillende soorten weergaven voor de waveform, die voornamelijk vers Selecteer best mogelijke overeenkomst - - + + Track Track - - + + Year Jaar - + Title Titel - - + + Artist Artiest - - + + Album Album - + Album Artist Album Artiest - + Fetching track data from the MusicBrainz database Trackgegevens ophalen uit de MusicBrainz-database - + Mixxx could not find this track in the MusicBrainz database. Mixxx kon dit nummer niet terugvinden in de MusicBrainz-database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. haal API-key op - + Submit Submits audio fingerprints to the MusicBrainz database. Indienen - + New Column Nieuwe kolom - + New Item Nieuw Item - + &Previous Vo&rige - + &Next Vo&lgende - + &Apply &Pas toe - + &Close &Sluit - + Status: %1 Status: %1 - + HTTP Status: %1 HTTP Status: %1 - + Code: %1 Code: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx kan om onbekende reden geen verbinding maken met %1. - + Mixxx can't connect to %1. Mixxx kan geen verbinding maken met %1. - + Original tags Originele tags - + Suggested tags Voorgestelde tags @@ -7963,51 +7963,41 @@ Dit resulteert vaak in beat-rasters van hogere kwaliteit, maar zal het niet goed HidController - Generic HID Mouse - Generieke HID Muis - - - Generic HID Joystick Generieke HID Joystick - + Generic HID Gamepad Generieke HID Gamepad - - Generic HID Keyboard - Generieke HID Toetsenbord - - - + Generic HID Multiaxis Controller Generieke HID multi-axis-controller - + Unknown HID Desktop Device Onbekend HID Desktop Apparaat - + HID Infrared Control HID Infraroodbediening - + Unknown Apple HID Device Onbekend Apple HID-apparaat - + HID Unknown Device HID Onbekend-apparaat - + HID Interface Number HID interface-nummer @@ -8170,27 +8160,27 @@ Wil je het echt overschrijven? LibraryScannerDlg - + Library Scanner Bibliotheekscanner - + It's taking Mixxx a minute to scan your music library, please wait... Mixxx heeft ongeveer een minuut nodig om je muziekbibliotheek te scannen, even geduld... - + Cancel Annuleren - + Scanning: Scannen: - + Scanning cover art (safe to cancel) Hoezen aan het scannen (veilig om te annuleren) @@ -8464,39 +8454,39 @@ Wilt u een invoerapparaat selecteren? Het geselecteerde thema kan niet worden geladen. - + OpenGL Direct Rendering OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. Directe weergave is niet ingeschakeld op uw computer.<br><br> Dit betekent dat de weergave van de golfvormen erg<br><b> traag zal zijn en uw CPU zwaar kan belasten</b>. Werk uw <br> configuratie bij om directe weergave mogelijk te maken of schakel<br>de waveform weergaven uit in de Mixxx-voorkeuren door "Leeg" te selecteren<br> als de waveform weergave in het gedeelte "Interface". - - - + + + Confirm Exit Afsluiten bevestigen - + A deck is currently playing. Exit Mixxx? Er is momenteel een deck actief. Mixxx afsluiten? - + A sampler is currently playing. Exit Mixxx? Er is momenteel een sampler actief. Mixxx afsluiten? - + The preferences window is still open. Het scherm "Voorkeuren" staat nog open. - + Discard any changes and exit Mixxx? Wijzigingen negeren en Mixxx afsluiten? @@ -8613,59 +8603,59 @@ Wilt u een invoerapparaat selecteren? QMessageBox - + Upgrading Mixxx Mixxx Upgraden - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? Mixxx ondersteunt nu het weergeven van albumhoezen. Wilt u nu uw bibliotheek scannen op albumhoezen? - + Scan Scan - + Later Later - + Upgrading Mixxx from v1.9.x/1.10.x. Mixxx aan het upgraden van v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. Mixxx bevat een nieuwe en verbeterde beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. Wanneer je tracks laadt, kan Mixxx ze opnieuw analyseren en nieuwe, nauwkeurigere beat-rasters genereren. Dit maakt automatische beatsync en looping betrouwbaarder. - + This does not affect saved cues, hotcues, playlists, or crates. Dit heeft geen invloed op opgeslagen cues, hotcues, afspeellijsten of kratten. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. Als je niet wilt dat Mixxx je tracks opnieuw analyseert, kies dan "Huidige beat-rasters behouden". Je kunt deze instelling op elk moment wijzigen in het "Beat Detectie" gedeelte in de Voorkeuren. - + Keep Current Beatgrids Huidige beat-rasters behouden - + Generate New Beatgrids Nieuwe beat-rasters genereren @@ -13667,20 +13657,20 @@ Gebruik deze optie om alleen het verwerkte (Wet) signaal met EQ en filtereffecte Passthrough - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_nl_BE.qm b/res/translations/mixxx_nl_BE.qm index 5e56bab96a6ba3753e3693bd6f8bb81f6f552a2d..935a50879cc55c87320887bead0f5a6ddcfedc97 100644 GIT binary patch delta 14044 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 diff --git a/res/translations/mixxx_nl_BE.ts b/res/translations/mixxx_nl_BE.ts index 0e2e4845d46..f28581f3e6a 100644 --- a/res/translations/mixxx_nl_BE.ts +++ b/res/translations/mixxx_nl_BE.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Kratten - + Remove Crate as Track Source Verwijder krat als Track bron - + Auto DJ Auto DJ - + Add Crate as Track Source Voeg krat toe als Track bron @@ -261,7 +261,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Kan het nummer niet laden. @@ -641,12 +641,12 @@ Bestand Aangemaakt - + Mixxx Library Mixxx Bibliotheek - + Could not load the following file because it is in use by Mixxx or another application. Kon het volgende bestand niet laden omdat het in gebruik is door Mixxx of een andere applicatie. @@ -3362,37 +3362,37 @@ DlgAbout - + Mixxx %1.%2 Development Team Mixxx %1.%2 Development Team - + With contributions from: Met bijdragen van: - + And special thanks to: En speciale dank aan: - + Past Developers Eerdere Ontwikkelaars - + Past Contributors Eerdere Medewerkers - + Official Website Officiële Website - + Donate Donaties @@ -7356,123 +7356,123 @@ Kies uit verschillende soorten weergaven voor de waveform, die voornamelijk vers Selecteer best mogelijke overeenkomst - - + + Track Track - - + + Year Jaar - + Title titel - - + + Artist Artiest - - + + Album Album - + Album Artist Album Artiest - + Fetching track data from the MusicBrainz database Trackgegevens ophalen uit de MusicBrainz-database - + Mixxx could not find this track in the MusicBrainz database. Mixxx kon dit nummer niet terugvinden in de MusicBrainz-database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. haal API-key op - + Submit Submits audio fingerprints to the MusicBrainz database. Indienen - + New Column Nieuwe kolom - + New Item Nieuw Item - + &Previous Vo&rige - + &Next Vo&lgende - + &Apply &Pas toe - + &Close &Sluit - + Status: %1 Status: %1 - + HTTP Status: %1 HTTP Status: %1 - + Code: %1 Code: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx kan om onbekende reden geen verbinding maken met %1. - + Mixxx can't connect to %1. Mixxx kan geen verbinding maken met %1. - + Original tags Originele tags - + Suggested tags Voorgestelde tags @@ -7969,51 +7969,41 @@ Dit resulteert vaak in beat-rasters van hogere kwaliteit, maar zal het niet goed HidController - Generic HID Mouse - Generieke HID Muis - - - Generic HID Joystick Generieke HID Joystick - + Generic HID Gamepad Generieke HID Gamepad - - Generic HID Keyboard - Generieke HID Toetsenbord - - - + Generic HID Multiaxis Controller Generieke HID multi-axis-controller - + Unknown HID Desktop Device Onbekend HID Desktop Apparaat - + HID Infrared Control HID Infraroodbediening - + Unknown Apple HID Device Onbekend Apple HID-apparaat - + HID Unknown Device HID Onbekend-apparaat - + HID Interface Number HID interface-nummer @@ -8176,27 +8166,27 @@ Wil je het echt overschrijven? LibraryScannerDlg - + Library Scanner Bibliotheekscanner - + It's taking Mixxx a minute to scan your music library, please wait... Mixxx heeft ongeveer een minuut nodig om je muziekbibliotheek te scannen, even geduld... - + Cancel Annuleren - + Scanning: Scannen: - + Scanning cover art (safe to cancel) Hoezen aan het scannen (veilig om te annuleren) @@ -8470,39 +8460,39 @@ Wilt u een invoerapparaat selecteren? Het geselecteerde thema kan niet worden geladen. - + OpenGL Direct Rendering OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. Directe weergave is niet ingeschakeld op uw computer.<br><br> Dit betekent dat de weergave van de golfvormen erg<br><b> traag zal zijn en uw CPU zwaar kan belasten</b>. Werk uw <br> configuratie bij om directe weergave mogelijk te maken of schakel<br>de waveform weergaven uit in de Mixxx-voorkeuren door "Leeg" te selecteren<br> als de waveform weergave in het gedeelte "Interface". - - - + + + Confirm Exit Afsluiten bevestigen - + A deck is currently playing. Exit Mixxx? Er is momenteel een deck actief. Mixxx afsluiten? - + A sampler is currently playing. Exit Mixxx? Er is momenteel een sampler actief. Mixxx afsluiten? - + The preferences window is still open. Het scherm "Voorkeuren" staat nog open. - + Discard any changes and exit Mixxx? Wijzigingen negeren en Mixxx afsluiten? @@ -8619,59 +8609,59 @@ Wilt u een invoerapparaat selecteren? QMessageBox - + Upgrading Mixxx Mixxx Upgraden - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? Mixxx ondersteunt nu het weergeven van albumhoezen. Wilt u nu uw bibliotheek scannen op albumhoezen? - + Scan Scan - + Later Later - + Upgrading Mixxx from v1.9.x/1.10.x. Mixxx aan het upgraden van v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. Mixxx bevat een nieuwe en verbeterde beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. Wanneer je tracks laadt, kan Mixxx ze opnieuw analyseren en nieuwe, nauwkeurigere beat-rasters genereren. Dit maakt automatische beatsync en looping betrouwbaarder. - + This does not affect saved cues, hotcues, playlists, or crates. Dit heeft geen invloed op opgeslagen cues, hotcues, afspeellijsten of kratten. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. Als je niet wilt dat Mixxx je tracks opnieuw analyseert, kies dan "Huidige beat-rasters behouden". Je kunt deze instelling op elk moment wijzigen in het "Beat Detectie" gedeelte in de Voorkeuren. - + Keep Current Beatgrids Huidige beat-rasters behouden - + Generate New Beatgrids Nieuwe beat-rasters genereren @@ -13677,20 +13667,20 @@ Gebruik deze optie om alleen het verwerkte (Wet) signaal met EQ en filtereffecte Passthrough - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible Klaar om te spelen, analyseren... - - + + Loading track... Text on waveform overview when file is cached from source Track laden... - + Finalizing... Text on waveform overview during finalizing of waveform analysis Finaliseren... diff --git a/res/translations/mixxx_nl_NL.qm b/res/translations/mixxx_nl_NL.qm index 6dc45e31f5689ae3b44df805bf0bf1f8e35503e4..bcfc92aea0dff328e3c0cba0bbff7c1004e09430 100644 GIT binary patch delta 1237 zcmXZceN0t#7zgn0@7#Ot8{Bi@US4BzMk;p@h^)Bf92h9^GG1&G2sVqxi_yAZOQW`y zZI*L5G<`Z16RLjbRp@+1_Wc_i73Fm;3Hrgb_MT9}jY5oIaSsA zOcWj9t9Pd;TfHvKEK#Z$7h1vs^L_xD`&m#MPx(?43kg08EVWRrXk~|}LzLN0a*0*! zHA>Y)3M*}7*91rG7Fs;t1ACK&Zzer}6f3l^^3OY?gzm1Z!0bh8(0t~frrK|P23Sc~ zl{)y&-uslNEf+?6s7D*j%E_foAz7ElBs#29RB@i^I7`;nzuuiPsZ~?pbi06)<0UU0{`9{h!$Qd7qoqucv z-rFJe=5GN~>J(iKV*lgQt+6N$=@m!j#j$Zd9`#Y;_;WdcW=3(Lka`R@Vc=_8Gvo+! zos{a6WS%^$IqGQwN{bXdA>{BW;HU5P$uTdkYol)Q#+PqbTv?%P-*Dkp7uh*CT~zBU zvt!iin-+RRJ6!TKaN)9c-RTFLf%A8Dj@%Al>Py-xRYtpi(K+Am2TCe+w?iKSpMR=b2>S`xXVRF>M#|s05bX&us5m9Pi9s0kza0nf}y^T=bE=_`#&i87_>AfW6M}MJeBVYJ)`oNW;)|L)T5-hs8ch@R!-i_B{S%r|GacN$~Vi zhgoKY+{u;5RDp1;w#PiobfvZV4A$t5j>TMc=t<+*8Qkn)czYarYWCa<2e} zIz?xg;$jhbE&0O2ZvDofO?!?G>#Gw@o5{O(!+a3;%+DPDdoQ6BF)1Ke>?i{OTgq2 zQ+Yi{o-CmvYlXZVM?YGl#ChtsF0r(_fpeAQu@#HWRAtjMZkk*7a6+SgbK7TJ?VHK$ z9kz@eVTpaf5e~Bd@%W6nZJ%WSVZ(sof2qf&ivgOj6{?RF*dw?+UsATZM!Q&`lzH=j zp>@=*CWuk$SL5Ym96eTbah#&HsA+#I4UhVP%q*pG*XKa}py7y}@-=<_h;r<&XMqnF zDkoRX2A0$r4umM(Pmgp@gkf)u;icu&q(zAn)TyP(Un6NkE0DpNlpeC!bsd%+fmWcr z#4xap{2|4Bz`>A$*T+^{6Nk9A74r9ZP+F30F`Q&%TXua{Osg&>g#d_*=Zc&e@>&Jq? z)nrNy-6DRV_RwPS0V!d{;wqJf>7t)L3M-u7s5PA8aF#N|uxi7JG_4^}&Go#aeKnu} zRdrf(c{fKaqsL+K+J(7V*JUop*mIN|u8Vse`P_?#ROMPMhvKQ-rSo=rTpuqSvY(dx z?Rb_NURiHA`iA{7y#OR7+6SYz0s4#fyO!^PrSXOXMYJ;_ZO(9#BkN6GKKw3wpFQTt zE#xX|b%s6L4M$H>Fk+SbqnOg&x*#fb$GC2Io$2|!gWK;p(@&Xz>kG*5PLsdSrEY%a zeG0l0#BOqUqSQ^!Co}l6_6<<7r!cW1^cCXkhV;WGQVI5%S+yzrr#TP-TNe+RM1K`ycoODT6FlWqKFSh%^pzG`1> n<@(s1+^pE;zO8T7tg9`z@`NL&vOKe AutoDJFeature - + Crates Kratten - + Remove Crate as Track Source Verwijder Krat als bron voor Tracks - + Auto DJ Auto DJ - + Add Crate as Track Source Voeg Krat toe als bron voor Tracks @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Kan track niet laden. @@ -642,12 +642,12 @@ Bestand Aangemaakt - + Mixxx Library Mixxx Bibliotheek - + Could not load the following file because it is in use by Mixxx or another application. Kan het volgende bestand niet laden, omdat het in gebruik is door Mixxx of een andere applicatie. @@ -3363,37 +3363,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -7286,123 +7286,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Jaar - + Title Titel - - + + Artist Artiest - - + + Album Album - + Album Artist Album Artiest - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. Verkrijg API-Key - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7897,51 +7897,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - Generiek HID Toetsenbord - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8100,27 +8090,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel Annuleer - + Scanning: - + Scanning cover art (safe to cancel) @@ -8386,39 +8376,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8533,58 +8523,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Zoek - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13552,20 +13542,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_nn.ts b/res/translations/mixxx_nn.ts index bdd6eff8d45..69aafb8aedf 100644 --- a/res/translations/mixxx_nn.ts +++ b/res/translations/mixxx_nn.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Kassar - + Remove Crate as Track Source - + Auto DJ Automatisk DJ - + Add Crate as Track Source @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Kunne ikkje åpna sangen @@ -640,12 +640,12 @@ - + Mixxx Library Mixxx Bibliotek - + Could not load the following file because it is in use by Mixxx or another application. Kunne ikkje opna fila fordi at den er i bruk av Mixxx eller ein annan applikasjon. @@ -3361,37 +3361,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -7284,123 +7284,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year År - + Title Tittel - - + + Artist Artist - - + + Album Album - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7895,51 +7895,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8098,27 +8088,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel - + Scanning: - + Scanning cover art (safe to cancel) @@ -8384,39 +8374,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8531,58 +8521,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13550,20 +13540,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_oc.ts b/res/translations/mixxx_oc.ts index 53380ff5581..290b6e0d8e3 100644 --- a/res/translations/mixxx_oc.ts +++ b/res/translations/mixxx_oc.ts @@ -19,22 +19,22 @@ AutoDJFeature - + Crates Contenidors - + Remove Crate as Track Source - + Auto DJ Auto DJ - + Add Crate as Track Source @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Impossible de cargar la pista. @@ -640,12 +640,12 @@ - + Mixxx Library Bibliotèca Mixxx - + Could not load the following file because it is in use by Mixxx or another application. Impossible de cargar lo fichièr seguent perque es utilizat per Mixxx o una autra aplicacion. @@ -3361,37 +3361,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: - + And special thanks to: - + Past Developers - + Past Contributors - + Official Website - + Donate @@ -7284,123 +7284,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Annada - + Title Títol - - + + Artist Artista - - + + Album Album - + Album Artist - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous - + &Next - + &Apply - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7895,51 +7895,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - - - - Generic HID Joystick - + Generic HID Gamepad - - Generic HID Keyboard - - - - + Generic HID Multiaxis Controller - + Unknown HID Desktop Device - + HID Infrared Control - + Unknown Apple HID Device - + HID Unknown Device - + HID Interface Number @@ -8098,27 +8088,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner - + It's taking Mixxx a minute to scan your music library, please wait... - + Cancel Anullar - + Scanning: - + Scanning cover art (safe to cancel) @@ -8384,39 +8374,39 @@ Do you want to select an input device? - + OpenGL Direct Rendering - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. - + Discard any changes and exit Mixxx? @@ -8531,58 +8521,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13550,20 +13540,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_pl.qm b/res/translations/mixxx_pl.qm index 9f70b36b151625d072a7235ca2e29a828df51d4e..ae6abf6e9ba6a1084ae4cf18685ead2145d2c82a 100644 GIT binary patch delta 8266 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 AutoDJFeature - + Crates Skrzynki - + Remove Crate as Track Source Usuń Skrzynkę jako źródło utworów - + Auto DJ Auto DJ - + Add Crate as Track Source Dodaj Skrzynkę jako źródło utworów @@ -262,7 +262,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Nie mogę załadować ścieżki. @@ -642,12 +642,12 @@ Plik utworzony - + Mixxx Library Biblioteka Mixxx - + Could not load the following file because it is in use by Mixxx or another application. Nie mogę załadować podanego pliku, ponieważ jest używany przez Mixxx lub inną aplikację. @@ -3363,37 +3363,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: Przy udziale: - + And special thanks to: Specjalne Podziękowania dla: - + Past Developers Byli twórcy - + Past Contributors Byli współpracownicy - + Official Website - + Donate @@ -7287,123 +7287,123 @@ Select from different types of displays for the waveform, which differ primarily Wybierz najlepsze możliwe dopasowanie - - + + Track Utwór - - + + Year Rok - + Title Tytuł - - + + Artist Wykonawca - - + + Album Album - + Album Artist Wykonawca Albumu - + Fetching track data from the MusicBrainz database Pobieranie danych utworu z bazy danych MusicBrainz - + Mixxx could not find this track in the MusicBrainz database. Mixxx nie mógł znaleźć utworu bazie danych MusicBrainz. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. Pobierz klucz API - + Submit Submits audio fingerprints to the MusicBrainz database. Zatwierdź - + New Column Nowa Kolumna - + New Item Nowa Pozycja - + &Previous &Poprzedni - + &Next &Następny - + &Apply Z&astosuj - + &Close &Zamknij - + Status: %1 Status: %1 - + HTTP Status: %1 Status HTTP: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. Mixxx nie może połączyć się z %1 z nieznanego powodu. - + Mixxx can't connect to %1. Mixxx nie może połączyć się z %1. - + Original tags Tagi oryginalne - + Suggested tags Tagi sugerowane @@ -7898,51 +7898,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - Mysz rodzajowa interfejsu HID - - - Generic HID Joystick Joystik rodzajowy interfejsu HID - + Generic HID Gamepad Gamepad rodzajowy interfejsu HID - - Generic HID Keyboard - Klawiatura rodzajowa interfejsu HID - - - + Generic HID Multiaxis Controller Rodzajowy kontroler wieloosiowy interfejsu HID - + Unknown HID Desktop Device Nieznane urządzenie interfejsu HID - + HID Infrared Control Kontroler podczerwieni interfejsu HID - + Unknown Apple HID Device Nieznane urządzenie Apple interfejsu HID - + HID Unknown Device Nieznane urządzenie interfejsu HID - + HID Interface Number Numer interfejsu HID @@ -8101,27 +8091,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Skanowanie Biblioteki - + It's taking Mixxx a minute to scan your music library, please wait... Mixxx skanuje twoją kolekcję muzyki. Zajmie to kilka minut, więc poczekaj cierpliwie... - + Cancel Anuluj - + Scanning: Skanowanie: - + Scanning cover art (safe to cancel) Skanowanie okładek albumów (możesz bezpiecznie anulować) @@ -8392,39 +8382,39 @@ Do you want to select an input device? Wybrana skórka nie może być załadowana. - + OpenGL Direct Rendering Renderowanie bezpośrednie OpenGL - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Potwierdź zamknięcie - + A deck is currently playing. Exit Mixxx? Deck właśnie gra! Wyjść z Mixxx'a? - + A sampler is currently playing. Exit Mixxx? Sampler aktualnie odtwarza. Wyjśc z Mixxx? - + The preferences window is still open. Okno właściwości jest nadal otwarte. - + Discard any changes and exit Mixxx? Porzucić wszystkie zmiany i wyjść z Mixxx? @@ -8541,59 +8531,59 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx Aktualizuję Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? Mixxx umożliwia teraz wyświetlanie okładek albumów. Czy chcesz przeskanować Twoją bibliotekę plików teraz? - + Scan Skanuj - + Later Później - + Upgrading Mixxx from v1.9.x/1.10.x. Aktualizowanie Mixxx'a z v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. Mixxx ma nowy ulepszony detektor beat'ów. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. Kiedy wczytujesz ścieżki Mixxx może je ponownie zanalizować i wygenerować nowe, dokładniejsze siatki beat'u. Sprawi to, że automatyczna synchronizacja beatu i zapętlanie będą bardziej niezawodne. - + This does not affect saved cues, hotcues, playlists, or crates. To nie wpływa na zapisane wskaźniki cue, hotcue, listy odtwarzania czy skrzynki. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. Jeżeli nie chcesz ponownie analizować ścieżek wybierz "Zachowaj bierzące siatki beatu". Możesz zawsze zmienić te ustawienia w sekcji "Detekcja Beatu" w Ustawieniach - + Keep Current Beatgrids Zachowaj Aktualne Siatki Beatu - + Generate New Beatgrids Stwórz Nowe Siatki Beatu @@ -13568,20 +13558,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Passthrough - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_pt.qm b/res/translations/mixxx_pt.qm index ef7df6324279d3f1ac1035c2230b533d6a8a3790..5e1350d793042fc912c037450891e8c81d4e6a55 100644 GIT binary patch delta 5187 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 delta 5205 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 AutoDJFeature - + Crates Caixas - + Remove Crate as Track Source - + Auto DJ Auto DJ - + Add Crate as Track Source @@ -260,7 +260,7 @@ BaseTrackPlayerImpl - + Couldn't load track. NAO FOI Possível carregar a Faixa @@ -640,12 +640,12 @@ Ficheiro Criado - + Mixxx Library Biblioteca Mixxx - + Could not load the following file because it is in use by Mixxx or another application. Não foi possível carregar o arquivo a seguir, porque está em uso por Mixxx ou outro aplicativo. @@ -3361,37 +3361,37 @@ DlgAbout - + Mixxx %1.%2 Development Team - + With contributions from: Com as contribuições de: - + And special thanks to: E agradecimentos especiais a: - + Past Developers Desenvolvedores antigos - + Past Contributors Contribuidores antigos - + Official Website - + Donate @@ -7285,123 +7285,123 @@ Select from different types of displays for the waveform, which differ primarily - - + + Track - - + + Year Ano - + Title Título - - + + Artist Artista - - + + Album Album - + Album Artist Álbum Artista - + Fetching track data from the MusicBrainz database - + Mixxx could not find this track in the MusicBrainz database. - + Get API-Key To be able to submit audio fingerprints to the MusicBrainz database, a free application programming interface key (API key) is required. - + Submit Submits audio fingerprints to the MusicBrainz database. - + New Column - + New Item - + &Previous &Anterior - + &Next Segui&nte - + &Apply &Aplicar - + &Close - + Status: %1 - + HTTP Status: %1 - + Code: %1 - + Mixxx can't connect to %1 for an unknown reason. - + Mixxx can't connect to %1. - + Original tags - + Suggested tags @@ -7896,51 +7896,41 @@ Often results in higher quality beatgrids, but will not do well on tracks that h HidController - Generic HID Mouse - DIH genérico - Rato - - - Generic HID Joystick DIH genérico - Joystick - + Generic HID Gamepad DIH genérico - Gamepad - - Generic HID Keyboard - DIH genérico - Teclado - - - + Generic HID Multiaxis Controller DIH genérico - Controlador multieixos - + Unknown HID Desktop Device DIH para Ambiente de trabalho desconhecido - + HID Infrared Control DIH para Controlo de Infravermelhos - + Unknown Apple HID Device DIH para Apple desconhecido - + HID Unknown Device DIH Dispositivo desconhecido - + HID Interface Number DIH - Número de interface @@ -8100,27 +8090,27 @@ Do you really want to overwrite it? LibraryScannerDlg - + Library Scanner Analisar a biblioteca - + It's taking Mixxx a minute to scan your music library, please wait... Queira aguardar alguns instantes para o Mixxx analisar a sua biblioteca musical... - + Cancel Cancelar - + Scanning: A pesquisar - + Scanning cover art (safe to cancel) @@ -8389,39 +8379,39 @@ Do you want to select an input device? O tema seleccionado não pode ser carregado - + OpenGL Direct Rendering Processamento Direct OpenGL - + Direct rendering is not enabled on your machine.<br><br>This means that the waveform displays will be very<br><b>slow and may tax your CPU heavily</b>. Either update your<br>configuration to enable direct rendering, or disable<br>the waveform displays in the Mixxx preferences by selecting<br>"Empty" as the waveform display in the 'Interface' section. - - - + + + Confirm Exit Confirmar saída - + A deck is currently playing. Exit Mixxx? Um leitor está actualmente a tocar. Sair do Mixxx? - + A sampler is currently playing. Exit Mixxx? Uma amostra está actualmente a tocar. Sair do Mixxx? - + The preferences window is still open. A janela de preferências ainda está aberta. - + Discard any changes and exit Mixxx? Rejeitar quaisquer alterações e sair do Mixxx? @@ -8538,58 +8528,58 @@ Do you want to select an input device? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan - + Later - + Upgrading Mixxx from v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. - + When you load tracks, Mixxx can re-analyze them and generate new, more accurate beatgrids. This will make automatic beatsync and looping more reliable. - + This does not affect saved cues, hotcues, playlists, or crates. - + If you do not want Mixxx to re-analyze your tracks, choose "Keep Current Beatgrids". You can change this setting at any time from the "Beat Detection" section of the Preferences. - + Keep Current Beatgrids - + Generate New Beatgrids @@ -13557,20 +13547,20 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Passagem - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible - - + + Loading track... Text on waveform overview when file is cached from source - + Finalizing... Text on waveform overview during finalizing of waveform analysis diff --git a/res/translations/mixxx_pt_BR.qm b/res/translations/mixxx_pt_BR.qm index 79d94e813a3075d1551eca4e5938dd466cab9922..cbadd89cd7fddb8a95bcc698500d73edaf157506 100644 GIT binary patch delta 104878 zcmb@OhhL5V|No!Y>v~<+Ip;ddO7;#J*_(_~LfM;8GLw~&(V;|0Mj|0QJJ~yt6$zEd z$S5P;GRh{uN7wn@K7YaQ_W8VT_v@U_b*|TV?&s@x`PzKRAwG%N5c5uR;DT{+5DNy{pNEAd7I z-q?bHVCZ}Ycnv%R=7UEuuy)`DFdV#%8;d{xl$c&mq!EclUjh?}-Fiq=2Q#aJffRF` z4>*Td)$&C3+Y#Hn2@7VzYfPqj4NSe*Tw7IU*9*WU z#9Ca$a^iD0uubj3WHX2dwZu%j_9MX`-_sQnk)DH3Ntk~E3+YZ&*1<~q5>~nds$_dC zAJq%7KK9LZI*Ez&HXg)-6ws}hc)$A$lFHWy z@z4RIREi%{iF)AkT5qDB5hU@RMD8vm_PYZvBEb@jy>Z9P=5Dd_Qg@YNXkQ`^ZxVvv zK?HDv=Ql8!sNDat!F%;Ji_cTZyI?u-cc~<{qHi-20!9$^YYN%H1N#jk!Mh(gj#!68 zD}#+HE#j!#xCkZj{7O^&gdd@M!Ql2~{#NyK5v|dP_7AvN5lL zl^3(EOdP0E3=Ot&8CGy`5{bT;=+F!J-tR=gQ%D$s?aSDW{ok~Pn2=Ax^b*7-&%hTR zfFR|ORKY+j+nS(p7J zjZGk45JS?qBogKhC29IHq9bQja-UTs&02>oSwvFkZtN-U+Xz*vjR%0NQfrlB$%!Ow z#`a8UOVait5|Rdyw1Y@!nMu-~9AZ5hlXL(Y@*u!MQatu8@E_!*i8v=T@1P6 z|MyMm1>c!RwU2QUg8EY3rkGK)Y^vKF(mle3>b8PZkC;Vudj^qclR@^qYY_dJLG}UQ zUpuM?;pERgQoXx&#GhBCdJsbXJc{aLui2*CR_^wp`U4h|#B8Yk4p{Hhu~h%gb+YiB zRn(x_5MtFIPy^>zL=Eat!{nwUTqmV5H)>q& zG*MP8HJukjqJ0}`Mi|iHvedkI;LS6r`Ql$Bd?`&WR9|q4TBz!|l3I-|R_8owUDv@v zEG3oNyo@8>YbCXvznfT5qDqlQS;>m1ZORx}$kA3NnytKKR4FcNZROc})b_1N6lA6j z$VCE+vDNX^{W>1h$(efUcM*-6qmr9`P*2x0 z#4a==cLpC`^q1T#nMgd9M(#tC;8bpq`_&NmhS^p&n66R??x~W+9VL(Tu=~v~lE=0_ zMD3HaG zknnzvg$CZj14@U|z_*bkPVlBdH|~=#W~!Cry3*iE)iL7lGBgfJVG95x30Cr4hfe=ONo@ zWc6tz6!xHzU9f}~uF&X$BI5O?k+&D(y>X?EaEE<*RMB^H5gc{AK$!jhV z|J;%MLSjhB(~;k$4)CU@Y3knRhy`lW>;c%K(~D`&U)Y0NwiK}95AkzfDBwUES;RI~ zX>LYMym5dQ2Bp9>I@7`%xG}R41&zT{m->%F$_Eqcd7DD!w1KcDQs|N*68U&qF{c8F zYdmP>dswtK>nVIz9JX$!mE!_v-Q#=`|16;m>)|~;##%XYHATB3Zp`{Yo2IA3|G!A3 z&9OI0Y?4ng;p>PNZlJBMM@Sq~owom%PgKp8cG^PtTzk{bJC4M=y{27B3X$AYpk=+PecQ*vW&bNB30AC02*o9PkT5Kf z4trU~leoc|;)fwRiTX$J88IXlE~1l%<4AnpiB5-CAhy>9#1el>p)*T7iB`R(v*UA! z?RZ7!4nnvBztE*djwEFNCu>OUeB=60LYl z$BW3Rx*c;V$EOO3t#;GfaaTy3K9kmY)So$(;7_oqHROpW-s(FUKu7wGW52CL*kPTBm z`fkJ)tmsDHogAT#OX*knog|f8On-_8;P*f!o79W`T+S!KV?OY9k=zZA5StCM)-hoFnD zLOd~6(4XK$@rzV)?-zopz9;cpy#>>AsME;Tg3SN~E*CcnWe+ElkTX{(XB!Oz)<~!j znvc*dL#VtVjl^c2LiL^YL?bLug_?J;RIjEBwKfHkxO}fr`z%Ims3p`ZfIGf9-OBqp zLj6k*iT~RsG#Z2uyLVlo(QMG;u+UhW3Vq)oG|BTPeyXR??0q^3eous!4;RBtR}xw^ z^(Q)0LZ$GntI%rbO?X8op?$*yVwR_+h4y>mRbxII$T5uw(Pm!6dFU~r}skFD)1dJ4K5w9x5thMF3*n<#mIuo z%VJIudQF2&%^oQ9i%%myXN55MKmf5fBZVOc=R*G}T^Q=o2vS>77(Nt%VVNSqvkZi$ zqrEWt*)W7;MS@o&s9#eL!7CgiuXs=JzTA(P^9aFb1KyA6C5(41AhtbL7{3jXQOZbR z!m=Rb3Co0u_+4hT?EVT+CesL3&Ozx`2J@VgoEQJ5anhG2mN3Na^i)9mWVrWixY&S zbKvjyjuwvP&V$o9CY-2gB3|aZaH_tR1kFV-5Kg0oa0+_Mt_~Iw+QpDCVV;oSiU(Aj zCtSUPCI1#CT-$~WYUvaq`ExW05AO&!?NFd-TUEG)Sb?n#5mNJ3k>LNIa3{7k(f2ii zsFo zpT|Ommm?CBLqdjk9I=__g^V9i#|qVj%%g$CNBtABCPa{sc3sFqbWNSV2#;cHNO(I_ zcw!Iro;KMcWFLjio-#&wn`uMz!yx4OLt0G>v3Eg6vp~#Rp=SktDxNZb_8 zn!RZbcb?1~!@9!%?_AG1dtk+u0lSG-zE;V5 zXjzXe%>40F<{qAoaQr0eT`!!3b`dJszFDmIG99t5jalFIFhmunv5~#;y6awoQA zMjJNfAA~n!9P>fsZQ(vY+4!LeB(MZF{xbrR4V+C_wG@`=3!9kxow#Rbu!zJj32c%r z_N-e2Hq|SgnBN~Z^N<6H>3M8!lm8IL>)3*mnQ$@>n57v$msM6J-?No1>WF}&bz>I% z5t(pmG+T_2UVQhQExsHC{eRk;Ext1uQLQrzDZ$bzsZh$OeR*+hMg*YfGLKZnpUh0b=heb1g{>9ojY?4 zzN0+5P&I)lQDO=8Lr8oyl_gj*5vk0P*u_&ri1*uS<>z>IsVRhy|6-Sp|0Me2&92$) zKu*|&U2BJt$2qfWiIF6f8PBezrxH87h~3!jNJ4j+CI9M2wBQj-u`RBkEM+NGu;g8< zu#_IliN%d)_X28?kY0h^djgYuGMibly6T`dAuMZb81a%**`s2EV)L3k8Vt3QZm{ez zrHGOTvm85=X<|HBPTPD)v&eEABGpQ5$8uee%k?bFaxXkYj@W_a7TOcL(TlyV)a&fRKDDZXT4V?I(-~@fuQvM`noP7@Yf&#)y-QZE`M`cIwF0FE9 z_A8)>__Dj~7wS3eniKntTv0spfEC3JA{Nf~>tE$0mVF^M=!$aNs2O5|uYF+; z%%VdZmAO&4Mh?ugD?juTyNEp~n8Lv$@c>^=?7 ztJ`+5dl(*cy{_0jb1l)0YobT7R+X43_8JINynDQrM+S-mBHd8`UDsY5G!EsLl6m4V z{|B&G4&t!=5SkvN#SwLyBgLvJj_g^A_@MdXs2C>_3g)V0CH9KmdtmvTQp7QlktEsN z7RT0#LyXr=9E)lSt<{MW;u#5%UgG4+M~IS!iIY2kmyd`u>g*&sds>{)+Yb5v!eQb} znhk?9SDZOu42k<1iZd}Xif|C;1gDZjsp5iBa866SM9ZdP|2y6mIv;XfZ4tZufO%G5r2xxcfum zy3H1hwyMh^mA0N*B=pM+N0X(*F@az25FCKCGOhP z6`>dxV{KDOSnyDcJ(frGxV5;q{4%0RMse>N2=tz9k81dZ*Xi?x=@ymEWqJK@qFPYea znJvY_qgc_@H1X?XR6x91i2qJ$iToE?xMc4@yvZFdj~h(f{TA1_A#Jva=GtdfNDL0= zx*qvxYBb`y&=-i`CvasZ_WVOWSGKhxVaGvkKswC_)#asqs}TLZ!As|1BC{)U+q&aW z*nG$Ut)L*9$_1bf7J7;0{wgc_wf0 z4NZp0>Aca)RN~P-yy>JEtcb$fwDBXMTNdxoKb6FyD!g+(24E4~xXbasB)T`@J*z^^ zO4sKe=AOiNwc-N;;rE{%;scgBlK871A6P1o_~Jc$pf^mk_W?dQ0^Y6rZa(63AohMS z_x$jagwch3tW!AL>jFOZ;8#@5Zu0Smi%94{mHW;{!)muP_iKnSzeIgLRdIm+Cq(e+ z+TSGH*~k6Ayg>iyJ@+pV(ES+AXQd4x;eBa7JN`GZ`e}S_yeA1f#7emhpKps0>-uVL zsT2xtH<~Xt1tW3M^Chc;VG%8SS^O@P+rC&?_kl{bInl~J19=$oZ&_|`X*-xcp9LM(-7NJ4r!1ouTtv0zlKM?+e#5QT*3*xVH!I#9} z*n&A=cMy5On+4!&FdqB{yU`a!MD!+yAF!+<65FCNv5FCYTNV^il_~&B5YKx9mdD@y zz$ys8D}Yt;dNWuZuie2~czqMJ1Al<_B(|%~4{T{d%)gRKvHe=GDPH5jTbhBP{J^JAUw6MfsIlAry;k0nA)KOW>K zyX{7lT#KK)l26REo}V_Lx%4HEpFNaKw7!W-{zb>nDR5FvGx>#MbzwgYJTVyFbm32a zWf0WZEy=>K1lW<#)SX}5mVl%(gWq7dq1q3A!v-UqGl3_sM09w{`%e(BBtAKc|2;YkZud1W8W=*X z-ZF^{rBUC%DN&ys5?1Y!gnyffH?JW{`(PK?7D-CMfCecl#SwZ*dWJ|R?3YU3Jyen# z#*mQsN76|q3iNML2oA+$pf+AJ*iYc0SRM&sbtT?C7W(OP}4lg zb_28|WsFL`RxeeqJe|1n63NbW0kK#?rKIU7)eeMZ9TzJ#xYG^ACSR#>4 z@Jf_{FS#T+5N|kIa=A8uSkhX_?ch5SH}8;oq<12gu~6#q9QRkf zC-roOUxlPPLedr75&_=DJogSS(Re2Q6)dSOB!`7kOar=(x`Wj(DgbcdB-6J zeAZtYtD59^Y3%OZBuM+M)CrPh>|Z1dPd%lHGff!4RcR7JD)Hxj$+wCdY*8#No zC;6_1-ySzh@3DY6@8zUZP9IjIb?<=@fSlO_=O7^drwDH${q6wd*=+VwZUTdW2)hMs|rAeDY zqu?WgR7%nrX|vZNgw-vjEnV=1r7BC?Tp`_w%T$V?$E97x%`5)~((e0hNVsJ$?Y&l= z*yeB2{sl?U|Jh5W{VSl))qSP?H!hMeFGwXDTVAC&`;2s89qRWxj!1Dz6p3@bNO8`` z5mNP)jz?Wb>wc3M`P>ttZ58^^(OMdFa=3S={#($84_2(v<`fex}J9R5Hc6 zt7XlbWyH4pm35hD!Q4!f^{95UO98U6GNit=lWdG#NOW$OTq4Dh#L~;;QWZiFS9r^% zOY2DJSV<+*p0vnioDtWTQsgpTI9T#_uWYjst&>WP<*K`&HvP)UHFK*F7yHV!ROix4 zrKFi5*IK)qh;5K-#bDqoyQ<{fZ_0KRj-enCCfjZMhz8{!xwd-WWR;R;k6f?V&P2VG z>(9z29%bnzJJicTMyHR8(cO2UgZ^}-WN<+AQ$u8^G5-aQ|yH55ZvK?-v{biMGUmMvq74O%oBX_TT z8Ki7=6)o~*X6!9OvIDs%KaN6v`UJX z2UX5RAAg}d=-X_fOp849HU8f4lRQkYA@fjnj+g2skrWS?dT zLNB|@V-GhYarI1je9r{p9X`nuR(c{68YWLHo{2-0Jn^IkhGwwrYm-X6)^FLj3B0Od zk39L#8I<9d$@Z`o4$53!p!WXlSMCG?XQ{`SJjh*)`1bUM-2s&a7FUI?8|C7-rI zUOFEZbACHHG{_4PQFnRS5Zo8pQeOT7YWicUyyBJxHoUVWhkZu;{@)IHWm{A@zV=kf z8cdN_t#U%K$f#0Wwo8uK4>inmlGiPT@XY*Aj&#M6Z)q$?m2$wTsAqE2hZe+MXURKG zAoxt{An$nUN8G-Gyr=hic-J-Z-U>y;_xZ_tYk}9F%KI($5yafu%lnho5DgtJ@Bb+f z%~~fPIF5nc^_34MqjGsZSUyw%`N6{7@*&KSzjz@ZZQ(#X?1y};6YBa&4)U=#uh4LC zkk9ybNjNlq+zg6Md-oV3Leg~$lma`kE|jzoQy zuNec09#)mFEk_|?e@FSoG|XsEU-?!LeTSMULLDRPeE6k>Z;$gjrECHDA`{Q7Vp@t>>Zx1RS%+<#7fTjYig zrlXwKJqEesB{^?$DmtS~et#Yh?$9-W_jDY%2eJ118wWzm159=D5gzZhn~>+% z*O-@UiBG+%De>_c3Gc3IN-<9qz49D1sT9m+O-tnp^8egknpSR}NGJwqT5rOPdzR6(Ycw3y>~Kx{pa2qAP1AJX zJ&3zRXgbXOLgKk4nl2lMK-yPnoEU7qZJwsr&_p6vE5)a;HGM5exdP5>`cFb(b9OIH z|8&f>@UUjU^{XiBJq0n)wRbdw%I4zymr2$P-kD0m)IiOUAGtV0Hbvu!A`*|Cpcxeb z=k$1sX7s#c#P6kQM*oC&d@^0*l{Sg^Tv6j)ABJn}FwNMpM~NkbYsS7vCcgH9W>O~y z;@diDrWKcNe?8aCJb($>&DG2c?n>0-s%F8t=0v-`X#&lbJffR_G>aV4NWAu1v#8Jx z^}7Jg(i9!B#z!?PDpe(6qfxVBdUGTg{WL2Q9f|LD(5(1|2Rtd#gpES*=~6)xcD+5q zb4N|soec=(_E_2QxMth< zMic8Dq}hHF1G@H4v;9&WQKg%jU1Ji6t^cFheFqPouuZe)a6bBp%QXAuWRtM+hvwjL z3+SP-#8C(?_Gu2ccOY@sT+QKm|A?nJYKmhzc592~-?Gc)D zPoe)|V>A~+U?J!1(p>bLfx{?zP2%llB>aliT)CP-RPu#NsZ@gIdSnc-uO6D@<@v-O zZq?j;f;?g2ev2mM)P7>yUTN-l z)cp91FCIHo^Q+WxV#YR_UvW!NX4|PzL#V&=H2)eSHyn6Y^KXzBiCHtXGzBYq^O#mR z>q%nGEn0CTC-!fON|DXAQk*@Swz=U`Z5>Al zOK2r+-I*0gD0f!d-~oiKQ+aK})<>ZoAzFtLu<2=0T8G~l$kQZkqpeu_?f7P~g zz@Ck{s&y1?P?hG|&UKCx^|DfY*H-IvVHwi!e67n96GE>F8l*&?|8OBIetsT`~toZKl?;T)~lBsX)8@4pO2x2W>bCgu9cn2BS(0(0ot`cYLc+HqBgP@idL`AX(OlMbCY7U8@79+qUxoMUXJe>-BP=$ zRRlhFR=cSqOtH3vc2nYLRM|tcF&(n7B9krJm^2UKSE9AsKfnMrKBwK$9NFokquSj` zsc69#Xk#B_6RYK_jV(Zc@}ZV?uYVp&D>t$j9BWWXm6#DK&NA@CHoH9f1IxE-pEsz27VHu2i;{@{g;{>u*A-!_*S*)~ zAHyCuc&PnYHU|O8MQtHr=I#1x3qK*pvcT_1X7@#u@JBk|d0$s^)lxi||>q_BFzwlw6&bA8zj0+QW6;EU3 zNBz)MiZ>B8FR80M*^k8XvAQZghtX9l&{ccyM|{a`T}_)R#6GXr)%^Sy!Rvd_@)rTf zR$Z+iEX|F0U9Gh~C?=V7wQ&fAU74?|+o={&@9R2yH%R-D6qRgs9bJQ~2I4J4bd6`s z#o@G7x~5McY;BWutw!5G{qE{oS3wCj=aQ~lB@Tnj?t|FX;k4X`pVhZf@>FoY$+Sv%nq* z;d#16>-8jVe5sPVe9{G{n25Lis|!v?ebDQkZt?WB#23y`DcRQ1Eq#uFW0bFM`Kj*2 zj+EA|a7T@3lckY*!54Y!!u+u`Tes-K!;K`I-=tf;<0p}0zAoCnGurDzbel`>fRAXP z+uRV|aN-`_mb&H9fPACdG6;sMZJuu1g&1P;7~QrX5}b^`ZhIh1`S^t@dFem8?SFDn zF)h&TY+D6q#T<1U^9WJg4BeGC;l$63*Ilc+lBBX9bl2<=>74(qyXJ;c%Nw2U zT6bvGWk21G%6`OajnLg(08S{WyP1)U^FN2D=u)0wssDxR?$p5-+4$-1mg|b(a-Qzq zlyHPh&vo~v9VT9_NcSMR6j4=wUDhpoBB_>@ipk10kt!v{NB1oJ6|r1{?$wl?s23d7 zy;?bzc$dYxxBdU1e|W=6d4cZjRP_I8LxAq>yjw__9CUeG;}A?b>E0!J5}g^Yd-r4~ z(XPq5|HdKSpZHCsRK`#DS%lN^jMRNg&nNLe7u~Ou=p(+aqx&6>#AIm`-S1QJ;6B~& z+i>G8Zt4CGC?Mg_Hr?OhSaN2kE1H7$cPqMoSr*j$x2@OxdnMsO@HBFvD(pO7H}9qJ@AHWHoKv*kxv1&Hs$>-$GNMt z7`zrM+EOL&SE#hqA_-mlOlj$LkLbRS(&-k2vaOd&@md|l(q$bZnh~lvmBrF;{irzW zX5ygHO2st_x!4U7KOl#x@A!kzD|j6&`wblItR5Aq;(Y??(G(;lIh zZFwv0gH#HV$x8VOh(N?QTk$zl3AG?kD>XLC_!#{c+E zETWN0F)UJ<@c1)|+SL``dm;&^J1bM_L1vb$R%XTHS8=%(K?yi>5joxlWo{f!yZzTx zu_$Ly#k!{~oPU{wb#;_QC?1JV7b!v8v3HebDnY6KSmIlbA z7VO4^#Y%JuB(3v5DA6_GT_aa1F_{w4qXSCJw_=V_VCzu-YusAd);Wg6mk!Fd{ORBX zWjlRFP}x=4J_Z5EYqPTBmo0>7p0ay5_Uw2WWzSGF9NW4pdncd^wyBP?Z&EVRtvAYn zO8z7~@KO$RcmbI*C!!PEbURX(qPlb0)&Qy*JTL`_)3{#H8 zBQco0TRG;4oNV?tVEeAFWa{O;XNv zLxjU6E46>EY#pjn(v4LThC*ojlv5IJ&p;&PswCb=VA5ola;dik!ZG);aw%*tYB&ZZ zshJbe&R0rOBuwj&JIa;Ta2lr~l^Ywb5?eD`Nse+Lsxnnc`56qo_fhVkoX&@|SMGGY zh%R>t<*xHGxMPiSPrnt}Zl01h7e3_G93{gpm3Z&~C1W{Wzdo-3 zm7+Y)s)43a3FXBGM6-b%mDm5`NX&SmbzoNv)Lds2${lqvew{2YlO&OX|D(AQbc2sP8eX2sNUS zdiM$$B$Ym?_s|t$E0gto>`Vy79_st{?~1hD(o{dd0T%4?Z2f@7*(B!M=|`-ahl9qG z^do=40w$Kzk19Wa_}A8YuYK9XFZR-VZ-gmcy+iMPxfzbtm(h<|Uj`M8>iThYQgNR5 zlzvh}40y9nKk3df6eJ7vQ|$T>&8@DVQX5+}w?IEF$P>9@tbW?-ROtVjt@>GyF@wcN z^|M)D)NBUnXLp7(N^{W%xBo@l_nv;S$$&)Ty*}iS18jareaOiW1R&E?@+qzLOSeF( zEBv$4VWvuUW}rT_epBL^qJBlw=OjMsqYra|ww?d2Qnb|3hi$2X`2TlD{mPy&5FLH> ztEaC+I6hdv_IxK|eLLvam23k2-K~$B=|?Pok3K4II|>m`!5ygYRn|v0cP8Q6OZ{f| z#R$!!^xMl1LA9%fe*5nP;+J;ncNV`soTT6R1QV!U(@LK%R*o;PkKO$eBRbls_yT)W zUVktN+VE1VkJ|`CG==nsPe2BKC+iPqA!h6LQ-7r1Yb2MS^+y+@x6|OG{#0puq7u$3 zg%Th2XM=~4=;5Y6{|;)HP*;E9=ueb(O6n8T&-c+^Y>q70cvye&z7tBY_WH~ImMon4 zsH0CBFQCIYO@D2Lmc;OM{dEOPmo-&?y)Y6*=T7>Y2eOG>9H&n?i~N362bFB~OZ}bE ze#DQ>*QeFO?}qP*`plj=gyWL>Ok~O2ae)3&bSeo)E9#%v!&@F&seiI|4T*7+^iK}L z!XEmg&$dXOBzCdaKU4CF&#S9{R$RqC!t}4MWsqPSp@07@h$#7+{=XqGJoQBVr}#1? zIE~bQ{?!a^xN7<@$xx#wQ}jQDzQp?k=zq#zK(qem07O6wtLlFq#1>fg=zsOiCSGN= zfo?VoQY`eg^b^;nf-sF-ZRck==$G^hQ{~;U_MMBsfLye1Y&v_RNH7;!+ z;cbe+&KK%?YlgvYcS-aIb{pyj6q0bioW)R|#gO?$xY$yzNqATYa5)3Y>4}uHFUK}CBEDeZ|Ld|VcU~paH(XE{(Y>$b=Y9Y z#6*MZ+Crjgr&S8EYgDpPEe+j=VrCvC4Ba<5!#hqi^h~-(V&HUxyNx4i!&wH8dY578 zJ{kHB#DJ>rQz=wlY3REcb-*{@4gC%$5IcC?FtFlM#Q$?w7={kbCa!&G7@D{pUa38} z1Dt9Yw$A}3_nX0U)JOcpx~EE3>6KwrD1>nF4a2BwS4n8a45OY#;+GRE4WrBSA|Y~z z!D}71CV7&WkJCTH z#6?iY)B}cT)e!@BTW;_#dme6hx?yHr2ee`a8)o&3A^y88uGR)4rPqb~2A>aaf$Tub#0$#l)w(*5wZb}#8UY88>dPBJ9zcvKl zN=5(wU|B=x!F(i%ZLF;CW?25nlPKk(O1`eIVa1?0q*5t{@THj1kdKCSZ=;DdIBJMA zBah!c(Xf6eKL5+2l3xfiL<<xr)Nk=9A(&)Pzy&if()Boe2{)uHEg*EjyPe6 zd2NCB+dAB^bvBm7T-&fs3!y7YFzjeQ0!OlT8ulDogQD~Wl~SpthJDo?k+rTe9QcVq z#L~@h_%BSgezD>7vt>A7lxsNC5MFO@S;K{vNyOHf3<=!>NGgBZa4Cfmf40|!aTzs~u-Zarp`%+-ta3=b;@Lih>{PcNfBux>Jl&)?o* zc=qora>fgW=g;7LYK$;ga))D2kCZpOTIE6PmzN>0oC!;&G3420kr>_8@Xj3r+;_$B zSw@Xz$~Bd|d{e_`PY)7bBpN>N$cOuWZ20m3K48c+!>`5|h%U`ao2Q1~%i;I8WE%dR zL~C~Nd86P6b>D7dWZ{UGPbXT8Z2v$KNBuBzKRkGu)~GXMiN-q^bw6jKOg7P|#HQo? z-W{Xz1HWE3JT#U#?1$!afU)Gr2_&?!7;R)PWY2YtHlMN)sMs3ImPRF|gNxC2D-74t zBxA+?Xk_>{H&)t;AojvwW2FbZiJb{ERvr!^|7iJTtQ^-6rBO2qPReKt%C16Fq z9yi+AHbX(;sj*H^pU=i`Wa^OD_+d3GXheDY0Mt~gLVeGm$koaD2qf3Y*4l1rPx_sS0 zY;Ap`Tdylb`a+eW_*JE3j54~79!p~XMaG^^9?<_oRgCV2XcEkBMtA(<0qnzcqep!# z@o!tB$5PB-dJkjo6~V+-wm0^vg0lL#GRFQ$M#amK#(}*t;~jCvAtjEYixzGiQUu#y z&doSH3il7|W%R_BFz@n4uOT&X+U=~->tH(S0qu<56JkgZ#~H^4n2^mDR5XrThZ&5{ zG)^$Tz>%u9#tANMQN7MFPTW=srZ&?!$sTUhu-NG90{1ztp3!e6IvnjXjee0Bh^?b> z`qFIZa|h#`4MjvpHyG!g{7V!t*l5{hf_pABF02YSf8EBoIM)M}(_EF@cd>EF082@D ztG>o1r?!w-V}x;8Z(I2JSmVm`Ly-NhGp^~BjrM|*N=bXdxYqCz(d-9f#KB_LG;XMc z2h5sjjI!XUMayL4#$snQY>qK{K@}2eXpDO^x)6WtVB9wsTj=<~c+kEIiG@Fm2h)}# zB>Q5Fvn;F+;n`+9vgRKN(bJ4)wn6XLIvdYUiXq-H*O<`dDrVH#c=6~O#B$e-i5;7h znB2^m7~BGu39o6qy8;!| zCOYE-XKc;7)5fgmeB#x58!gXFSh`Q8j4!IyL>0?md=YC;G;^IXCpnnJsilmsef&|7 zY;Jt}?+QvO9gXkD*dS9HXe{W3M#AAg#=_Y+gfcqTSeP3?lt0J#wWtz)7g*Eytt0}J z$pyyWlY;R>#hS){Iz-ED%Bf`hsEKOf>Xin5yC*9}w$KH&rWL3NhVdQ?+yZh^1$lYK+I&j7^)j{0#a`x?Gqsxq zznpv1)WID~_2-7E157A?5pC+&;vDLKX{Juy9Y{={X6kgeBeCz*P0r(x3)-DBxr{o1 zrd4l~%b4ciMU$(pDG5WjnY!&fj$`_DO+9i;!VSBcdd_tu9u#Qm)d>d9l3&`?>kN|1 zh)Je?>8J&-on;yn?g6JU*fe;3G=5kRXBv`Pt`mrjylvXG1GSu1ex_YN`lATF-n6$g zwq(g))4^D%&z($Dd;}t;!_!PhT4HIFWYejKe#F{JrZZ9@i2(ym=b8r+Tb6FRkQhf| z$rw{YE>f>32h+u`Er^$YXi79Y;iOeDEl$LTFEQO%WDAp6%apvR7EI<8({1dLFo{fQ z6%Zd>*=r`9lX{trwYI=6Rr8U*D8tNk^@B-APkU9?Eb-b4;(c*pb+%vgy_7 z$2g8N)>N<-$>`k}Q=z9FQL8}HuP4~5w@XdGi?D}@xu(CnUcf|OSIH~7n2PXk|A=qW zO#do^Z-1NqorRPqzBm25CXuAP#Xp_mgq6{lS&P!>y!x0eEFPAw-e0rSDv4-Klv&dq zhs9R-nYGtV#B?Xj%1Oil+q#?eVpDWFUzzm^qT4=S%zD)CgrQ~3#`BIu)2f<{1)pJB zyO_i$;*8(mzW$!EXdwmvH@)Vnl9#&!;z3U&N7!-jsXt4X))V6V`-wgn9Enn zLT#tIx%@U1kCTeb74wSF7sxhOpB)bO>u$CiIt@1cgt_)vaPCrbUE4U+_0E~?TNjW} zrLnoeY-mH)6SG4>IPv(3=0>{_qWL?R8{4-*YSz!(Bp6%w;kCKxX%7;ge>ArkfWHs6 zOfa{siwfn1gXT7Mst}J#H@B@j9eXp++-_h3LajV=y9tX?t?F!Uw?A9FLaiJ> z%G~}kq&z|~cZ`5~Qaf{(g~xG(yS2H;3s}+>X7kAFxNq|@^O*MKi4|m;eJ;ap%~Y!MtWg9*$5gG_Qwc;~V>!H`<&b>erYY3H2^fPY_ zBovvLdHeV|#0R!D?=0w#C9P}T6*2%P9^RXGr#8U^?wj|VggPD>V2-PgMx?>b9QPUb zU)*9ooQkbzQ_mcq03mKV&K!T=5%GVM!RDhcj-lz?&3vplMJjd0e4;ImVssyCKHCa2 zGaNLZ|7MF=ZN52Soes&UxA~$2EZV#w=8IWAMBi$fFMh)pr}Q>oS%fV-(ZhUYJ;Lyz zpUu}MVy}PSHz!vNN7XA*C4V~B%4}EA5>7n(i22sY-e?FsHK&wHCDHDJIc-D|x>)VZ zY2H|YkQe6r!##9+p@hl&s0J*Z+0Fd8(-4yQ zPxF(C0*T9BnV-ImA=2@r%eMdFJ;Q|0CYKz?>h65Nczf`CIG&{5v1xRPyq3%|AvW9_ZD;{AW@=iK7Ra zi^h53teEozRG3#C+wZuQ>)Yd>9vp-JRU`im&)i|H>Vj9U){(H&6 zp@KqAGz9~hLeu{@2+3)R@095god;Fkpfd>djvembLEPZ;Su9b0H2IUy|30Vm8$Efd zug~<+{yxPYKK9?Bs4|u=)St#5P9#JDKl0=iPVjt15t$>}3Av{>dhQs`u`4?z!iDXSwH&Oy>OYd?DxW z+1<0pA1loivVO5t^+)k>X{MO%S_+!2?az!&=8F^Oa+z!{C|@X*FXqZ#8s7}O!m*GX z8H^;C7|qTFMpG!EZw?2MwZwSb;XJnBaPn;x5F^(%1;(hh&EfZqkYgdDH4ii(7j-8` zny>h|sp;yRpDAXOM2v^Mz^K>6oZQSQ*Y#zyzHkc{Vhw(){d{5FP#0dQ;JhvqDUAn~sIwPT|Q*_{qPLBa;)XtROwRAuYy^pGlg8Wil4diRHm3KRts}?bM)Jmw;cyF z<=JpsHg0gq@oc`D%kqiZj}&g}Mq#hSz?vz({G4{CTNLjd+S>5WkUNREr%$j+*js+(n}z=LsRM0? z@YZqc?{PdZhAH`N=kXvXM;0CiHA^^J-i;N{a~H*}Z#v{3A0N++RsHkDe6Qy*p@5) z8~$d+tG2csYa41CM91Cu|1r#r1DOCHVGi*?RvsG~^t=6IxlDDUoX^(2^wn)wmItf6 z(IfFIe%pP*+S5@}r$LMo_Oy@24Z|Hn<6~_XL8J^iu+490!~T6UQ`6|=bg4A$50bNv zWyUVf*1Y#_4<7k`y1@{JF)zww5}VS^&a@KGv2*@GESk-fv$c+o-uk-Umo<P@%biieE^(y}C1M%>akEt;dBrD^>!hM% z3SAksKn=z1Qp9SizIBL<=Qvn?PN|090{oiCmSqFe_^*ry_-`J6V;1qaALySfl`1OE z#%9W85n_HNSHQl_Wqru2DN!Vu?4?X`jEcBSuJB7mia-35ANMoU)8*21IS*t&#jv`+ zRIJv1^3T`Q{HN}?X%*o4RowU>VTrYjeox+}GBQ{q7*q}>;m^Mx`b zuLy?szG?C`w+o)3SZCvX_?P0TNhIO34k!$6go{`X3&3vd$A&BWedVe@JXxCUKAF$v z{EmU#*u_fig-csAy)UEv)1d7rM!<>AIelzv*~jVpXgO1!V=q_!$D6*8@($FtUD82|` z`L?nb+}EN#!$4J85-vPZg3_}HNlzq7*k$%jMW}7j$?mv6YWiv!LfHrQ1@iPq=Y;($ z)l6CVy|(d_8)_@w{>-VPP2-@3G$WZdbcy@!L4|VyK3!`olW%%vdwOH|{%z@HwV(fm z8&R2BdDjwo;b!fW2z$5~@=3fLH>3HRYrp@g8*4xR_D==l4a$8G!y)7OZTDjdN+1(= z51~96l5(VgPYSX?7x66BN-hBpD1wp_)7^8oMa(pqt7iQBi{TGVr+3%3{U0~hUjL52 z2E1vFG?J2IrGqQ{-L)@Oww~BO?~5)tr3}X`VoGdq8v-1yy-?nH<rB|znSgC86fRe=KRb87r?j